2021-09-20 12:42:07 +00:00
|
|
|
import React, { useMemo, useState } from "react";
|
2021-09-24 10:46:01 +00:00
|
|
|
import { omit } from "lodash";
|
2021-09-20 12:42:07 +00:00
|
|
|
import {
|
|
|
|
AlertVariant,
|
|
|
|
Button,
|
|
|
|
ButtonVariant,
|
|
|
|
Label,
|
|
|
|
PageSection,
|
|
|
|
ToolbarItem,
|
|
|
|
} from "@patternfly/react-core";
|
|
|
|
import { Divider, Flex, FlexItem, Radio, Title } from "@patternfly/react-core";
|
|
|
|
import { CodeEditor, Language } from "@patternfly/react-code-editor";
|
|
|
|
import { KeycloakDataTable } from "../components/table-toolbar/KeycloakDataTable";
|
|
|
|
import { ListEmptyState } from "../components/list-empty-state/ListEmptyState";
|
|
|
|
import { useTranslation } from "react-i18next";
|
|
|
|
import { useAdminClient } from "../context/auth/AdminClient";
|
|
|
|
import { useConfirmDialog } from "../components/confirm-dialog/ConfirmDialog";
|
|
|
|
import { useRealm } from "../context/realm-context/RealmContext";
|
|
|
|
import { useAlerts } from "../components/alert/Alerts";
|
|
|
|
import { Link } from "react-router-dom";
|
2021-09-09 10:45:19 +00:00
|
|
|
import "./RealmSettingsSection.css";
|
2021-09-20 12:42:07 +00:00
|
|
|
import { toNewClientProfile } from "./routes/NewClientProfile";
|
2021-09-24 10:46:01 +00:00
|
|
|
import type ClientProfileRepresentation from "@keycloak/keycloak-admin-client/lib/defs/clientProfileRepresentation";
|
2021-09-20 12:42:07 +00:00
|
|
|
|
2021-09-24 10:46:01 +00:00
|
|
|
type ClientProfile = ClientProfileRepresentation & {
|
2021-09-20 12:42:07 +00:00
|
|
|
global: boolean;
|
|
|
|
};
|
2021-09-09 10:45:19 +00:00
|
|
|
|
|
|
|
export const ProfilesTab = () => {
|
2021-09-20 12:42:07 +00:00
|
|
|
const { t } = useTranslation("realm-settings");
|
|
|
|
const adminClient = useAdminClient();
|
|
|
|
const { realm } = useRealm();
|
|
|
|
const { addAlert, addError } = useAlerts();
|
2021-09-24 10:46:01 +00:00
|
|
|
const [tableProfiles, setTableProfiles] = useState<ClientProfile[]>();
|
|
|
|
const [globalProfiles, setGlobalProfiles] =
|
|
|
|
useState<ClientProfileRepresentation[]>();
|
|
|
|
const [selectedProfile, setSelectedProfile] = useState<ClientProfile>();
|
2021-09-20 12:42:07 +00:00
|
|
|
const [show, setShow] = useState(false);
|
2021-09-24 10:46:01 +00:00
|
|
|
const [key, setKey] = useState(0);
|
2021-09-20 12:42:07 +00:00
|
|
|
|
|
|
|
const loader = async () => {
|
|
|
|
const allProfiles = await adminClient.clientPolicies.listProfiles({
|
|
|
|
realm,
|
|
|
|
includeGlobalProfiles: true,
|
|
|
|
});
|
|
|
|
|
2021-09-24 10:46:01 +00:00
|
|
|
setGlobalProfiles(allProfiles.globalProfiles);
|
|
|
|
|
2021-09-20 12:42:07 +00:00
|
|
|
const globalProfiles = allProfiles.globalProfiles?.map(
|
|
|
|
(globalProfiles) => ({
|
|
|
|
...globalProfiles,
|
|
|
|
global: true,
|
|
|
|
})
|
|
|
|
);
|
|
|
|
|
|
|
|
const profiles = allProfiles.profiles?.map((profiles) => ({
|
|
|
|
...profiles,
|
|
|
|
global: false,
|
|
|
|
}));
|
|
|
|
|
|
|
|
const allClientProfiles = globalProfiles?.concat(profiles ?? []);
|
2021-09-24 10:46:01 +00:00
|
|
|
setTableProfiles(allClientProfiles);
|
2021-09-20 12:42:07 +00:00
|
|
|
|
|
|
|
return allClientProfiles ?? [];
|
|
|
|
};
|
|
|
|
|
2021-09-24 10:46:01 +00:00
|
|
|
const code = useMemo(
|
|
|
|
() => JSON.stringify(tableProfiles, null, 2),
|
|
|
|
[tableProfiles]
|
|
|
|
);
|
2021-09-20 12:42:07 +00:00
|
|
|
|
|
|
|
const [toggleDeleteDialog, DeleteConfirm] = useConfirmDialog({
|
|
|
|
titleKey: t("deleteClientProfileConfirmTitle"),
|
|
|
|
messageKey: t("deleteClientProfileConfirm"),
|
|
|
|
continueButtonLabel: t("delete"),
|
|
|
|
continueButtonVariant: ButtonVariant.danger,
|
|
|
|
onConfirm: async () => {
|
2021-09-24 10:46:01 +00:00
|
|
|
const updatedProfiles = tableProfiles
|
|
|
|
?.filter(
|
|
|
|
(profile) => profile.name !== selectedProfile?.name && !profile.global
|
|
|
|
)
|
|
|
|
.map<ClientProfileRepresentation>((profile) => omit(profile, "global"));
|
|
|
|
|
2021-09-20 12:42:07 +00:00
|
|
|
try {
|
2021-09-24 10:46:01 +00:00
|
|
|
await adminClient.clientPolicies.createProfiles({
|
|
|
|
profiles: updatedProfiles,
|
|
|
|
globalProfiles,
|
|
|
|
});
|
2021-09-20 12:42:07 +00:00
|
|
|
addAlert(t("deleteClientSuccess"), AlertVariant.success);
|
2021-09-24 10:46:01 +00:00
|
|
|
setKey(key + 1);
|
2021-09-20 12:42:07 +00:00
|
|
|
} catch (error) {
|
|
|
|
addError(t("deleteClientError"), error);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
const cellFormatter = (row: ClientProfile) => (
|
|
|
|
<Link to={""} key={row.name}>
|
|
|
|
{row.name} {""}
|
|
|
|
{row.global && <Label color="blue">{t("global")}</Label>}
|
|
|
|
</Link>
|
|
|
|
);
|
|
|
|
|
2021-09-09 10:45:19 +00:00
|
|
|
return (
|
2021-09-20 12:42:07 +00:00
|
|
|
<>
|
|
|
|
<DeleteConfirm />
|
|
|
|
<PageSection>
|
|
|
|
<Flex className="kc-profiles-config-section">
|
|
|
|
<FlexItem>
|
|
|
|
<Title headingLevel="h1" size="md">
|
|
|
|
{t("profilesConfigType")}
|
|
|
|
</Title>
|
|
|
|
</FlexItem>
|
|
|
|
<FlexItem>
|
|
|
|
<Radio
|
|
|
|
isChecked={!show}
|
|
|
|
name="formView"
|
|
|
|
onChange={() => setShow(false)}
|
|
|
|
label={t("profilesConfigTypes.formView")}
|
|
|
|
id="formView-radioBtn"
|
|
|
|
className="kc-form-radio-btn pf-u-mr-sm pf-u-ml-sm"
|
2021-09-24 10:46:01 +00:00
|
|
|
data-testid="formView-radioBtn"
|
2021-09-20 12:42:07 +00:00
|
|
|
/>
|
|
|
|
</FlexItem>
|
|
|
|
<FlexItem>
|
|
|
|
<Radio
|
|
|
|
isChecked={show}
|
|
|
|
name="jsonEditor"
|
|
|
|
onChange={() => setShow(true)}
|
|
|
|
label={t("profilesConfigTypes.jsonEditor")}
|
|
|
|
id="jsonEditor-radioBtn"
|
|
|
|
className="kc-editor-radio-btn"
|
2021-09-24 10:46:01 +00:00
|
|
|
data-testid="jsonEditor-radioBtn"
|
2021-09-20 12:42:07 +00:00
|
|
|
/>
|
|
|
|
</FlexItem>
|
|
|
|
</Flex>
|
|
|
|
</PageSection>
|
|
|
|
<Divider />
|
|
|
|
{!show ? (
|
|
|
|
<KeycloakDataTable
|
2021-09-24 10:46:01 +00:00
|
|
|
key={key}
|
2021-09-20 12:42:07 +00:00
|
|
|
ariaLabelKey="userEventsRegistered"
|
|
|
|
searchPlaceholderKey="realm-settings:clientProfileSearch"
|
|
|
|
isPaginated
|
|
|
|
loader={loader}
|
|
|
|
toolbarItem={
|
|
|
|
<ToolbarItem>
|
|
|
|
<Button
|
|
|
|
id="createProfile"
|
|
|
|
component={Link}
|
|
|
|
// @ts-ignore
|
|
|
|
to={toNewClientProfile({ realm })}
|
|
|
|
data-testid="createProfile"
|
|
|
|
>
|
|
|
|
{t("createClientProfile")}
|
|
|
|
</Button>
|
|
|
|
</ToolbarItem>
|
|
|
|
}
|
2021-09-24 10:46:01 +00:00
|
|
|
isRowDisabled={(value) => value.global}
|
2021-09-20 12:42:07 +00:00
|
|
|
actions={[
|
|
|
|
{
|
|
|
|
title: t("common:delete"),
|
2021-09-24 10:46:01 +00:00
|
|
|
onRowClick: (profile) => {
|
|
|
|
setSelectedProfile(profile);
|
2021-09-20 12:42:07 +00:00
|
|
|
toggleDeleteDialog();
|
|
|
|
},
|
|
|
|
},
|
|
|
|
]}
|
|
|
|
columns={[
|
|
|
|
{
|
|
|
|
name: "name",
|
|
|
|
displayKey: t("clientProfileName"),
|
|
|
|
cellRenderer: cellFormatter,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "description",
|
|
|
|
displayKey: t("clientProfileDescription"),
|
|
|
|
},
|
|
|
|
]}
|
|
|
|
emptyState={
|
|
|
|
<ListEmptyState
|
|
|
|
message={t("emptyClientProfiles")}
|
|
|
|
instructions={t("emptyClientProfilesInstructions")}
|
|
|
|
/>
|
|
|
|
}
|
|
|
|
/>
|
|
|
|
) : (
|
|
|
|
<>
|
|
|
|
<div className="pf-u-mt-md pf-u-ml-lg">
|
|
|
|
<CodeEditor
|
|
|
|
isLineNumbersVisible
|
|
|
|
isLanguageLabelVisible
|
|
|
|
code={code}
|
|
|
|
language={Language.json}
|
|
|
|
height="30rem"
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
<div className="pf-u-mt-md">
|
|
|
|
<Button
|
|
|
|
variant={ButtonVariant.primary}
|
|
|
|
className="pf-u-mr-md pf-u-ml-lg"
|
|
|
|
>
|
|
|
|
{t("save")}
|
|
|
|
</Button>
|
2021-09-24 10:46:01 +00:00
|
|
|
<Button variant={ButtonVariant.link}> {t("reload")}</Button>
|
2021-09-20 12:42:07 +00:00
|
|
|
</div>
|
|
|
|
</>
|
|
|
|
)}
|
|
|
|
</>
|
2021-09-09 10:45:19 +00:00
|
|
|
);
|
|
|
|
};
|