136 lines
3.6 KiB
TypeScript
136 lines
3.6 KiB
TypeScript
|
import React, { useEffect, useState } from "react";
|
||
|
import { useParams } from "react-router-dom";
|
||
|
import { Button, Modal, ModalVariant } from "@patternfly/react-core";
|
||
|
import { useTranslation } from "react-i18next";
|
||
|
import { useForm } from "react-hook-form";
|
||
|
import { useAdminClient } from "../context/auth/AdminClient";
|
||
|
import RoleRepresentation from "keycloak-admin/lib/defs/roleRepresentation";
|
||
|
import { KeycloakDataTable } from "../components/table-toolbar/KeycloakDataTable";
|
||
|
import { ListEmptyState } from "../components/list-empty-state/ListEmptyState";
|
||
|
import { boolFormatter } from "../util"
|
||
|
|
||
|
export type AssociatedRolesModalProps = {
|
||
|
open: boolean;
|
||
|
toggleDialog: () => void;
|
||
|
};
|
||
|
|
||
|
const attributesToArray = (attributes: { [key: string]: string }): any => {
|
||
|
if (!attributes || Object.keys(attributes).length == 0) {
|
||
|
return [
|
||
|
{
|
||
|
key: "",
|
||
|
value: "",
|
||
|
},
|
||
|
];
|
||
|
}
|
||
|
return Object.keys(attributes).map((key) => ({
|
||
|
key: key,
|
||
|
value: attributes[key],
|
||
|
}));
|
||
|
};
|
||
|
|
||
|
export const AssociatedRolesModal = (props: AssociatedRolesModalProps) => {
|
||
|
const { t } = useTranslation("roles");
|
||
|
const form = useForm<RoleRepresentation>({ mode: "onChange" });
|
||
|
const [name, setName] = useState("");
|
||
|
const adminClient = useAdminClient();
|
||
|
const [selectedRows, setSelectedRows] = useState<RoleRepresentation[]>([]);
|
||
|
|
||
|
const { id } = useParams<{ id: string }>();
|
||
|
|
||
|
const loader = async () => {
|
||
|
const allRoles = await adminClient.roles.find();
|
||
|
const roles = allRoles.filter(x => x.name != name)
|
||
|
|
||
|
return roles;
|
||
|
}
|
||
|
|
||
|
useEffect(() => {
|
||
|
(async () => {
|
||
|
if (id) {
|
||
|
const fetchedRole = await adminClient.roles.findOneById({ id });
|
||
|
setName(fetchedRole.name!);
|
||
|
setupForm(fetchedRole);
|
||
|
} else {
|
||
|
setName(t("createRole"));
|
||
|
}
|
||
|
})();
|
||
|
}, []);
|
||
|
|
||
|
const setupForm = (role: RoleRepresentation) => {
|
||
|
Object.entries(role).map((entry) => {
|
||
|
if (entry[0] === "attributes") {
|
||
|
form.setValue(entry[0], attributesToArray(entry[1]));
|
||
|
} else {
|
||
|
form.setValue(entry[0], entry[1]);
|
||
|
}
|
||
|
});
|
||
|
};
|
||
|
|
||
|
return (
|
||
|
<Modal
|
||
|
title={t("roles:associatedRolesModalTitle", { name })}
|
||
|
isOpen={props.open}
|
||
|
onClose={props.toggleDialog}
|
||
|
variant={ModalVariant.large}
|
||
|
actions={[
|
||
|
<Button
|
||
|
key="confirm"
|
||
|
variant="primary"
|
||
|
isDisabled={selectedRows.length === 0}
|
||
|
onClick={() => {
|
||
|
props.toggleDialog();
|
||
|
}}
|
||
|
>
|
||
|
Add
|
||
|
</Button>,
|
||
|
<Button
|
||
|
key="cancel"
|
||
|
variant="link"
|
||
|
onClick={() => {
|
||
|
props.toggleDialog();
|
||
|
}}
|
||
|
>
|
||
|
Cancel
|
||
|
</Button>,
|
||
|
]}
|
||
|
>
|
||
|
<KeycloakDataTable
|
||
|
key="role-list-modal"
|
||
|
loader={loader}
|
||
|
ariaLabelKey="roles:roleList"
|
||
|
searchPlaceholderKey="roles:searchFor"
|
||
|
canSelectAll
|
||
|
// isPaginated
|
||
|
onSelect={(rows) => {
|
||
|
setSelectedRows([...rows]);
|
||
|
}}
|
||
|
columns={[
|
||
|
{
|
||
|
name: "name",
|
||
|
displayKey: "roles:roleName",
|
||
|
},
|
||
|
{
|
||
|
name: "composite",
|
||
|
displayKey: "roles:composite",
|
||
|
cellFormatters: [boolFormatter()],
|
||
|
},
|
||
|
{
|
||
|
name: "description",
|
||
|
displayKey: "roles:description",
|
||
|
},
|
||
|
]}
|
||
|
emptyState={
|
||
|
<ListEmptyState
|
||
|
hasIcon={true}
|
||
|
message={t("noRolesInThisRealm")}
|
||
|
instructions={t("noRolesInThisRealmInstructions")}
|
||
|
primaryActionText={t("createRole")}
|
||
|
// onPrimaryAction={goToCreate}
|
||
|
/>
|
||
|
}
|
||
|
/>
|
||
|
</Modal>
|
||
|
);
|
||
|
};
|