2020-10-30 20:15:37 +00:00
|
|
|
import { Form, FormGroup, Switch } from "@patternfly/react-core";
|
|
|
|
import { useTranslation } from "react-i18next";
|
|
|
|
import React from "react";
|
|
|
|
import { HelpItem } from "../components/help-enabler/HelpItem";
|
2020-11-25 14:50:40 +00:00
|
|
|
import { useForm, Controller } from "react-hook-form";
|
|
|
|
import ComponentRepresentation from "keycloak-admin/lib/defs/componentRepresentation";
|
2020-10-30 20:15:37 +00:00
|
|
|
|
|
|
|
export const LdapSettingsAdvanced = () => {
|
|
|
|
const { t } = useTranslation("user-federation");
|
|
|
|
const helpText = useTranslation("user-federation-help").t;
|
|
|
|
|
2020-11-25 14:50:40 +00:00
|
|
|
const { handleSubmit, control } = useForm<ComponentRepresentation>();
|
|
|
|
const onSubmit = (data: ComponentRepresentation) => {
|
|
|
|
console.log(data);
|
|
|
|
};
|
|
|
|
|
2020-10-30 20:15:37 +00:00
|
|
|
return (
|
|
|
|
<>
|
2020-11-25 14:50:40 +00:00
|
|
|
<Form isHorizontal onSubmit={handleSubmit(onSubmit)}>
|
2020-10-30 20:15:37 +00:00
|
|
|
<FormGroup
|
|
|
|
label={t("enableLdapv3Password")}
|
|
|
|
labelIcon={
|
|
|
|
<HelpItem
|
|
|
|
helpText={helpText("enableLdapv3PasswordHelp")}
|
|
|
|
forLabel={t("enableLdapv3Password")}
|
|
|
|
forID="kc-enable-ldapv3-password"
|
|
|
|
/>
|
|
|
|
}
|
|
|
|
fieldId="kc-enable-ldapv3-password"
|
|
|
|
hasNoPaddingTop
|
|
|
|
>
|
2020-11-25 14:50:40 +00:00
|
|
|
<Controller
|
|
|
|
name="enableLadpv3PasswordModify"
|
|
|
|
defaultValue={false}
|
|
|
|
control={control}
|
|
|
|
render={({ onChange, value }) => (
|
|
|
|
<Switch
|
|
|
|
id={"kc-enable-ldapv3-password"}
|
|
|
|
isChecked={value}
|
|
|
|
isDisabled={false}
|
|
|
|
onChange={onChange}
|
|
|
|
label={t("common:on")}
|
|
|
|
labelOff={t("common:off")}
|
|
|
|
/>
|
|
|
|
)}
|
|
|
|
></Controller>
|
2020-10-30 20:15:37 +00:00
|
|
|
</FormGroup>
|
|
|
|
|
|
|
|
<FormGroup
|
|
|
|
label={t("validatePasswordPolicy")}
|
|
|
|
labelIcon={
|
|
|
|
<HelpItem
|
|
|
|
helpText={helpText("validatePasswordPolicyHelp")}
|
|
|
|
forLabel={t("validatePasswordPolicy")}
|
|
|
|
forID="kc-validate-password-policy"
|
|
|
|
/>
|
|
|
|
}
|
|
|
|
fieldId="kc-validate-password-policy"
|
|
|
|
hasNoPaddingTop
|
|
|
|
>
|
2020-11-25 14:50:40 +00:00
|
|
|
<Controller
|
|
|
|
name="validatePasswordPolicy"
|
|
|
|
defaultValue={false}
|
|
|
|
control={control}
|
|
|
|
render={({ onChange, value }) => (
|
|
|
|
<Switch
|
|
|
|
id={"kc-validate-password-policy"}
|
|
|
|
isChecked={value}
|
|
|
|
isDisabled={false}
|
|
|
|
onChange={onChange}
|
|
|
|
label={t("common:on")}
|
|
|
|
labelOff={t("common:off")}
|
|
|
|
/>
|
|
|
|
)}
|
|
|
|
></Controller>
|
2020-10-30 20:15:37 +00:00
|
|
|
</FormGroup>
|
|
|
|
|
|
|
|
<FormGroup
|
|
|
|
label={t("trustEmail")}
|
|
|
|
labelIcon={
|
|
|
|
<HelpItem
|
|
|
|
helpText={helpText("trustEmailHelp")}
|
|
|
|
forLabel={t("trustEmail")}
|
|
|
|
forID="kc-trust-email"
|
|
|
|
/>
|
|
|
|
}
|
|
|
|
fieldId="kc-trust-email"
|
|
|
|
hasNoPaddingTop
|
|
|
|
>
|
2020-11-25 14:50:40 +00:00
|
|
|
<Controller
|
|
|
|
name="trustEmail"
|
|
|
|
defaultValue={false}
|
|
|
|
control={control}
|
|
|
|
render={({ onChange, value }) => (
|
|
|
|
<Switch
|
|
|
|
id={"kc-trust-email"}
|
|
|
|
isChecked={value}
|
|
|
|
isDisabled={false}
|
|
|
|
onChange={onChange}
|
|
|
|
label={t("common:on")}
|
|
|
|
labelOff={t("common:off")}
|
|
|
|
/>
|
|
|
|
)}
|
|
|
|
></Controller>
|
2020-10-30 20:15:37 +00:00
|
|
|
</FormGroup>
|
2020-11-25 14:50:40 +00:00
|
|
|
|
|
|
|
<button type="submit">Test submit</button>
|
2020-10-30 20:15:37 +00:00
|
|
|
</Form>
|
|
|
|
</>
|
|
|
|
);
|
|
|
|
};
|