keycloak-scim/apps/admin-ui/src/realm-settings/GeneralTab.tsx

289 lines
8.8 KiB
TypeScript
Raw Normal View History

import { useEffect, useState } from "react";
import { useTranslation } from "react-i18next";
import { Controller, FormProvider, useForm } from "react-hook-form";
import {
ActionGroup,
Button,
ClipboardCopy,
FormGroup,
PageSection,
Select,
SelectOption,
SelectVariant,
Stack,
StackItem,
Switch,
} from "@patternfly/react-core";
import type RealmRepresentation from "@keycloak/keycloak-admin-client/lib/defs/realmRepresentation";
import {
addTrailingSlash,
convertAttributeNameToForm,
convertToFormValues,
} from "../util";
import useIsFeatureEnabled, { Feature } from "../utils/useIsFeatureEnabled";
import { useAdminClient } from "../context/auth/AdminClient";
import { useRealm } from "../context/realm-context/RealmContext";
import { FormAccess } from "../components/form-access/FormAccess";
import { HelpItem } from "../components/help-enabler/HelpItem";
import { FormattedLink } from "../components/external-link/FormattedLink";
import { KeycloakTextInput } from "../components/keycloak-text-input/KeycloakTextInput";
import { KeyValueInput } from "../components/key-value-form/KeyValueInput";
type RealmSettingsGeneralTabProps = {
realm: RealmRepresentation;
save: (realm: RealmRepresentation) => void;
};
export const RealmSettingsGeneralTab = ({
realm,
save,
}: RealmSettingsGeneralTabProps) => {
const { t } = useTranslation("realm-settings");
const { adminClient } = useAdminClient();
const { realm: realmName } = useRealm();
const form = useForm<RealmRepresentation>({ shouldUnregister: false });
const {
register,
control,
handleSubmit,
setValue,
formState: { isDirty },
} = form;
const isFeatureEnabled = useIsFeatureEnabled();
const [open, setOpen] = useState(false);
const requireSslTypes = ["all", "external", "none"];
const setupForm = () => {
convertToFormValues(realm, setValue);
if (realm.attributes?.["acr.loa.map"]) {
const result = Object.entries(
JSON.parse(realm.attributes["acr.loa.map"])
).flatMap(([key, value]) => ({ key, value }));
result.concat({ key: "", value: "" });
setValue(convertAttributeNameToForm("attributes.acr.loa.map"), result);
}
};
useEffect(setupForm, []);
return (
2021-08-26 12:15:28 +00:00
<PageSection variant="light">
<FormAccess
isHorizontal
role="manage-realm"
className="pf-u-mt-lg"
onSubmit={handleSubmit(save)}
>
<FormGroup label={t("realmId")} fieldId="kc-realm-id" isRequired>
<Controller
name="realm"
control={control}
defaultValue=""
render={({ onChange, value }) => (
<ClipboardCopy data-testid="realmName" onChange={onChange}>
{value}
</ClipboardCopy>
2021-08-26 12:15:28 +00:00
)}
/>
</FormGroup>
<FormGroup label={t("displayName")} fieldId="kc-display-name">
<KeycloakTextInput
2021-08-26 12:15:28 +00:00
type="text"
id="kc-display-name"
name="displayName"
ref={register}
/>
</FormGroup>
<FormGroup label={t("htmlDisplayName")} fieldId="kc-html-display-name">
<KeycloakTextInput
2021-08-26 12:15:28 +00:00
type="text"
id="kc-html-display-name"
name="displayNameHtml"
ref={register}
/>
</FormGroup>
<FormGroup
label={t("frontendUrl")}
fieldId="kc-frontend-url"
labelIcon={
<HelpItem
helpText="realm-settings-help:frontendUrl"
2021-12-14 14:56:36 +00:00
fieldLabelId="realm-settings:frontendUrl"
/>
2021-08-26 12:15:28 +00:00
}
>
<KeycloakTextInput
2021-08-26 12:15:28 +00:00
type="text"
id="kc-frontend-url"
name={convertAttributeNameToForm("attributes.frontendUrl")}
2021-08-26 12:15:28 +00:00
ref={register}
/>
</FormGroup>
<FormGroup
label={t("requireSsl")}
fieldId="kc-require-ssl"
labelIcon={
<HelpItem
helpText="realm-settings-help:requireSsl"
2021-12-14 14:56:36 +00:00
fieldLabelId="realm-settings:requireSsl"
/>
2021-08-26 12:15:28 +00:00
}
>
<Controller
name="sslRequired"
defaultValue="none"
control={control}
render={({ onChange, value }) => (
<Select
toggleId="kc-require-ssl"
onToggle={() => setOpen(!open)}
onSelect={(_, value) => {
onChange(value as string);
setOpen(false);
}}
selections={value}
variant={SelectVariant.single}
aria-label={t("requireSsl")}
isOpen={open}
>
{requireSslTypes.map((sslType) => (
<SelectOption
selected={sslType === value}
key={sslType}
value={sslType}
>
{t(`sslType.${sslType}`)}
</SelectOption>
))}
</Select>
)}
/>
</FormGroup>
<FormGroup
label={t("clients:acrToLoAMapping")}
fieldId="acrToLoAMapping"
labelIcon={
<HelpItem
helpText="clients-help:acrToLoAMapping"
fieldLabelId="clients:acrToLoAMapping"
/>
}
>
<FormProvider {...form}>
<KeyValueInput
name={convertAttributeNameToForm("attributes.acr.loa.map")}
/>
</FormProvider>
</FormGroup>
2021-08-26 12:15:28 +00:00
<FormGroup
hasNoPaddingTop
label={t("userManagedAccess")}
labelIcon={
<HelpItem
helpText="realm-settings-help:userManagedAccess"
2021-12-14 14:56:36 +00:00
fieldLabelId="realm-settings:userManagedAccess"
/>
2021-08-26 12:15:28 +00:00
}
fieldId="kc-user-managed-access"
2021-08-26 12:15:28 +00:00
>
<Controller
name="userManagedAccessAllowed"
control={control}
defaultValue={false}
render={({ onChange, value }) => (
<Switch
id="kc-user-managed-access"
data-testid="user-managed-access-switch"
label={t("common:on")}
labelOff={t("common:off")}
isChecked={value}
onChange={onChange}
aria-label={t("userManagedAccess")}
/>
2021-08-26 12:15:28 +00:00
)}
/>
</FormGroup>
{isFeatureEnabled(Feature.DeclarativeUserProfile) && (
<FormGroup
hasNoPaddingTop
label={t("userProfileEnabled")}
labelIcon={
<HelpItem
helpText="realm-settings-help:userProfileEnabled"
fieldLabelId="realm-settings:userProfileEnabled"
/>
}
fieldId="kc-user-profile-enabled"
>
<Controller
name={convertAttributeNameToForm("attributes.userProfileEnabled")}
control={control}
defaultValue={false}
render={({ onChange, value }) => (
<Switch
id="kc-user-profile-enabled"
data-testid="user-profile-enabled-switch"
label={t("common:on")}
labelOff={t("common:off")}
isChecked={value === "true"}
onChange={(value) => onChange(value.toString())}
aria-label={t("userProfileEnabled")}
/>
)}
/>
</FormGroup>
)}
2021-08-26 12:15:28 +00:00
<FormGroup
label={t("endpoints")}
labelIcon={
<HelpItem
helpText="realm-settings-help:endpoints"
2021-12-14 14:56:36 +00:00
fieldLabelId="realm-settings:endpoints"
/>
2021-08-26 12:15:28 +00:00
}
fieldId="kc-endpoints"
>
<Stack>
<StackItem>
<FormattedLink
href={`${addTrailingSlash(
adminClient.baseUrl
)}realms/${realmName}/.well-known/openid-configuration`}
2021-08-26 12:15:28 +00:00
title={t("openIDEndpointConfiguration")}
/>
2021-08-26 12:15:28 +00:00
</StackItem>
<StackItem>
<FormattedLink
href={`${addTrailingSlash(
adminClient.baseUrl
)}realms/${realmName}/protocol/saml/descriptor`}
2021-08-26 12:15:28 +00:00
title={t("samlIdentityProviderMetadata")}
/>
2021-08-26 12:15:28 +00:00
</StackItem>
</Stack>
</FormGroup>
2021-08-26 12:15:28 +00:00
<ActionGroup>
<Button
variant="primary"
type="submit"
data-testid="general-tab-save"
isDisabled={!isDirty}
>
{t("common:save")}
</Button>
<Button
data-testid="general-tab-revert"
variant="link"
onClick={setupForm}
>
2021-08-26 12:15:28 +00:00
{t("common:revert")}
</Button>
</ActionGroup>
</FormAccess>
</PageSection>
);
};