2021-04-14 18:39:21 +00:00
|
|
|
import React from "react";
|
|
|
|
import { useParams } from "react-router-dom";
|
|
|
|
import { useTranslation } from "react-i18next";
|
|
|
|
import { PageSection } from "@patternfly/react-core";
|
|
|
|
import { ListEmptyState } from "../components/list-empty-state/ListEmptyState";
|
|
|
|
import { KeycloakDataTable } from "../components/table-toolbar/KeycloakDataTable";
|
|
|
|
import { emptyFormatter } from "../util";
|
|
|
|
import { useAdminClient } from "../context/auth/AdminClient";
|
|
|
|
import { cellWidth } from "@patternfly/react-table";
|
|
|
|
import _ from "lodash";
|
2021-05-04 17:58:18 +00:00
|
|
|
import type UserConsentRepresentation from "keycloak-admin/lib/defs/userConsentRepresentation";
|
2021-04-14 18:39:21 +00:00
|
|
|
import { CubesIcon } from "@patternfly/react-icons";
|
|
|
|
import moment from "moment";
|
|
|
|
|
|
|
|
export const UserConsents = () => {
|
|
|
|
const { t } = useTranslation("roles");
|
|
|
|
|
|
|
|
const adminClient = useAdminClient();
|
|
|
|
const { id } = useParams<{ id: string }>();
|
|
|
|
const alphabetize = (consentsList: UserConsentRepresentation[]) => {
|
|
|
|
return _.sortBy(consentsList, (client) => client.clientId?.toUpperCase());
|
|
|
|
};
|
|
|
|
|
|
|
|
const loader = async () => {
|
|
|
|
const consents = await adminClient.users.listConsents({ id });
|
|
|
|
|
|
|
|
return alphabetize(consents);
|
|
|
|
};
|
|
|
|
|
|
|
|
const clientScopesRenderer = ({
|
|
|
|
grantedClientScopes,
|
|
|
|
}: UserConsentRepresentation) => {
|
|
|
|
return <>{grantedClientScopes!.join(", ")}</>;
|
|
|
|
};
|
|
|
|
|
|
|
|
const createdRenderer = ({ createDate }: UserConsentRepresentation) => {
|
|
|
|
return <>{moment(createDate).format("MM/DD/YY hh:MM A")}</>;
|
|
|
|
};
|
|
|
|
|
|
|
|
const lastUpdatedRenderer = ({
|
|
|
|
lastUpdatedDate,
|
|
|
|
}: UserConsentRepresentation) => {
|
|
|
|
return <>{moment(lastUpdatedDate).format("MM/DD/YY hh:MM A")}</>;
|
|
|
|
};
|
|
|
|
|
|
|
|
return (
|
|
|
|
<>
|
|
|
|
<PageSection variant="light">
|
|
|
|
<KeycloakDataTable
|
|
|
|
loader={loader}
|
|
|
|
ariaLabelKey="roles:roleList"
|
|
|
|
columns={[
|
|
|
|
{
|
|
|
|
name: "clientId",
|
|
|
|
displayKey: "clients:Client",
|
|
|
|
cellFormatters: [emptyFormatter()],
|
|
|
|
transforms: [cellWidth(20)],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "grantedClientScopes",
|
|
|
|
displayKey: "client-scopes:grantedClientScopes",
|
|
|
|
cellFormatters: [emptyFormatter()],
|
|
|
|
cellRenderer: clientScopesRenderer,
|
|
|
|
transforms: [cellWidth(30)],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "createdDate",
|
|
|
|
displayKey: "clients:created",
|
|
|
|
cellFormatters: [emptyFormatter()],
|
|
|
|
cellRenderer: createdRenderer,
|
|
|
|
transforms: [cellWidth(20)],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "lastUpdatedDate",
|
|
|
|
displayKey: "clients:lastUpdated",
|
|
|
|
cellFormatters: [emptyFormatter()],
|
|
|
|
cellRenderer: lastUpdatedRenderer,
|
|
|
|
transforms: [cellWidth(20)],
|
|
|
|
},
|
|
|
|
]}
|
|
|
|
emptyState={
|
|
|
|
<ListEmptyState
|
|
|
|
hasIcon={true}
|
|
|
|
icon={CubesIcon}
|
|
|
|
message={t("users:noConsents")}
|
|
|
|
instructions={t("users:noConsentsText")}
|
|
|
|
onPrimaryAction={() => {}}
|
|
|
|
/>
|
|
|
|
}
|
|
|
|
/>
|
|
|
|
</PageSection>
|
|
|
|
</>
|
|
|
|
);
|
|
|
|
};
|