keycloak-scim/src/clients/ClientsSection.tsx
mfrances17 ccb731338e
Merge pull request #301 from srambach/user-fed-mappers-text
Add text for user federation user attribute mapper
2021-01-18 10:19:00 -05:00

135 lines
4.2 KiB
TypeScript

import React from "react";
import { Link, useHistory, useRouteMatch } from "react-router-dom";
import { useTranslation } from "react-i18next";
import {
AlertVariant,
Badge,
Button,
PageSection,
} from "@patternfly/react-core";
import { ViewHeader } from "../components/view-header/ViewHeader";
import { useAdminClient } from "../context/auth/AdminClient";
import { KeycloakDataTable } from "../components/table-toolbar/KeycloakDataTable";
import { emptyFormatter, exportClient, getBaseUrl } from "../util";
import { useAlerts } from "../components/alert/Alerts";
import ClientRepresentation from "keycloak-admin/lib/defs/clientRepresentation";
import { formattedLinkTableCell } from "../components/external-link/FormattedLink";
export const ClientsSection = () => {
const { t } = useTranslation("clients");
const { addAlert } = useAlerts();
const history = useHistory();
const { url } = useRouteMatch();
const adminClient = useAdminClient();
const baseUrl = getBaseUrl(adminClient);
const loader = async (first?: number, max?: number, search?: string) => {
const params: { [name: string]: string | number } = {
first: first!,
max: max!,
};
if (search) {
params.clientId = search;
params.search = "true";
}
return await adminClient.clients.find({ ...params });
};
const ClientDetailLink = (client: ClientRepresentation) => (
<>
<Link key={client.id} to={`${url}/${client.id}`}>
{client.clientId}
{!client.enabled && <Badge isRead>Disabled</Badge>}
</Link>
</>
);
return (
<>
<ViewHeader
titleKey="clients:clientList"
subKey="clients:clientsExplain"
/>
<PageSection variant="light">
<KeycloakDataTable
loader={loader}
isPaginated
ariaLabelKey="clients:clientList"
searchPlaceholderKey="clients:searchForClient"
toolbarItem={
<>
<Button onClick={() => history.push(`${url}/add-client`)}>
{t("createClient")}
</Button>
<Button
onClick={() => history.push(`${url}/import-client`)}
variant="link"
>
{t("importClient")}
</Button>
</>
}
actions={[
{
title: t("common:export"),
onRowClick: (client) => {
exportClient(client);
},
},
{
title: t("common:delete"),
onRowClick: async (client) => {
try {
await adminClient.clients.del({
id: client.id!,
});
addAlert(t("clientDeletedSuccess"), AlertVariant.success);
return true;
} catch (error) {
addAlert(
t("clientDeleteError", { error }),
AlertVariant.danger
);
}
},
},
]}
columns={[
{
name: "clientId",
displayKey: "clients:clientID",
cellRenderer: ClientDetailLink,
},
{ name: "protocol", displayKey: "common:type" },
{
name: "description",
displayKey: "common:description",
cellFormatters: [emptyFormatter()],
},
{
name: "baseUrl",
displayKey: "clients:homeURL",
cellFormatters: [formattedLinkTableCell(), emptyFormatter()],
cellRenderer: (client) => {
if (client.rootUrl) {
if (
!client.rootUrl.startsWith("http") ||
client.rootUrl.indexOf("$") !== -1
) {
client.rootUrl =
client.rootUrl
.replace("${authBaseUrl}", baseUrl)
.replace("${authAdminUrl}", baseUrl) +
(client.baseUrl ? client.baseUrl.substr(1) : "");
}
}
return client.rootUrl;
},
},
]}
/>
</PageSection>
</>
);
};