import { Button, Form, FormGroup, InputGroup, Select, SelectOption, Switch, TextInput, } from "@patternfly/react-core"; import { useTranslation } from "react-i18next"; import React from "react"; import { HelpItem } from "../components/help-enabler/HelpItem"; import { EyeIcon } from "@patternfly/react-icons"; export const LdapSettingsConnection = () => { const { t } = useTranslation("user-federation"); const helpText = useTranslation("user-federation-help").t; return ( <> {/* Cache settings */}
} fieldId="kc-connection-url" isRequired > } fieldId="kc-enable-start-tls" hasNoPaddingTop > undefined as any} label={t("common:on")} labelOff={t("common:off")} /> } fieldId="kc-use-truststore-spi" > } fieldId="kc-connection-pooling" hasNoPaddingTop > undefined as any} label={t("common:on")} labelOff={t("common:off")} /> } fieldId="kc-connection-timeout" > } fieldId="kc-bind-type" isRequired > } fieldId="kc-bind-dn" > } fieldId="kc-bind-credentials" isRequired >
); };