2021-02-04 20:50:13 +00:00
|
|
|
import React, { useState } from "react";
|
2021-02-17 07:17:04 +00:00
|
|
|
import { useHistory, useParams, useRouteMatch } from "react-router-dom";
|
2021-02-04 20:50:13 +00:00
|
|
|
import { useTranslation } from "react-i18next";
|
|
|
|
import {
|
|
|
|
AlertVariant,
|
|
|
|
Button,
|
|
|
|
ButtonVariant,
|
2021-02-17 07:17:04 +00:00
|
|
|
Checkbox,
|
2021-02-04 20:50:13 +00:00
|
|
|
PageSection,
|
|
|
|
} from "@patternfly/react-core";
|
|
|
|
import RoleRepresentation from "keycloak-admin/lib/defs/roleRepresentation";
|
|
|
|
import { ListEmptyState } from "../components/list-empty-state/ListEmptyState";
|
|
|
|
import { KeycloakDataTable } from "../components/table-toolbar/KeycloakDataTable";
|
|
|
|
import { formattedLinkTableCell } from "../components/external-link/FormattedLink";
|
|
|
|
import { useAlerts } from "../components/alert/Alerts";
|
|
|
|
import { useConfirmDialog } from "../components/confirm-dialog/ConfirmDialog";
|
2021-02-17 07:17:04 +00:00
|
|
|
import { boolFormatter, emptyFormatter } from "../util";
|
|
|
|
import { AssociatedRolesModal } from "./AssociatedRolesModal";
|
|
|
|
import { useAdminClient } from "../context/auth/AdminClient";
|
|
|
|
import { RoleFormType } from "./RealmRoleTabs";
|
2021-02-04 20:50:13 +00:00
|
|
|
|
|
|
|
type AssociatedRolesTabProps = {
|
|
|
|
additionalRoles: RoleRepresentation[];
|
2021-02-17 07:17:04 +00:00
|
|
|
addComposites: (newReps: RoleRepresentation[]) => void;
|
|
|
|
parentRole: RoleFormType;
|
|
|
|
onRemove: (newReps: RoleRepresentation[]) => void;
|
2021-02-04 20:50:13 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
export const AssociatedRolesTab = ({
|
|
|
|
additionalRoles,
|
2021-02-17 07:17:04 +00:00
|
|
|
addComposites,
|
|
|
|
parentRole,
|
|
|
|
onRemove,
|
2021-02-04 20:50:13 +00:00
|
|
|
}: AssociatedRolesTabProps) => {
|
|
|
|
const { t } = useTranslation("roles");
|
|
|
|
const history = useHistory();
|
|
|
|
const { addAlert } = useAlerts();
|
|
|
|
const { url } = useRouteMatch();
|
|
|
|
const tableRefresher = React.useRef<() => void>();
|
|
|
|
|
2021-02-17 07:17:04 +00:00
|
|
|
const [selectedRows, setSelectedRows] = useState<RoleRepresentation[]>([]);
|
|
|
|
const [open, setOpen] = useState(false);
|
|
|
|
|
|
|
|
const adminClient = useAdminClient();
|
|
|
|
const { id } = useParams<{ id: string; clientId: string }>();
|
2021-02-04 20:50:13 +00:00
|
|
|
|
|
|
|
const loader = async () => {
|
|
|
|
return Promise.resolve(additionalRoles);
|
|
|
|
};
|
|
|
|
|
|
|
|
React.useEffect(() => {
|
|
|
|
tableRefresher.current && tableRefresher.current();
|
|
|
|
}, [additionalRoles]);
|
|
|
|
|
2021-02-17 07:17:04 +00:00
|
|
|
const RoleName = (role: RoleRepresentation) => <>{role.name}</>;
|
2021-02-04 20:50:13 +00:00
|
|
|
|
2021-02-17 07:17:04 +00:00
|
|
|
const toggleModal = () => setOpen(!open);
|
2021-02-04 20:50:13 +00:00
|
|
|
|
|
|
|
const [toggleDeleteDialog, DeleteConfirm] = useConfirmDialog({
|
|
|
|
titleKey: "roles:roleRemoveAssociatedRoleConfirm",
|
2021-02-17 07:17:04 +00:00
|
|
|
messageKey: t("roles:roleRemoveAssociatedText"),
|
2021-02-04 20:50:13 +00:00
|
|
|
continueButtonLabel: "common:delete",
|
|
|
|
continueButtonVariant: ButtonVariant.danger,
|
|
|
|
onConfirm: async () => {
|
|
|
|
try {
|
2021-02-17 07:17:04 +00:00
|
|
|
await adminClient.roles.delCompositeRoles({ id }, selectedRows);
|
|
|
|
setSelectedRows([]);
|
2021-02-04 20:50:13 +00:00
|
|
|
|
2021-02-17 07:17:04 +00:00
|
|
|
addAlert(t("associatedRolesRemoved"), AlertVariant.success);
|
|
|
|
} catch (error) {
|
|
|
|
addAlert(t("roleDeleteError", { error }), AlertVariant.danger);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
const [
|
|
|
|
toggleDeleteAssociatedRolesDialog,
|
|
|
|
DeleteAssociatedRolesConfirm,
|
|
|
|
] = useConfirmDialog({
|
|
|
|
titleKey: t("roles:removeAssociatedRoles") + "?",
|
|
|
|
messageKey: t("roles:removeAllAssociatedRolesConfirmDialog", {
|
|
|
|
name: parentRole?.name || t("createRole"),
|
|
|
|
}),
|
|
|
|
continueButtonLabel: "common:delete",
|
|
|
|
continueButtonVariant: ButtonVariant.danger,
|
|
|
|
onConfirm: async () => {
|
|
|
|
try {
|
|
|
|
if (selectedRows.length === additionalRoles.length) {
|
|
|
|
onRemove(selectedRows);
|
|
|
|
const loc = url.replace(/\/AssociatedRoles/g, "/details");
|
|
|
|
history.push(loc);
|
|
|
|
}
|
|
|
|
onRemove(selectedRows);
|
|
|
|
await adminClient.roles.delCompositeRoles({ id }, selectedRows);
|
|
|
|
addAlert(t("associatedRolesRemoved"), AlertVariant.success);
|
2021-02-04 20:50:13 +00:00
|
|
|
} catch (error) {
|
|
|
|
addAlert(`${t("roleDeleteError")} ${error}`, AlertVariant.danger);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
const setRefresher = (refresher: () => void) => {
|
|
|
|
tableRefresher.current = refresher;
|
|
|
|
};
|
|
|
|
|
|
|
|
const goToCreate = () => history.push(`${url}/add-role`);
|
|
|
|
return (
|
|
|
|
<>
|
|
|
|
<PageSection variant="light">
|
|
|
|
<DeleteConfirm />
|
2021-02-17 07:17:04 +00:00
|
|
|
<DeleteAssociatedRolesConfirm />
|
|
|
|
<AssociatedRolesModal
|
|
|
|
onConfirm={addComposites}
|
|
|
|
existingCompositeRoles={additionalRoles}
|
|
|
|
open={open}
|
|
|
|
toggleDialog={() => setOpen(!open)}
|
|
|
|
/>
|
2021-02-04 20:50:13 +00:00
|
|
|
<KeycloakDataTable
|
|
|
|
loader={loader}
|
|
|
|
ariaLabelKey="roles:roleList"
|
|
|
|
searchPlaceholderKey="roles:searchFor"
|
2021-02-17 07:17:04 +00:00
|
|
|
canSelectAll
|
|
|
|
onSelect={(rows) => {
|
|
|
|
setSelectedRows([...rows]);
|
|
|
|
}}
|
2021-02-04 20:50:13 +00:00
|
|
|
isPaginated
|
|
|
|
setRefresher={setRefresher}
|
|
|
|
toolbarItem={
|
|
|
|
<>
|
2021-02-17 07:17:04 +00:00
|
|
|
<Checkbox
|
|
|
|
label="Hide inherited roles"
|
|
|
|
key="associated-roles-check"
|
|
|
|
id="kc-hide-inherited-roles-checkbox"
|
|
|
|
/>
|
|
|
|
<Button
|
|
|
|
className="kc-add-role-button"
|
|
|
|
key="add-role-button"
|
|
|
|
onClick={() => toggleModal()}
|
|
|
|
>
|
|
|
|
{t("addRole")}
|
|
|
|
</Button>
|
|
|
|
<Button
|
|
|
|
variant="link"
|
|
|
|
isDisabled={selectedRows.length == 0}
|
|
|
|
key="remove-role-button"
|
|
|
|
onClick={() => {
|
|
|
|
toggleDeleteAssociatedRolesDialog();
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
{t("removeRoles")}
|
|
|
|
</Button>
|
2021-02-04 20:50:13 +00:00
|
|
|
</>
|
|
|
|
}
|
|
|
|
actions={[
|
|
|
|
{
|
|
|
|
title: t("common:remove"),
|
|
|
|
onRowClick: (role) => {
|
2021-02-17 07:17:04 +00:00
|
|
|
setSelectedRows([role]);
|
2021-02-04 20:50:13 +00:00
|
|
|
toggleDeleteDialog();
|
|
|
|
},
|
|
|
|
},
|
|
|
|
]}
|
|
|
|
columns={[
|
|
|
|
{
|
|
|
|
name: "name",
|
|
|
|
displayKey: "roles:roleName",
|
2021-02-17 07:17:04 +00:00
|
|
|
cellRenderer: RoleName,
|
2021-02-04 20:50:13 +00:00
|
|
|
cellFormatters: [formattedLinkTableCell(), emptyFormatter()],
|
|
|
|
},
|
|
|
|
{
|
2021-02-17 07:17:04 +00:00
|
|
|
name: "inherited from",
|
|
|
|
displayKey: "roles:inheritedFrom",
|
2021-02-04 20:50:13 +00:00
|
|
|
cellFormatters: [boolFormatter(), emptyFormatter()],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "description",
|
|
|
|
displayKey: "common:description",
|
|
|
|
cellFormatters: [emptyFormatter()],
|
|
|
|
},
|
|
|
|
]}
|
|
|
|
emptyState={
|
|
|
|
<ListEmptyState
|
|
|
|
hasIcon={true}
|
|
|
|
message={t("noRolesInThisRealm")}
|
|
|
|
instructions={t("noRolesInThisRealmInstructions")}
|
|
|
|
primaryActionText={t("createRole")}
|
|
|
|
onPrimaryAction={goToCreate}
|
|
|
|
/>
|
|
|
|
}
|
|
|
|
/>
|
|
|
|
</PageSection>
|
|
|
|
</>
|
|
|
|
);
|
|
|
|
};
|