parent
3f061efead
commit
2416d25c38
7 changed files with 398 additions and 421 deletions
|
@ -10,7 +10,7 @@ import {
|
|||
} from "@patternfly/react-core";
|
||||
import type RealmRepresentation from "@keycloak/keycloak-admin-client/lib/defs/realmRepresentation";
|
||||
import type UserRepresentation from "@keycloak/keycloak-admin-client/lib/defs/userRepresentation";
|
||||
import React, { useEffect, useState } from "react";
|
||||
import React, { useState } from "react";
|
||||
import { Controller, useForm, useWatch } from "react-hook-form";
|
||||
import { useTranslation } from "react-i18next";
|
||||
import { useAlerts } from "../components/alert/Alerts";
|
||||
|
@ -41,7 +41,7 @@ export const RealmSettingsEmailTab = ({
|
|||
|
||||
const [realm, setRealm] = useState(initialRealm);
|
||||
const [userEmailModalOpen, setUserEmailModalOpen] = useState(false);
|
||||
const [currentUser, setCurrentUser] = useState<UserRepresentation>();
|
||||
const [currentUser, setCurrentUser] = useState<UserRepresentation>(user);
|
||||
const {
|
||||
register,
|
||||
control,
|
||||
|
@ -51,7 +51,7 @@ export const RealmSettingsEmailTab = ({
|
|||
setValue,
|
||||
reset: resetForm,
|
||||
getValues,
|
||||
} = useForm<RealmRepresentation>();
|
||||
} = useForm<RealmRepresentation>({ defaultValues: realm });
|
||||
|
||||
const userForm = useForm<UserRepresentation>({ mode: "onChange" });
|
||||
const watchFromValue = watch("smtpServer.from", "");
|
||||
|
@ -63,14 +63,6 @@ export const RealmSettingsEmailTab = ({
|
|||
defaultValue: {},
|
||||
});
|
||||
|
||||
useEffect(() => {
|
||||
reset();
|
||||
}, [realm]);
|
||||
|
||||
useEffect(() => {
|
||||
setCurrentUser(user);
|
||||
}, []);
|
||||
|
||||
const handleModalToggle = () => {
|
||||
setUserEmailModalOpen(!userEmailModalOpen);
|
||||
};
|
||||
|
@ -89,10 +81,7 @@ export const RealmSettingsEmailTab = ({
|
|||
const saveAndTestEmail = async (email?: UserRepresentation) => {
|
||||
if (email) {
|
||||
await adminClient.users.update({ id: whoAmI.getUserId() }, email);
|
||||
const updated = await adminClient.users.findOne({
|
||||
id: whoAmI.getUserId(),
|
||||
});
|
||||
setCurrentUser(updated);
|
||||
setCurrentUser(email);
|
||||
|
||||
await save(getValues());
|
||||
testConnection();
|
||||
|
@ -322,7 +311,7 @@ export const RealmSettingsEmailTab = ({
|
|||
<Controller
|
||||
name="smtpServer.authentication"
|
||||
control={control}
|
||||
defaultValue={authenticationEnabled}
|
||||
defaultValue={{}}
|
||||
render={({ onChange, value }) => (
|
||||
<Switch
|
||||
id="kc-authentication-switch"
|
||||
|
|
|
@ -73,7 +73,7 @@ export const KeysListTab = ({ realmComponents }: KeysListTabProps) => {
|
|||
const activeKeysCopy = keys!.filter((i) => i.status === "ACTIVE");
|
||||
|
||||
return activeKeysCopy?.map((key) => {
|
||||
const provider = realmComponents!.find(
|
||||
const provider = realmComponents.find(
|
||||
(component: ComponentRepresentation) => component.id === key.providerId
|
||||
);
|
||||
return { ...key, provider: provider?.name } as KeyData;
|
||||
|
@ -89,7 +89,7 @@ export const KeysListTab = ({ realmComponents }: KeysListTabProps) => {
|
|||
const passiveKeys = keys!.filter((i) => i.status === "PASSIVE");
|
||||
|
||||
return passiveKeys?.map((key) => {
|
||||
const provider = realmComponents!.find(
|
||||
const provider = realmComponents.find(
|
||||
(component: ComponentRepresentation) => component.id === key.providerId
|
||||
);
|
||||
return { ...key, provider: provider?.name } as KeyData;
|
||||
|
|
|
@ -66,16 +66,15 @@ export const LocalizationTab = ({
|
|||
const { addAlert, addError } = useAlerts();
|
||||
const { realm: currentRealm } = useRealm();
|
||||
|
||||
const watchSupportedLocales = useWatch({
|
||||
const watchSupportedLocales = useWatch<string[]>({
|
||||
control,
|
||||
name: "supportedLocales",
|
||||
defaultValue: themeTypes?.account![0].locales,
|
||||
});
|
||||
|
||||
const internationalizationEnabled = useWatch({
|
||||
control,
|
||||
name: "internationalizationEnabled",
|
||||
defaultValue: realm?.internationalizationEnabled,
|
||||
defaultValue: false,
|
||||
});
|
||||
|
||||
const loader = async () => {
|
||||
|
@ -112,7 +111,7 @@ export const LocalizationTab = ({
|
|||
const options = [
|
||||
<SelectGroup label={t("defaultLocale")} key="group1">
|
||||
{watchSupportedLocales
|
||||
.filter((item) => item === realm?.defaultLocale)
|
||||
?.filter((item) => item === realm?.defaultLocale)
|
||||
.map((locale) => (
|
||||
<SelectOption key={locale} value={locale}>
|
||||
{t(`allSupportedLocales.${locale}`)}
|
||||
|
@ -122,7 +121,7 @@ export const LocalizationTab = ({
|
|||
<Divider key="divider" />,
|
||||
<SelectGroup label={t("supportedLocales")} key="group2">
|
||||
{watchSupportedLocales
|
||||
.filter((item) => item !== realm?.defaultLocale)
|
||||
?.filter((item) => item !== realm?.defaultLocale)
|
||||
.map((locale) => (
|
||||
<SelectOption key={locale} value={locale}>
|
||||
{t(`allSupportedLocales.${locale}`)}
|
||||
|
@ -218,7 +217,6 @@ export const LocalizationTab = ({
|
|||
<Controller
|
||||
name="supportedLocales"
|
||||
control={control}
|
||||
defaultValue={themeTypes?.account![0].locales}
|
||||
render={({ onChange }) => (
|
||||
<Select
|
||||
toggleId="kc-l-supported-locales"
|
||||
|
@ -270,7 +268,6 @@ export const LocalizationTab = ({
|
|||
<Controller
|
||||
name="defaultLocale"
|
||||
control={control}
|
||||
defaultValue={realm?.defaultLocale}
|
||||
render={({ onChange, value }) => (
|
||||
<Select
|
||||
toggleId="kc-default-locale"
|
||||
|
@ -299,7 +296,7 @@ export const LocalizationTab = ({
|
|||
placeholderText={t("placeholderText")}
|
||||
data-testid="select-default-locale"
|
||||
>
|
||||
{watchSupportedLocales.map(
|
||||
{watchSupportedLocales?.map(
|
||||
(locale: string, idx: number) => (
|
||||
<SelectOption
|
||||
key={`default-locale-${idx}`}
|
||||
|
|
|
@ -1,52 +1,16 @@
|
|||
import {
|
||||
AlertVariant,
|
||||
Breadcrumb,
|
||||
BreadcrumbItem,
|
||||
ButtonVariant,
|
||||
DropdownItem,
|
||||
DropdownSeparator,
|
||||
PageSection,
|
||||
Spinner,
|
||||
Tab,
|
||||
Tabs,
|
||||
TabTitleText,
|
||||
} from "@patternfly/react-core";
|
||||
import { Breadcrumb, BreadcrumbItem, Spinner } from "@patternfly/react-core";
|
||||
import type ComponentRepresentation from "@keycloak/keycloak-admin-client/lib/defs/componentRepresentation";
|
||||
import type RealmRepresentation from "@keycloak/keycloak-admin-client/lib/defs/realmRepresentation";
|
||||
import type UserRepresentation from "@keycloak/keycloak-admin-client/lib/defs/userRepresentation";
|
||||
import React, { useEffect, useState } from "react";
|
||||
import { Controller, FormProvider, useForm } from "react-hook-form";
|
||||
import React, { useState } from "react";
|
||||
import { useTranslation } from "react-i18next";
|
||||
import { Link, useHistory } from "react-router-dom";
|
||||
import { useAlerts } from "../components/alert/Alerts";
|
||||
import { useConfirmDialog } from "../components/confirm-dialog/ConfirmDialog";
|
||||
import { KeycloakTabs } from "../components/keycloak-tabs/KeycloakTabs";
|
||||
import { ViewHeader } from "../components/view-header/ViewHeader";
|
||||
import { Link } from "react-router-dom";
|
||||
import { useAdminClient, useFetch } from "../context/auth/AdminClient";
|
||||
import { useRealm } from "../context/realm-context/RealmContext";
|
||||
import { useServerInfo } from "../context/server-info/ServerInfoProvider";
|
||||
import { LocalizationTab } from "./LocalizationTab";
|
||||
import { useWhoAmI } from "../context/whoami/WhoAmI";
|
||||
import { convertToFormValues, KEY_PROVIDER_TYPE, toUpperCase } from "../util";
|
||||
import { RealmSettingsEmailTab } from "./EmailTab";
|
||||
import { EventsTab } from "./event-config/EventsTab";
|
||||
import { RealmSettingsGeneralTab } from "./GeneralTab";
|
||||
import { KeysListTab } from "./KeysListTab";
|
||||
import { KeysProvidersTab } from "./KeysProvidersTab";
|
||||
import { RealmSettingsLoginTab } from "./LoginTab";
|
||||
import { PartialImportDialog } from "./PartialImport";
|
||||
import { KEY_PROVIDER_TYPE } from "../util";
|
||||
import { toRealmSettings } from "./routes/RealmSettings";
|
||||
import { SecurityDefences } from "./security-defences/SecurityDefences";
|
||||
import { RealmSettingsSessionsTab } from "./SessionsTab";
|
||||
import { RealmSettingsThemesTab } from "./ThemesTab";
|
||||
import { RealmSettingsTokensTab } from "./TokensTab";
|
||||
|
||||
type RealmSettingsHeaderProps = {
|
||||
onChange: (value: boolean) => void;
|
||||
value: boolean;
|
||||
save: () => void;
|
||||
realmName: string;
|
||||
};
|
||||
import { RealmSettingsTabs } from "./RealmSettingsTabs";
|
||||
|
||||
export const EditProviderCrumb = () => {
|
||||
const { t } = useTranslation("realm-settings");
|
||||
|
@ -67,87 +31,6 @@ export const EditProviderCrumb = () => {
|
|||
);
|
||||
};
|
||||
|
||||
const RealmSettingsHeader = ({
|
||||
save,
|
||||
onChange,
|
||||
value,
|
||||
realmName,
|
||||
}: RealmSettingsHeaderProps) => {
|
||||
const { t } = useTranslation("realm-settings");
|
||||
const adminClient = useAdminClient();
|
||||
const { addAlert, addError } = useAlerts();
|
||||
const history = useHistory();
|
||||
const { refresh } = useRealm();
|
||||
const [partialImportOpen, setPartialImportOpen] = useState(false);
|
||||
|
||||
const [toggleDisableDialog, DisableConfirm] = useConfirmDialog({
|
||||
titleKey: "realm-settings:disableConfirmTitle",
|
||||
messageKey: "realm-settings:disableConfirm",
|
||||
continueButtonLabel: "common:disable",
|
||||
onConfirm: () => {
|
||||
onChange(!value);
|
||||
save();
|
||||
},
|
||||
});
|
||||
|
||||
const [toggleDeleteDialog, DeleteConfirm] = useConfirmDialog({
|
||||
titleKey: "realm-settings:deleteConfirmTitle",
|
||||
messageKey: "realm-settings:deleteConfirm",
|
||||
continueButtonLabel: "common:delete",
|
||||
continueButtonVariant: ButtonVariant.danger,
|
||||
onConfirm: async () => {
|
||||
try {
|
||||
await adminClient.realms.del({ realm: realmName });
|
||||
addAlert(t("deletedSuccess"), AlertVariant.success);
|
||||
history.push("/master/");
|
||||
refresh();
|
||||
} catch (error) {
|
||||
addError("realm-settings:deleteError", error);
|
||||
}
|
||||
},
|
||||
});
|
||||
|
||||
return (
|
||||
<>
|
||||
<DisableConfirm />
|
||||
<DeleteConfirm />
|
||||
<PartialImportDialog
|
||||
open={partialImportOpen}
|
||||
toggleDialog={() => setPartialImportOpen(!partialImportOpen)}
|
||||
/>
|
||||
<ViewHeader
|
||||
titleKey={toUpperCase(realmName)}
|
||||
divider={false}
|
||||
dropdownItems={[
|
||||
<DropdownItem
|
||||
key="import"
|
||||
data-testid="openPartialImportModal"
|
||||
onClick={() => {
|
||||
setPartialImportOpen(true);
|
||||
}}
|
||||
>
|
||||
{t("partialImport")}
|
||||
</DropdownItem>,
|
||||
<DropdownItem key="export">{t("partialExport")}</DropdownItem>,
|
||||
<DropdownSeparator key="separator" />,
|
||||
<DropdownItem key="delete" onClick={toggleDeleteDialog}>
|
||||
{t("common:delete")}
|
||||
</DropdownItem>,
|
||||
]}
|
||||
isEnabled={value}
|
||||
onToggle={(value) => {
|
||||
if (!value) {
|
||||
toggleDisableDialog();
|
||||
} else {
|
||||
onChange(value);
|
||||
save();
|
||||
}
|
||||
}}
|
||||
/>
|
||||
</>
|
||||
);
|
||||
};
|
||||
|
||||
const sortByPriority = (components: ComponentRepresentation[]) => {
|
||||
const sortedComponents = [...components].sort((a, b) => {
|
||||
const priorityA = Number(a.config?.priority);
|
||||
|
@ -162,27 +45,13 @@ const sortByPriority = (components: ComponentRepresentation[]) => {
|
|||
};
|
||||
|
||||
export const RealmSettingsSection = () => {
|
||||
const { t } = useTranslation("realm-settings");
|
||||
const adminClient = useAdminClient();
|
||||
const {
|
||||
realm: realmName,
|
||||
refresh: refreshRealm,
|
||||
setRealm: setCurrentRealm,
|
||||
} = useRealm();
|
||||
const { addAlert, addError } = useAlerts();
|
||||
const form = useForm({ mode: "onChange" });
|
||||
const { control, getValues, setValue, reset: resetForm } = form;
|
||||
const [key, setKey] = useState(0);
|
||||
const { realm: realmName } = useRealm();
|
||||
const [realm, setRealm] = useState<RealmRepresentation>();
|
||||
const [activeTab, setActiveTab] = useState(0);
|
||||
const [realmComponents, setRealmComponents] =
|
||||
useState<ComponentRepresentation[]>();
|
||||
const [currentUser, setCurrentUser] = useState<UserRepresentation>();
|
||||
const { whoAmI } = useWhoAmI();
|
||||
const history = useHistory();
|
||||
|
||||
const kpComponentTypes =
|
||||
useServerInfo().componentTypes?.[KEY_PROVIDER_TYPE] ?? [];
|
||||
|
||||
useFetch(
|
||||
async () => {
|
||||
|
@ -200,45 +69,9 @@ export const RealmSettingsSection = () => {
|
|||
setCurrentUser(user);
|
||||
setRealm(realm);
|
||||
},
|
||||
[key]
|
||||
[]
|
||||
);
|
||||
|
||||
const refresh = () => {
|
||||
setKey(new Date().getTime());
|
||||
};
|
||||
|
||||
useEffect(() => {
|
||||
if (realm) {
|
||||
Object.entries(realm).map(([key, value]) => {
|
||||
if (key === "attributes") {
|
||||
convertToFormValues(value, "attributes", form.setValue);
|
||||
} else {
|
||||
setValue(key, value);
|
||||
}
|
||||
});
|
||||
resetForm(getValues());
|
||||
}
|
||||
}, [realm]);
|
||||
|
||||
const save = async (realm: RealmRepresentation) => {
|
||||
try {
|
||||
await adminClient.realms.update(
|
||||
{ realm: realmName },
|
||||
{ ...realm, id: realmName }
|
||||
);
|
||||
setRealm(realm);
|
||||
const isRealmRenamed = realmName !== realm.realm;
|
||||
if (isRealmRenamed) {
|
||||
await refreshRealm();
|
||||
setCurrentRealm(realm.realm!);
|
||||
history.push(toRealmSettings({ realm: realm.realm! }));
|
||||
}
|
||||
addAlert(t("saveSuccess"), AlertVariant.success);
|
||||
} catch (error) {
|
||||
addError("realm-settings:saveError", error);
|
||||
}
|
||||
};
|
||||
|
||||
if (!realm || !realmComponents || !currentUser) {
|
||||
return (
|
||||
<div className="pf-u-text-align-center">
|
||||
|
@ -247,151 +80,10 @@ export const RealmSettingsSection = () => {
|
|||
);
|
||||
}
|
||||
return (
|
||||
<>
|
||||
<Controller
|
||||
name="enabled"
|
||||
control={control}
|
||||
defaultValue={true}
|
||||
render={({ onChange, value }) => (
|
||||
<RealmSettingsHeader
|
||||
value={value}
|
||||
onChange={onChange}
|
||||
realmName={realmName}
|
||||
save={() => save(getValues())}
|
||||
/>
|
||||
)}
|
||||
/>
|
||||
<PageSection variant="light" className="pf-u-p-0">
|
||||
<FormProvider {...form}>
|
||||
<KeycloakTabs isBox>
|
||||
<Tab
|
||||
eventKey="general"
|
||||
title={<TabTitleText>{t("general")}</TabTitleText>}
|
||||
data-testid="rs-general-tab"
|
||||
aria-label="general-tab"
|
||||
>
|
||||
<RealmSettingsGeneralTab
|
||||
save={save}
|
||||
reset={() => resetForm(realm)}
|
||||
/>
|
||||
</Tab>
|
||||
<Tab
|
||||
eventKey="login"
|
||||
title={<TabTitleText>{t("login")}</TabTitleText>}
|
||||
data-testid="rs-login-tab"
|
||||
aria-label="login-tab"
|
||||
>
|
||||
<RealmSettingsLoginTab save={save} realm={realm} />
|
||||
</Tab>
|
||||
<Tab
|
||||
eventKey="email"
|
||||
title={<TabTitleText>{t("email")}</TabTitleText>}
|
||||
data-testid="rs-email-tab"
|
||||
aria-label="email-tab"
|
||||
>
|
||||
<RealmSettingsEmailTab user={currentUser} realm={realm} />
|
||||
</Tab>
|
||||
<Tab
|
||||
eventKey="themes"
|
||||
title={<TabTitleText>{t("themes")}</TabTitleText>}
|
||||
data-testid="rs-themes-tab"
|
||||
aria-label="themes-tab"
|
||||
>
|
||||
<RealmSettingsThemesTab
|
||||
save={save}
|
||||
reset={() => resetForm(realm)}
|
||||
realm={realm}
|
||||
/>
|
||||
</Tab>
|
||||
<Tab
|
||||
eventKey="keys"
|
||||
title={<TabTitleText>{t("realm-settings:keys")}</TabTitleText>}
|
||||
data-testid="rs-keys-tab"
|
||||
aria-label="keys-tab"
|
||||
>
|
||||
<Tabs
|
||||
activeKey={activeTab}
|
||||
onSelect={(_, key) => setActiveTab(Number(key))}
|
||||
>
|
||||
<Tab
|
||||
id="keysList"
|
||||
eventKey={0}
|
||||
data-testid="rs-keys-list-tab"
|
||||
aria-label="keys-list-subtab"
|
||||
title={<TabTitleText>{t("keysList")}</TabTitleText>}
|
||||
>
|
||||
<KeysListTab realmComponents={realmComponents} />
|
||||
</Tab>
|
||||
<Tab
|
||||
id="providers"
|
||||
data-testid="rs-providers-tab"
|
||||
aria-label="rs-providers-tab"
|
||||
eventKey={1}
|
||||
title={<TabTitleText>{t("providers")}</TabTitleText>}
|
||||
>
|
||||
<KeysProvidersTab
|
||||
realmComponents={realmComponents}
|
||||
keyProviderComponentTypes={kpComponentTypes}
|
||||
refresh={refresh}
|
||||
/>
|
||||
</Tab>
|
||||
</Tabs>
|
||||
</Tab>
|
||||
<Tab
|
||||
eventKey="events"
|
||||
title={<TabTitleText>{t("events")}</TabTitleText>}
|
||||
data-testid="rs-realm-events-tab"
|
||||
aria-label="realm-events-tab"
|
||||
>
|
||||
<EventsTab />
|
||||
</Tab>
|
||||
<Tab
|
||||
id="localization"
|
||||
eventKey="localization"
|
||||
data-testid="rs-localization-tab"
|
||||
title={<TabTitleText>{t("localization")}</TabTitleText>}
|
||||
>
|
||||
<LocalizationTab
|
||||
key={key}
|
||||
refresh={refresh}
|
||||
save={save}
|
||||
reset={() => resetForm(realm)}
|
||||
realm={realm}
|
||||
/>
|
||||
</Tab>
|
||||
<Tab
|
||||
id="securityDefences"
|
||||
eventKey="securityDefences"
|
||||
title={<TabTitleText>{t("securityDefences")}</TabTitleText>}
|
||||
>
|
||||
<SecurityDefences save={save} reset={() => resetForm(realm)} />
|
||||
</Tab>
|
||||
<Tab
|
||||
id="sessions"
|
||||
eventKey="sessions"
|
||||
data-testid="rs-sessions-tab"
|
||||
aria-label="sessions-tab"
|
||||
title={
|
||||
<TabTitleText>{t("realm-settings:sessions")}</TabTitleText>
|
||||
}
|
||||
>
|
||||
<RealmSettingsSessionsTab key={key} realm={realm} />
|
||||
</Tab>
|
||||
<Tab
|
||||
id="tokens"
|
||||
eventKey="tokens"
|
||||
data-testid="rs-tokens-tab"
|
||||
aria-label="tokens-tab"
|
||||
title={<TabTitleText>{t("realm-settings:tokens")}</TabTitleText>}
|
||||
>
|
||||
<RealmSettingsTokensTab
|
||||
realm={realm}
|
||||
reset={() => resetForm(realm)}
|
||||
/>
|
||||
</Tab>
|
||||
</KeycloakTabs>
|
||||
</FormProvider>
|
||||
</PageSection>
|
||||
</>
|
||||
<RealmSettingsTabs
|
||||
realm={realm}
|
||||
realmComponents={realmComponents}
|
||||
currentUser={currentUser}
|
||||
/>
|
||||
);
|
||||
};
|
||||
|
|
358
src/realm-settings/RealmSettingsTabs.tsx
Normal file
358
src/realm-settings/RealmSettingsTabs.tsx
Normal file
|
@ -0,0 +1,358 @@
|
|||
import React, { useEffect, useState } from "react";
|
||||
import { useHistory } from "react-router-dom";
|
||||
import { Controller, FormProvider, useForm } from "react-hook-form";
|
||||
import { useTranslation } from "react-i18next";
|
||||
import {
|
||||
AlertVariant,
|
||||
ButtonVariant,
|
||||
DropdownItem,
|
||||
DropdownSeparator,
|
||||
PageSection,
|
||||
Tab,
|
||||
Tabs,
|
||||
TabTitleText,
|
||||
} from "@patternfly/react-core";
|
||||
|
||||
import type RealmRepresentation from "@keycloak/keycloak-admin-client/lib/defs/realmRepresentation";
|
||||
import type ComponentRepresentation from "@keycloak/keycloak-admin-client/lib/defs/componentRepresentation";
|
||||
import type UserRepresentation from "@keycloak/keycloak-admin-client/lib/defs/userRepresentation";
|
||||
|
||||
import { useConfirmDialog } from "../components/confirm-dialog/ConfirmDialog";
|
||||
import { KeycloakTabs } from "../components/keycloak-tabs/KeycloakTabs";
|
||||
import { useRealm } from "../context/realm-context/RealmContext";
|
||||
import { ViewHeader } from "../components/view-header/ViewHeader";
|
||||
import { useAdminClient } from "../context/auth/AdminClient";
|
||||
import { useServerInfo } from "../context/server-info/ServerInfoProvider";
|
||||
import { useAlerts } from "../components/alert/Alerts";
|
||||
import {
|
||||
convertFormValuesToObject,
|
||||
convertToFormValues,
|
||||
KEY_PROVIDER_TYPE,
|
||||
toUpperCase,
|
||||
} from "../util";
|
||||
|
||||
import { RealmSettingsEmailTab } from "./EmailTab";
|
||||
import { EventsTab } from "./event-config/EventsTab";
|
||||
import { RealmSettingsGeneralTab } from "./GeneralTab";
|
||||
import { KeysListTab } from "./KeysListTab";
|
||||
import { KeysProvidersTab } from "./KeysProvidersTab";
|
||||
import { RealmSettingsLoginTab } from "./LoginTab";
|
||||
import { SecurityDefences } from "./security-defences/SecurityDefences";
|
||||
import { RealmSettingsSessionsTab } from "./SessionsTab";
|
||||
import { RealmSettingsThemesTab } from "./ThemesTab";
|
||||
import { RealmSettingsTokensTab } from "./TokensTab";
|
||||
import { PartialImportDialog } from "./PartialImport";
|
||||
import { toRealmSettings } from "./routes/RealmSettings";
|
||||
import { LocalizationTab } from "./LocalizationTab";
|
||||
|
||||
type RealmSettingsHeaderProps = {
|
||||
onChange: (value: boolean) => void;
|
||||
value: boolean;
|
||||
save: () => void;
|
||||
realmName: string;
|
||||
};
|
||||
|
||||
const RealmSettingsHeader = ({
|
||||
save,
|
||||
onChange,
|
||||
value,
|
||||
realmName,
|
||||
}: RealmSettingsHeaderProps) => {
|
||||
const { t } = useTranslation("realm-settings");
|
||||
const adminClient = useAdminClient();
|
||||
const { addAlert, addError } = useAlerts();
|
||||
const history = useHistory();
|
||||
const { refresh } = useRealm();
|
||||
const [partialImportOpen, setPartialImportOpen] = useState(false);
|
||||
|
||||
const [toggleDisableDialog, DisableConfirm] = useConfirmDialog({
|
||||
titleKey: "realm-settings:disableConfirmTitle",
|
||||
messageKey: "realm-settings:disableConfirm",
|
||||
continueButtonLabel: "common:disable",
|
||||
onConfirm: () => {
|
||||
onChange(!value);
|
||||
save();
|
||||
},
|
||||
});
|
||||
|
||||
const [toggleDeleteDialog, DeleteConfirm] = useConfirmDialog({
|
||||
titleKey: "realm-settings:deleteConfirmTitle",
|
||||
messageKey: "realm-settings:deleteConfirm",
|
||||
continueButtonLabel: "common:delete",
|
||||
continueButtonVariant: ButtonVariant.danger,
|
||||
onConfirm: async () => {
|
||||
try {
|
||||
await adminClient.realms.del({ realm: realmName });
|
||||
addAlert(t("deletedSuccess"), AlertVariant.success);
|
||||
history.push("/master/");
|
||||
refresh();
|
||||
} catch (error) {
|
||||
addError("realm-settings:deleteError", error);
|
||||
}
|
||||
},
|
||||
});
|
||||
|
||||
return (
|
||||
<>
|
||||
<DisableConfirm />
|
||||
<DeleteConfirm />
|
||||
<PartialImportDialog
|
||||
open={partialImportOpen}
|
||||
toggleDialog={() => setPartialImportOpen(!partialImportOpen)}
|
||||
/>
|
||||
<ViewHeader
|
||||
titleKey={toUpperCase(realmName)}
|
||||
divider={false}
|
||||
dropdownItems={[
|
||||
<DropdownItem
|
||||
key="import"
|
||||
data-testid="openPartialImportModal"
|
||||
onClick={() => {
|
||||
setPartialImportOpen(true);
|
||||
}}
|
||||
>
|
||||
{t("partialImport")}
|
||||
</DropdownItem>,
|
||||
<DropdownItem key="export">{t("partialExport")}</DropdownItem>,
|
||||
<DropdownSeparator key="separator" />,
|
||||
<DropdownItem key="delete" onClick={toggleDeleteDialog}>
|
||||
{t("common:delete")}
|
||||
</DropdownItem>,
|
||||
]}
|
||||
isEnabled={value}
|
||||
onToggle={(value) => {
|
||||
if (!value) {
|
||||
toggleDisableDialog();
|
||||
} else {
|
||||
onChange(value);
|
||||
save();
|
||||
}
|
||||
}}
|
||||
/>
|
||||
</>
|
||||
);
|
||||
};
|
||||
|
||||
type RealmSettingsTabsProps = {
|
||||
realm: RealmRepresentation;
|
||||
realmComponents: ComponentRepresentation[];
|
||||
currentUser: UserRepresentation;
|
||||
};
|
||||
|
||||
export const RealmSettingsTabs = ({
|
||||
realm,
|
||||
realmComponents,
|
||||
currentUser,
|
||||
}: RealmSettingsTabsProps) => {
|
||||
const { t } = useTranslation("realm-settings");
|
||||
const adminClient = useAdminClient();
|
||||
const { addAlert, addError } = useAlerts();
|
||||
const {
|
||||
realm: realmName,
|
||||
refresh: refreshRealm,
|
||||
setRealm: setCurrentRealm,
|
||||
} = useRealm();
|
||||
const history = useHistory();
|
||||
|
||||
const kpComponentTypes =
|
||||
useServerInfo().componentTypes?.[KEY_PROVIDER_TYPE] ?? [];
|
||||
|
||||
const form = useForm({ mode: "onChange" });
|
||||
const { control, getValues, setValue, reset: resetForm } = form;
|
||||
|
||||
const [activeTab, setActiveTab] = useState(0);
|
||||
const [key, setKey] = useState(0);
|
||||
|
||||
const refresh = () => {
|
||||
setKey(new Date().getTime());
|
||||
};
|
||||
|
||||
const setupForm = (r: RealmRepresentation = realm) => {
|
||||
Object.entries(r).map(([key, value]) => {
|
||||
if (key === "attributes") {
|
||||
convertToFormValues(value, "attributes", setValue);
|
||||
} else {
|
||||
setValue(key, value);
|
||||
}
|
||||
});
|
||||
resetForm(getValues());
|
||||
};
|
||||
|
||||
useEffect(() => {
|
||||
setupForm();
|
||||
}, []);
|
||||
|
||||
const save = async (realm: RealmRepresentation) => {
|
||||
try {
|
||||
const attributes = Object.fromEntries(
|
||||
Object.entries(
|
||||
convertFormValuesToObject(realm.attributes, true)
|
||||
).filter(([, v]) => v !== "")
|
||||
);
|
||||
await adminClient.realms.update(
|
||||
{ realm: realmName },
|
||||
{ ...realm, id: realmName, attributes }
|
||||
);
|
||||
setupForm(realm);
|
||||
const isRealmRenamed = realmName !== realm.realm;
|
||||
if (isRealmRenamed) {
|
||||
await refreshRealm();
|
||||
setCurrentRealm(realm.realm!);
|
||||
history.push(toRealmSettings({ realm: realm.realm! }));
|
||||
}
|
||||
addAlert(t("saveSuccess"), AlertVariant.success);
|
||||
} catch (error) {
|
||||
addError("realm-settings:saveError", error);
|
||||
}
|
||||
};
|
||||
|
||||
return (
|
||||
<>
|
||||
<Controller
|
||||
name="enabled"
|
||||
defaultValue={true}
|
||||
control={control}
|
||||
render={({ onChange, value }) => (
|
||||
<RealmSettingsHeader
|
||||
value={value}
|
||||
onChange={onChange}
|
||||
realmName={realmName}
|
||||
save={() => save(getValues())}
|
||||
/>
|
||||
)}
|
||||
/>
|
||||
<PageSection variant="light" className="pf-u-p-0">
|
||||
<FormProvider {...form}>
|
||||
<KeycloakTabs isBox>
|
||||
<Tab
|
||||
eventKey="general"
|
||||
title={<TabTitleText>{t("general")}</TabTitleText>}
|
||||
data-testid="rs-general-tab"
|
||||
aria-label="general-tab"
|
||||
>
|
||||
<RealmSettingsGeneralTab
|
||||
save={save}
|
||||
reset={() => resetForm(realm)}
|
||||
/>
|
||||
</Tab>
|
||||
<Tab
|
||||
eventKey="login"
|
||||
title={<TabTitleText>{t("login")}</TabTitleText>}
|
||||
data-testid="rs-login-tab"
|
||||
aria-label="login-tab"
|
||||
>
|
||||
<RealmSettingsLoginTab save={save} realm={realm} />
|
||||
</Tab>
|
||||
<Tab
|
||||
eventKey="email"
|
||||
title={<TabTitleText>{t("email")}</TabTitleText>}
|
||||
data-testid="rs-email-tab"
|
||||
aria-label="email-tab"
|
||||
>
|
||||
<RealmSettingsEmailTab user={currentUser} realm={realm} />
|
||||
</Tab>
|
||||
<Tab
|
||||
eventKey="themes"
|
||||
title={<TabTitleText>{t("themes")}</TabTitleText>}
|
||||
data-testid="rs-themes-tab"
|
||||
aria-label="themes-tab"
|
||||
>
|
||||
<RealmSettingsThemesTab
|
||||
save={save}
|
||||
reset={() => resetForm(realm)}
|
||||
realm={realm}
|
||||
/>
|
||||
</Tab>
|
||||
<Tab
|
||||
eventKey="keys"
|
||||
title={<TabTitleText>{t("realm-settings:keys")}</TabTitleText>}
|
||||
data-testid="rs-keys-tab"
|
||||
aria-label="keys-tab"
|
||||
>
|
||||
<Tabs
|
||||
activeKey={activeTab}
|
||||
onSelect={(_, key) => setActiveTab(Number(key))}
|
||||
>
|
||||
<Tab
|
||||
id="keysList"
|
||||
eventKey={0}
|
||||
data-testid="rs-keys-list-tab"
|
||||
aria-label="keys-list-subtab"
|
||||
title={<TabTitleText>{t("keysList")}</TabTitleText>}
|
||||
>
|
||||
<KeysListTab realmComponents={realmComponents} />
|
||||
</Tab>
|
||||
<Tab
|
||||
id="providers"
|
||||
data-testid="rs-providers-tab"
|
||||
aria-label="rs-providers-tab"
|
||||
eventKey={1}
|
||||
title={<TabTitleText>{t("providers")}</TabTitleText>}
|
||||
>
|
||||
<KeysProvidersTab
|
||||
realmComponents={realmComponents}
|
||||
keyProviderComponentTypes={kpComponentTypes}
|
||||
refresh={refresh}
|
||||
/>
|
||||
</Tab>
|
||||
</Tabs>
|
||||
</Tab>
|
||||
<Tab
|
||||
eventKey="events"
|
||||
title={<TabTitleText>{t("events")}</TabTitleText>}
|
||||
data-testid="rs-realm-events-tab"
|
||||
aria-label="realm-events-tab"
|
||||
>
|
||||
<EventsTab />
|
||||
</Tab>
|
||||
<Tab
|
||||
id="localization"
|
||||
eventKey="localization"
|
||||
data-testid="rs-localization-tab"
|
||||
title={<TabTitleText>{t("localization")}</TabTitleText>}
|
||||
>
|
||||
<LocalizationTab
|
||||
key={key}
|
||||
refresh={refresh}
|
||||
save={save}
|
||||
reset={() => resetForm(realm)}
|
||||
realm={realm}
|
||||
/>
|
||||
</Tab>
|
||||
<Tab
|
||||
id="securityDefences"
|
||||
eventKey="securityDefences"
|
||||
title={<TabTitleText>{t("securityDefences")}</TabTitleText>}
|
||||
>
|
||||
<SecurityDefences save={save} reset={() => resetForm(realm)} />
|
||||
</Tab>
|
||||
<Tab
|
||||
id="sessions"
|
||||
eventKey="sessions"
|
||||
data-testid="rs-sessions-tab"
|
||||
aria-label="sessions-tab"
|
||||
title={
|
||||
<TabTitleText>{t("realm-settings:sessions")}</TabTitleText>
|
||||
}
|
||||
>
|
||||
<RealmSettingsSessionsTab key={key} realm={realm} save={save} />
|
||||
</Tab>
|
||||
<Tab
|
||||
id="tokens"
|
||||
eventKey="tokens"
|
||||
data-testid="rs-tokens-tab"
|
||||
aria-label="tokens-tab"
|
||||
title={<TabTitleText>{t("realm-settings:tokens")}</TabTitleText>}
|
||||
>
|
||||
<RealmSettingsTokensTab
|
||||
save={save}
|
||||
realm={realm}
|
||||
reset={() => resetForm(realm)}
|
||||
/>
|
||||
</Tab>
|
||||
</KeycloakTabs>
|
||||
</FormProvider>
|
||||
</PageSection>
|
||||
</>
|
||||
);
|
||||
};
|
|
@ -1,9 +1,8 @@
|
|||
import React, { useEffect, useState } from "react";
|
||||
import React from "react";
|
||||
import { useTranslation } from "react-i18next";
|
||||
import { Controller, useForm, useWatch } from "react-hook-form";
|
||||
import { Controller, useFormContext, useWatch } from "react-hook-form";
|
||||
import {
|
||||
ActionGroup,
|
||||
AlertVariant,
|
||||
Button,
|
||||
FormGroup,
|
||||
PageSection,
|
||||
|
@ -14,55 +13,33 @@ import type RealmRepresentation from "@keycloak/keycloak-admin-client/lib/defs/r
|
|||
import { FormAccess } from "../components/form-access/FormAccess";
|
||||
import { HelpItem } from "../components/help-enabler/HelpItem";
|
||||
import { FormPanel } from "../components/scroll-form/FormPanel";
|
||||
import { useAdminClient } from "../context/auth/AdminClient";
|
||||
import { useAlerts } from "../components/alert/Alerts";
|
||||
import { useRealm } from "../context/realm-context/RealmContext";
|
||||
|
||||
import "./RealmSettingsSection.css";
|
||||
import type UserRepresentation from "@keycloak/keycloak-admin-client/lib/defs/userRepresentation";
|
||||
import { TimeSelector } from "../components/time-selector/TimeSelector";
|
||||
|
||||
import "./RealmSettingsSection.css";
|
||||
|
||||
type RealmSettingsSessionsTabProps = {
|
||||
realm?: RealmRepresentation;
|
||||
user?: UserRepresentation;
|
||||
realm: RealmRepresentation;
|
||||
save: (realm: RealmRepresentation) => void;
|
||||
};
|
||||
|
||||
export const RealmSettingsSessionsTab = ({
|
||||
realm: initialRealm,
|
||||
realm,
|
||||
save,
|
||||
}: RealmSettingsSessionsTabProps) => {
|
||||
const { t } = useTranslation("realm-settings");
|
||||
const adminClient = useAdminClient();
|
||||
const { realm: realmName } = useRealm();
|
||||
const { addAlert, addError } = useAlerts();
|
||||
|
||||
const [realm, setRealm] = useState(initialRealm);
|
||||
|
||||
const {
|
||||
control,
|
||||
handleSubmit,
|
||||
reset: resetForm,
|
||||
formState,
|
||||
} = useForm<RealmRepresentation>();
|
||||
} = useFormContext<RealmRepresentation>();
|
||||
|
||||
const offlineSessionMaxEnabled = useWatch({
|
||||
control,
|
||||
name: "offlineSessionMaxLifespanEnabled",
|
||||
defaultValue: realm?.offlineSessionMaxLifespanEnabled,
|
||||
});
|
||||
|
||||
useEffect(() => resetForm(realm), [realm]);
|
||||
|
||||
const save = async (form: RealmRepresentation) => {
|
||||
try {
|
||||
const savedRealm = { ...realm, ...form };
|
||||
await adminClient.realms.update({ realm: realmName }, savedRealm);
|
||||
setRealm(savedRealm);
|
||||
addAlert(t("saveSuccess"), AlertVariant.success);
|
||||
} catch (error) {
|
||||
addError("realm-settings:saveError", error);
|
||||
}
|
||||
};
|
||||
|
||||
const reset = () => {
|
||||
if (realm) {
|
||||
resetForm(realm);
|
||||
|
@ -94,7 +71,7 @@ export const RealmSettingsSessionsTab = ({
|
|||
>
|
||||
<Controller
|
||||
name="ssoSessionIdleTimeout"
|
||||
defaultValue={realm?.ssoSessionIdleTimeout}
|
||||
defaultValue={realm.ssoSessionIdleTimeout}
|
||||
control={control}
|
||||
render={({ onChange, value }) => (
|
||||
<TimeSelector
|
||||
|
@ -351,7 +328,6 @@ export const RealmSettingsSessionsTab = ({
|
|||
>
|
||||
<Controller
|
||||
name="offlineSessionMaxLifespan"
|
||||
defaultValue=""
|
||||
control={control}
|
||||
render={({ onChange, value }) => (
|
||||
<TimeSelector
|
||||
|
|
|
@ -3,7 +3,6 @@ import { useTranslation } from "react-i18next";
|
|||
import { Controller, useFormContext, useWatch } from "react-hook-form";
|
||||
import {
|
||||
ActionGroup,
|
||||
AlertVariant,
|
||||
Button,
|
||||
FormGroup,
|
||||
NumberInput,
|
||||
|
@ -20,38 +19,26 @@ import type RealmRepresentation from "@keycloak/keycloak-admin-client/lib/defs/r
|
|||
import { FormAccess } from "../components/form-access/FormAccess";
|
||||
import { HelpItem } from "../components/help-enabler/HelpItem";
|
||||
import { FormPanel } from "../components/scroll-form/FormPanel";
|
||||
import { useAdminClient } from "../context/auth/AdminClient";
|
||||
import { useAlerts } from "../components/alert/Alerts";
|
||||
import { useRealm } from "../context/realm-context/RealmContext";
|
||||
|
||||
import "./RealmSettingsSection.css";
|
||||
import type UserRepresentation from "@keycloak/keycloak-admin-client/lib/defs/userRepresentation";
|
||||
import { TimeSelector } from "../components/time-selector/TimeSelector";
|
||||
import { useServerInfo } from "../context/server-info/ServerInfoProvider";
|
||||
import {
|
||||
forHumans,
|
||||
flatten,
|
||||
convertFormValuesToObject,
|
||||
interpolateTimespan,
|
||||
} from "../util";
|
||||
import { forHumans, interpolateTimespan } from "../util";
|
||||
|
||||
import "./RealmSettingsSection.css";
|
||||
|
||||
type RealmSettingsSessionsTabProps = {
|
||||
realm: RealmRepresentation;
|
||||
user?: UserRepresentation;
|
||||
save: (realm: RealmRepresentation) => void;
|
||||
reset?: () => void;
|
||||
};
|
||||
|
||||
export const RealmSettingsTokensTab = ({
|
||||
realm: initialRealm,
|
||||
realm,
|
||||
reset,
|
||||
save,
|
||||
}: RealmSettingsSessionsTabProps) => {
|
||||
const { t } = useTranslation("realm-settings");
|
||||
const adminClient = useAdminClient();
|
||||
const { realm: realmName } = useRealm();
|
||||
const { addAlert, addError } = useAlerts();
|
||||
const serverInfo = useServerInfo();
|
||||
|
||||
const [realm, setRealm] = useState(initialRealm);
|
||||
const [defaultSigAlgDrpdwnIsOpen, setDefaultSigAlgDrpdwnOpen] =
|
||||
useState(false);
|
||||
|
||||
|
@ -78,28 +65,6 @@ export const RealmSettingsTokensTab = ({
|
|||
defaultValue: realm?.offlineSessionMaxLifespanEnabled,
|
||||
});
|
||||
|
||||
const save = async () => {
|
||||
const firstInstanceOnly = true;
|
||||
const flattenedAttributes = convertFormValuesToObject(
|
||||
flatten(form.getValues()["attributes"]),
|
||||
firstInstanceOnly
|
||||
);
|
||||
|
||||
try {
|
||||
const newRealm: RealmRepresentation = {
|
||||
...realm,
|
||||
...form.getValues(),
|
||||
attributes: flattenedAttributes,
|
||||
};
|
||||
|
||||
await adminClient.realms.update({ realm: realmName }, newRealm);
|
||||
|
||||
setRealm(newRealm);
|
||||
addAlert(t("saveSuccess"), AlertVariant.success);
|
||||
} catch (error) {
|
||||
addError("realm-settings:saveError", error);
|
||||
}
|
||||
};
|
||||
return (
|
||||
<PageSection variant="light">
|
||||
<FormPanel
|
||||
|
|
Loading…
Reference in a new issue