2020-12-07 19:23:18 +00:00
|
|
|
import React from "react";
|
2021-01-05 19:49:33 +00:00
|
|
|
import { Link, useHistory, useRouteMatch } from "react-router-dom";
|
2020-09-03 19:25:05 +00:00
|
|
|
import { useTranslation } from "react-i18next";
|
2020-12-07 19:23:18 +00:00
|
|
|
import {
|
|
|
|
AlertVariant,
|
|
|
|
Badge,
|
|
|
|
Button,
|
|
|
|
PageSection,
|
|
|
|
} from "@patternfly/react-core";
|
2020-09-03 19:25:05 +00:00
|
|
|
|
2020-09-25 17:29:03 +00:00
|
|
|
import { ViewHeader } from "../components/view-header/ViewHeader";
|
2020-11-12 12:55:52 +00:00
|
|
|
import { useAdminClient } from "../context/auth/AdminClient";
|
2020-12-11 10:28:38 +00:00
|
|
|
import { KeycloakDataTable } from "../components/table-toolbar/KeycloakDataTable";
|
2021-01-11 19:29:52 +00:00
|
|
|
import { emptyFormatter, exportClient } from "../util";
|
2020-12-07 19:23:18 +00:00
|
|
|
import { useAlerts } from "../components/alert/Alerts";
|
|
|
|
import ClientRepresentation from "keycloak-admin/lib/defs/clientRepresentation";
|
2021-01-11 19:29:52 +00:00
|
|
|
import { formattedLinkTableCell } from "../components/external-link/FormattedLink";
|
2020-09-03 19:25:05 +00:00
|
|
|
|
2020-09-10 18:04:03 +00:00
|
|
|
export const ClientsSection = () => {
|
|
|
|
const { t } = useTranslation("clients");
|
2020-12-07 19:23:18 +00:00
|
|
|
const { addAlert } = useAlerts();
|
2020-09-03 19:25:05 +00:00
|
|
|
const history = useHistory();
|
2021-01-05 19:49:33 +00:00
|
|
|
const { url } = useRouteMatch();
|
2020-09-17 11:37:30 +00:00
|
|
|
|
2020-11-12 12:55:52 +00:00
|
|
|
const adminClient = useAdminClient();
|
2020-12-07 19:23:18 +00:00
|
|
|
const baseUrl = adminClient.keycloak
|
|
|
|
? adminClient.keycloak.authServerUrl!
|
|
|
|
: adminClient.baseUrl + "/";
|
2020-09-03 19:25:05 +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!,
|
|
|
|
};
|
2020-10-05 18:13:23 +00:00
|
|
|
if (search) {
|
|
|
|
params.clientId = search;
|
|
|
|
params.search = "true";
|
|
|
|
}
|
2020-12-07 19:23:18 +00:00
|
|
|
return await adminClient.clients.find({ ...params });
|
|
|
|
};
|
|
|
|
|
|
|
|
const ClientDetailLink = (client: ClientRepresentation) => (
|
|
|
|
<>
|
2021-01-05 19:49:33 +00:00
|
|
|
<Link key={client.id} to={`${url}/${client.id}`}>
|
2020-12-07 19:23:18 +00:00
|
|
|
{client.clientId}
|
|
|
|
{!client.enabled && <Badge isRead>Disabled</Badge>}
|
|
|
|
</Link>
|
|
|
|
</>
|
|
|
|
);
|
2020-09-03 19:25:05 +00:00
|
|
|
return (
|
2020-09-25 17:29:03 +00:00
|
|
|
<>
|
|
|
|
<ViewHeader
|
|
|
|
titleKey="clients:clientList"
|
|
|
|
subKey="clients:clientsExplain"
|
|
|
|
/>
|
|
|
|
<PageSection variant="light">
|
2020-12-11 10:18:29 +00:00
|
|
|
<KeycloakDataTable
|
2020-12-07 19:23:18 +00:00
|
|
|
loader={loader}
|
|
|
|
isPaginated
|
|
|
|
ariaLabelKey="clients:clientList"
|
|
|
|
searchPlaceholderKey="clients:searchForClient"
|
|
|
|
toolbarItem={
|
|
|
|
<>
|
2021-01-05 19:49:33 +00:00
|
|
|
<Button onClick={() => history.push(`${url}/add-client`)}>
|
2020-12-07 19:23:18 +00:00
|
|
|
{t("createClient")}
|
|
|
|
</Button>
|
|
|
|
<Button
|
2021-01-05 19:49:33 +00:00
|
|
|
onClick={() => history.push(`${url}/import-client`)}
|
2020-12-07 19:23:18 +00:00
|
|
|
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: "clients:type" },
|
|
|
|
{
|
|
|
|
name: "description",
|
|
|
|
displayKey: "clients:description",
|
|
|
|
cellFormatters: [emptyFormatter()],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "baseUrl",
|
|
|
|
displayKey: "clients:homeURL",
|
2021-01-11 19:29:52 +00:00
|
|
|
cellFormatters: [formattedLinkTableCell(), emptyFormatter()],
|
2020-12-07 19:23:18 +00:00
|
|
|
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;
|
|
|
|
},
|
|
|
|
},
|
|
|
|
]}
|
|
|
|
/>
|
2020-09-25 17:29:03 +00:00
|
|
|
</PageSection>
|
|
|
|
</>
|
2020-09-03 19:25:05 +00:00
|
|
|
);
|
|
|
|
};
|