2020-12-07 19:23:18 +00:00
|
|
|
import React, { useState } from "react";
|
|
|
|
import { Link, useHistory } from "react-router-dom";
|
2020-09-18 08:04:55 +00:00
|
|
|
import { useTranslation } from "react-i18next";
|
2020-12-07 19:23:18 +00:00
|
|
|
import {
|
|
|
|
AlertVariant,
|
|
|
|
Button,
|
|
|
|
ButtonVariant,
|
|
|
|
PageSection,
|
|
|
|
} from "@patternfly/react-core";
|
|
|
|
import { IFormatter, IFormatterValueType } from "@patternfly/react-table";
|
2020-09-18 08:04:55 +00:00
|
|
|
|
2020-11-12 12:55:52 +00:00
|
|
|
import { useAdminClient } from "../context/auth/AdminClient";
|
|
|
|
import { ViewHeader } from "../components/view-header/ViewHeader";
|
|
|
|
import RoleRepresentation from "keycloak-admin/lib/defs/roleRepresentation";
|
2020-10-28 18:33:54 +00:00
|
|
|
import { ListEmptyState } from "../components/list-empty-state/ListEmptyState";
|
2020-12-07 19:23:18 +00:00
|
|
|
import { DataList } from "../components/table-toolbar/DataList";
|
|
|
|
import { ExternalLink } from "../components/external-link/ExternalLink";
|
|
|
|
import { useAlerts } from "../components/alert/Alerts";
|
|
|
|
import { useConfirmDialog } from "../components/confirm-dialog/ConfirmDialog";
|
2020-09-09 09:07:17 +00:00
|
|
|
|
2020-09-10 18:04:03 +00:00
|
|
|
export const RealmRolesSection = () => {
|
2020-09-18 08:04:55 +00:00
|
|
|
const { t } = useTranslation("roles");
|
|
|
|
const history = useHistory();
|
2020-11-12 12:55:52 +00:00
|
|
|
const adminClient = useAdminClient();
|
2020-12-07 19:23:18 +00:00
|
|
|
const { addAlert } = useAlerts();
|
2020-10-14 20:50:10 +00:00
|
|
|
|
2020-12-07 19:23:18 +00:00
|
|
|
const [selectedRole, setSelectedRole] = useState<RoleRepresentation>();
|
2020-09-18 08:04:55 +00:00
|
|
|
|
2020-12-07 19:23:18 +00:00
|
|
|
const loader = async (first?: number, max?: number, search?: string) => {
|
|
|
|
const params: { [name: string]: string | number } = {
|
|
|
|
first: first!,
|
|
|
|
max: max!,
|
|
|
|
search: search!,
|
|
|
|
};
|
|
|
|
return await adminClient.roles.find(params);
|
|
|
|
};
|
|
|
|
|
|
|
|
const RoleDetailLink = (role: RoleRepresentation) => (
|
|
|
|
<>
|
|
|
|
<Link key={role.id} to={`/roles/${role.id}`}>
|
|
|
|
{role.name}
|
|
|
|
</Link>
|
|
|
|
</>
|
|
|
|
);
|
|
|
|
|
|
|
|
const emptyFormatter = (): IFormatter => (data?: IFormatterValueType) => {
|
|
|
|
return data ? data : "—";
|
|
|
|
};
|
|
|
|
|
|
|
|
const externalLink = (): IFormatter => (data?: IFormatterValueType) => {
|
|
|
|
return (data ? (
|
|
|
|
<ExternalLink href={"roles/" + data.toString()} />
|
|
|
|
) : undefined) as object;
|
|
|
|
};
|
|
|
|
|
|
|
|
const boolFormatter = (): IFormatter => (data?: IFormatterValueType) => {
|
|
|
|
const boolVal = data?.toString();
|
|
|
|
|
|
|
|
return (boolVal
|
|
|
|
? boolVal.charAt(0).toUpperCase() + boolVal.slice(1)
|
|
|
|
: undefined) as string;
|
|
|
|
};
|
|
|
|
|
|
|
|
const [toggleDeleteDialog, DeleteConfirm] = useConfirmDialog({
|
|
|
|
titleKey: "roles:roleDeleteConfirm",
|
|
|
|
messageKey: t("roles:roleDeleteConfirmDialog", {
|
|
|
|
selectedRoleName: selectedRole ? selectedRole!.name : "",
|
|
|
|
}),
|
|
|
|
continueButtonLabel: "common:delete",
|
|
|
|
continueButtonVariant: ButtonVariant.danger,
|
|
|
|
onConfirm: async () => {
|
|
|
|
try {
|
|
|
|
await adminClient.roles.delById({
|
|
|
|
id: selectedRole!.id!,
|
|
|
|
});
|
|
|
|
setSelectedRole(undefined);
|
|
|
|
addAlert(t("roleDeletedSuccess"), AlertVariant.success);
|
|
|
|
} catch (error) {
|
|
|
|
addAlert(`${t("roleDeleteError")} ${error}`, AlertVariant.danger);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
});
|
2020-10-14 20:50:10 +00:00
|
|
|
|
2020-12-02 21:04:54 +00:00
|
|
|
const goToCreate = () => history.push("/roles/add-role");
|
2020-09-18 08:04:55 +00:00
|
|
|
return (
|
2020-10-07 15:47:03 +00:00
|
|
|
<>
|
|
|
|
<ViewHeader titleKey="roles:title" subKey="roles:roleExplain" />
|
2020-10-14 20:50:10 +00:00
|
|
|
<PageSection variant="light">
|
2020-12-07 19:23:18 +00:00
|
|
|
<DeleteConfirm />
|
|
|
|
<DataList
|
|
|
|
key={selectedRole ? selectedRole.id : "roleList"}
|
|
|
|
loader={loader}
|
|
|
|
ariaLabelKey="roles:roleList"
|
|
|
|
searchPlaceholderKey="roles:searchFor"
|
|
|
|
isPaginated
|
|
|
|
toolbarItem={
|
|
|
|
<>
|
|
|
|
<Button onClick={goToCreate}>{t("createRole")}</Button>
|
|
|
|
</>
|
|
|
|
}
|
|
|
|
actions={[
|
|
|
|
{
|
|
|
|
title: t("common:Delete"),
|
|
|
|
onRowClick: (role) => {
|
|
|
|
setSelectedRole(role);
|
|
|
|
toggleDeleteDialog();
|
|
|
|
},
|
|
|
|
},
|
|
|
|
]}
|
|
|
|
columns={[
|
|
|
|
{
|
|
|
|
name: "name",
|
|
|
|
displayKey: "roles:roleName",
|
|
|
|
cellRenderer: RoleDetailLink,
|
|
|
|
cellFormatters: [externalLink(), emptyFormatter()],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "composite",
|
|
|
|
displayKey: "roles:composite",
|
|
|
|
cellFormatters: [boolFormatter(), emptyFormatter()],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "description",
|
|
|
|
displayKey: "roles:description",
|
|
|
|
cellFormatters: [emptyFormatter()],
|
|
|
|
},
|
|
|
|
]}
|
|
|
|
emptyState={
|
|
|
|
<ListEmptyState
|
|
|
|
hasIcon={true}
|
|
|
|
message={t("noRolesInThisRealm")}
|
|
|
|
instructions={t("noRolesInThisRealmInstructions")}
|
|
|
|
primaryActionText={t("createRole")}
|
|
|
|
onPrimaryAction={goToCreate}
|
|
|
|
/>
|
|
|
|
}
|
|
|
|
/>
|
2020-10-07 15:47:03 +00:00
|
|
|
</PageSection>
|
|
|
|
</>
|
2020-09-18 08:04:55 +00:00
|
|
|
);
|
2020-09-09 09:07:17 +00:00
|
|
|
};
|