138 lines
3.6 KiB
TypeScript
138 lines
3.6 KiB
TypeScript
|
import React, { useState } from "react";
|
||
|
import {
|
||
|
Button,
|
||
|
Label,
|
||
|
Modal,
|
||
|
ModalVariant,
|
||
|
Spinner,
|
||
|
} from "@patternfly/react-core";
|
||
|
import { useTranslation } from "react-i18next";
|
||
|
import { useFetch, useAdminClient } from "../context/auth/AdminClient";
|
||
|
import type RoleRepresentation from "@keycloak/keycloak-admin-client/lib/defs/roleRepresentation";
|
||
|
import { KeycloakDataTable } from "../components/table-toolbar/KeycloakDataTable";
|
||
|
import { ListEmptyState } from "../components/list-empty-state/ListEmptyState";
|
||
|
import type ClientProfileRepresentation from "@keycloak/keycloak-admin-client/lib/defs/clientProfileRepresentation";
|
||
|
|
||
|
type ClientProfile = ClientProfileRepresentation & {
|
||
|
global: boolean;
|
||
|
};
|
||
|
|
||
|
export type AddClientProfileModalProps = {
|
||
|
open: boolean;
|
||
|
toggleDialog: () => void;
|
||
|
onConfirm: (newReps: RoleRepresentation[]) => void;
|
||
|
allProfiles: string[];
|
||
|
};
|
||
|
|
||
|
export const AddClientProfileModal = (props: AddClientProfileModalProps) => {
|
||
|
const { t } = useTranslation("roles");
|
||
|
const adminClient = useAdminClient();
|
||
|
const [selectedRows, setSelectedRows] = useState<RoleRepresentation[]>([]);
|
||
|
|
||
|
const [tableProfiles, setTableProfiles] = useState<ClientProfile[]>();
|
||
|
|
||
|
useFetch(
|
||
|
() =>
|
||
|
adminClient.clientPolicies.listProfiles({
|
||
|
includeGlobalProfiles: true,
|
||
|
}),
|
||
|
(allProfiles) => {
|
||
|
const globalProfiles = allProfiles.globalProfiles?.map(
|
||
|
(globalProfiles) => ({
|
||
|
...globalProfiles,
|
||
|
global: true,
|
||
|
})
|
||
|
);
|
||
|
|
||
|
const profiles = allProfiles.profiles?.map((profiles) => ({
|
||
|
...profiles,
|
||
|
global: false,
|
||
|
}));
|
||
|
|
||
|
setTableProfiles([...(globalProfiles ?? []), ...(profiles ?? [])]);
|
||
|
},
|
||
|
[]
|
||
|
);
|
||
|
|
||
|
const loader = async () => tableProfiles ?? [];
|
||
|
|
||
|
if (!tableProfiles) {
|
||
|
return (
|
||
|
<div className="pf-u-text-align-center">
|
||
|
<Spinner />
|
||
|
</div>
|
||
|
);
|
||
|
}
|
||
|
|
||
|
const AliasRenderer = ({ name }: ClientProfile) => (
|
||
|
<>
|
||
|
{name && <Label color="blue">{name}</Label>} {name}
|
||
|
</>
|
||
|
);
|
||
|
|
||
|
return (
|
||
|
<Modal
|
||
|
data-testid="addClientProfile"
|
||
|
title={t("realm-settings:addClientProfile")}
|
||
|
isOpen={props.open}
|
||
|
onClose={props.toggleDialog}
|
||
|
variant={ModalVariant.large}
|
||
|
actions={[
|
||
|
<Button
|
||
|
key="add"
|
||
|
data-testid="add-client-profile-button"
|
||
|
variant="primary"
|
||
|
isDisabled={!selectedRows.length}
|
||
|
onClick={() => {
|
||
|
props.toggleDialog();
|
||
|
props.onConfirm(selectedRows);
|
||
|
}}
|
||
|
>
|
||
|
{t("common:add")}
|
||
|
</Button>,
|
||
|
<Button
|
||
|
key="cancel"
|
||
|
variant="link"
|
||
|
onClick={() => {
|
||
|
props.toggleDialog();
|
||
|
}}
|
||
|
>
|
||
|
{t("common:cancel")}
|
||
|
</Button>,
|
||
|
]}
|
||
|
>
|
||
|
<KeycloakDataTable
|
||
|
loader={loader}
|
||
|
isRowDisabled={(value) =>
|
||
|
props.allProfiles.includes(value.name!) || false
|
||
|
}
|
||
|
ariaLabelKey="realm-settings:profilesList"
|
||
|
searchPlaceholderKey="realm-settings:searchProfile"
|
||
|
canSelectAll
|
||
|
onSelect={(rows) => {
|
||
|
setSelectedRows([...rows]);
|
||
|
}}
|
||
|
columns={[
|
||
|
{
|
||
|
name: "name",
|
||
|
displayKey: "realm-settings:clientProfileName",
|
||
|
cellRenderer: AliasRenderer,
|
||
|
},
|
||
|
{
|
||
|
name: "description",
|
||
|
displayKey: "common:description",
|
||
|
},
|
||
|
]}
|
||
|
emptyState={
|
||
|
<ListEmptyState
|
||
|
hasIcon
|
||
|
message={t("noRoles")}
|
||
|
instructions={t("noRolesInstructions")}
|
||
|
primaryActionText={t("createRole")}
|
||
|
/>
|
||
|
}
|
||
|
/>
|
||
|
</Modal>
|
||
|
);
|
||
|
};
|