keycloak-scim/src/client-scopes/add/components/BooleanComponent.tsx

44 lines
1.1 KiB
TypeScript
Raw Normal View History

import React from "react";
import { Controller, useFormContext } from "react-hook-form";
import { useTranslation } from "react-i18next";
import { FormGroup, Switch } from "@patternfly/react-core";
import type { ComponentProps } from "./components";
import { HelpItem } from "../../../components/help-enabler/HelpItem";
export const BooleanComponent = ({
name,
label,
helpText,
defaultValue,
}: ComponentProps) => {
const { t } = useTranslation("client-scopes");
const { control } = useFormContext();
return (
<FormGroup
hasNoPaddingTop
label={t(label!)}
fieldId={name!}
labelIcon={
<HelpItem helpText={t(helpText!)} forLabel={t(label!)} forID={name!} />
}
>
<Controller
name={`config.${name?.replaceAll(".", "-")}`}
defaultValue={defaultValue}
control={control}
render={({ onChange, value }) => (
<Switch
id={name!}
label={t("common:on")}
labelOff={t("common:off")}
isChecked={value === "true"}
onChange={(value) => onChange("" + value)}
/>
)}
/>
</FormGroup>
);
};