keycloak-scim/src/user-federation/LdapSettingsConnection.tsx

276 lines
7.9 KiB
TypeScript
Raw Normal View History

import {
Button,
FormGroup,
InputGroup,
Select,
SelectOption,
2020-11-25 14:50:40 +00:00
SelectVariant,
Switch,
TextInput,
} from "@patternfly/react-core";
import { useTranslation } from "react-i18next";
2020-11-25 14:50:40 +00:00
import React, { useState } from "react";
import { HelpItem } from "../components/help-enabler/HelpItem";
2020-11-25 14:50:40 +00:00
import { Controller, useForm } from "react-hook-form";
import ComponentRepresentation from "keycloak-admin/lib/defs/componentRepresentation";
import { EyeIcon } from "@patternfly/react-icons";
2020-11-25 16:17:50 +00:00
import { FormAccess } from "../components/form-access/FormAccess";
export const LdapSettingsConnection = () => {
const { t } = useTranslation("user-federation");
const helpText = useTranslation("user-federation-help").t;
2020-11-25 14:50:40 +00:00
const [
isTruststoreSpiDropdownOpen,
setIsTruststoreSpiDropdownOpen,
] = useState(false);
2020-11-25 16:17:50 +00:00
2020-11-25 14:50:40 +00:00
const [isBindTypeDropdownOpen, setIsBindTypeDropdownOpen] = useState(false);
2020-11-25 16:17:50 +00:00
const { register, control } = useForm<ComponentRepresentation>();
2020-11-25 14:50:40 +00:00
return (
<>
{/* Cache settings */}
2020-11-25 16:17:50 +00:00
<FormAccess role="manage-realm" isHorizontal>
<FormGroup
label={t("connectionURL")}
labelIcon={
<HelpItem
helpText={helpText("consoleDisplayConnectionUrlHelp")}
forLabel={t("connectionURL")}
2020-11-25 14:50:40 +00:00
forID="kc-console-connection-url"
/>
}
2020-11-25 14:50:40 +00:00
fieldId="kc-console-connection-url"
isRequired
>
<TextInput
isRequired
type="text"
2020-11-25 14:50:40 +00:00
id="kc-console-connection-url"
name="connectionUrl"
ref={register}
/>
</FormGroup>
<FormGroup
2020-11-25 14:50:40 +00:00
label={t("enableStartTls")}
labelIcon={
<HelpItem
2020-11-25 14:50:40 +00:00
helpText={helpText("enableStartTlsHelp")}
forLabel={t("enableStartTls")}
forID="kc-enable-start-tls"
/>
}
fieldId="kc-enable-start-tls"
hasNoPaddingTop
>
2020-11-25 14:50:40 +00:00
<Controller
name="enableStartTls"
defaultValue={false}
control={control}
render={({ onChange, value }) => (
<Switch
id={"kc-enable-start-tls"}
isChecked={value}
isDisabled={false}
onChange={onChange}
label={t("common:on")}
labelOff={t("common:off")}
/>
)}
></Controller>
</FormGroup>
<FormGroup
label={t("useTruststoreSpi")}
labelIcon={
<HelpItem
helpText={helpText("useTruststoreSpiHelp")}
forLabel={t("useTruststoreSpi")}
forID="kc-use-truststore-spi"
/>
}
fieldId="kc-use-truststore-spi"
>
2020-11-25 14:50:40 +00:00
<Controller
name="useTruststoreSpi"
defaultValue=""
control={control}
render={({ onChange, value }) => (
<Select
toggleId="kc-use-truststore-spi"
onToggle={() =>
setIsTruststoreSpiDropdownOpen(!isTruststoreSpiDropdownOpen)
}
isOpen={isTruststoreSpiDropdownOpen}
onSelect={(_, value) => {
onChange(value as string);
setIsTruststoreSpiDropdownOpen(false);
}}
selections={value}
variant={SelectVariant.single}
>
<SelectOption
key={0}
value="LDAP connection URL"
isPlaceholder
/>
<SelectOption key={1} value="something else" />
</Select>
)}
></Controller>
</FormGroup>
<FormGroup
label={t("connectionPooling")}
labelIcon={
<HelpItem
helpText={helpText("connectionPoolingHelp")}
forLabel={t("connectionPooling")}
forID="kc-connection-pooling"
/>
}
fieldId="kc-connection-pooling"
hasNoPaddingTop
>
2020-11-25 14:50:40 +00:00
<Controller
name="connectionPooling"
defaultValue={false}
control={control}
render={({ onChange, value }) => (
<Switch
id={"kc-connection-pooling"}
isDisabled={false}
onChange={onChange}
isChecked={value}
label={t("common:on")}
labelOff={t("common:off")}
/>
)}
></Controller>
</FormGroup>
<FormGroup
label={t("connectionTimeout")}
labelIcon={
<HelpItem
helpText={helpText("connectionTimeoutHelp")}
forLabel={t("connectionTimeout")}
2020-11-25 14:50:40 +00:00
forID="kc-console-connection-timeout"
/>
}
2020-11-25 14:50:40 +00:00
fieldId="kc-console-connection-timeout"
>
<TextInput
type="text"
2020-11-25 14:50:40 +00:00
id="kc-console-connection-timeout"
name="connectionTimeout"
ref={register}
/>
</FormGroup>
<FormGroup
label={t("bindType")}
labelIcon={
<HelpItem
helpText={helpText("bindTypeHelp")}
forLabel={t("bindType")}
forID="kc-bind-type"
/>
}
fieldId="kc-bind-type"
isRequired
>
2020-11-25 14:50:40 +00:00
<Controller
name="bindType"
defaultValue=""
control={control}
render={({ onChange, value }) => (
<Select
toggleId="kc-bind-type"
required
onToggle={() =>
setIsBindTypeDropdownOpen(!isBindTypeDropdownOpen)
}
isOpen={isBindTypeDropdownOpen}
onSelect={(_, value) => {
onChange(value as string);
setIsBindTypeDropdownOpen(false);
}}
selections={value}
variant={SelectVariant.single}
// aria-label="simple" // TODO
>
<SelectOption
key={3}
value="Connection timeout"
isPlaceholder
/>
<SelectOption key={4} value="something" />
</Select>
)}
></Controller>
</FormGroup>
<FormGroup
label={t("bindDn")}
labelIcon={
<HelpItem
helpText={helpText("bindDnHelp")}
forLabel={t("bindDn")}
2020-11-25 14:50:40 +00:00
forID="kc-console-bind-dn"
/>
}
2020-11-25 14:50:40 +00:00
fieldId="kc-console-bind-dn"
>
<TextInput
type="text"
2020-11-25 14:50:40 +00:00
id="kc-console-bind-dn"
name="bindDn"
ref={register}
/>
</FormGroup>
<FormGroup
label={t("bindCredentials")}
labelIcon={
<HelpItem
helpText={helpText("bindCredentialsHelp")}
forLabel={t("bindCredentials")}
2020-11-25 14:50:40 +00:00
forID="kc-console-bind-credentials"
/>
}
2020-11-25 14:50:40 +00:00
fieldId="kc-console-bind-credentials"
isRequired
>
<InputGroup>
2020-11-25 16:17:50 +00:00
<TextInput // TODO: Make password field switch to type=text with button
isRequired
2020-11-25 16:17:50 +00:00
type="password"
2020-11-25 14:50:40 +00:00
id="kc-console-bind-credentials"
name="bindCredentials"
ref={register}
/>
<Button
variant="control"
aria-label="show password button for bind credentials"
>
<EyeIcon />
</Button>
</InputGroup>
</FormGroup>
2020-11-25 14:50:40 +00:00
<FormGroup fieldId="kc-test-button">
2020-11-25 16:17:50 +00:00
{" "}
{/* TODO: whatever this button is supposed to do */}
2020-11-25 14:50:40 +00:00
<Button variant="secondary" id="kc-test-button">
Test
</Button>
</FormGroup>
2020-11-25 16:17:50 +00:00
</FormAccess>
</>
);
};