keycloak-scim/src/client-scopes/ClientScopesSection.tsx

85 lines
2.6 KiB
TypeScript
Raw Normal View History

import React from "react";
import { useTranslation } from "react-i18next";
import { Link, useHistory, useRouteMatch } from "react-router-dom";
import { AlertVariant, Button, PageSection } from "@patternfly/react-core";
import ClientScopeRepresentation from "keycloak-admin/lib/defs/clientScopeRepresentation";
import { useAdminClient } from "../context/auth/AdminClient";
import { ViewHeader } from "../components/view-header/ViewHeader";
import { useAlerts } from "../components/alert/Alerts";
2020-12-11 10:28:38 +00:00
import { KeycloakDataTable } from "../components/table-toolbar/KeycloakDataTable";
export const ClientScopesSection = () => {
const { t } = useTranslation("client-scopes");
const history = useHistory();
const { url } = useRouteMatch();
const adminClient = useAdminClient();
const { addAlert } = useAlerts();
const loader = async () => await adminClient.clientScopes.find();
const ClientScopeDetailLink = (clientScope: ClientScopeRepresentation) => (
<>
<Link key={clientScope.id} to={`${url}/${clientScope.id}`}>
{clientScope.name}
</Link>
</>
);
return (
<>
<ViewHeader
titleKey="clientScopes"
subKey="client-scopes:clientScopeExplain"
/>
<PageSection variant="light">
2020-12-11 10:18:29 +00:00
<KeycloakDataTable
loader={loader}
ariaLabelKey="client-scopes:clientScopeList"
searchPlaceholderKey="client-scopes:searchFor"
toolbarItem={
<Button onClick={() => history.push(`${url}/new`)}>
{t("createClientScope")}
</Button>
}
actions={[
{
title: t("common:export"),
onRowClick: () => {},
},
{
title: t("common:delete"),
onRowClick: async (clientScope) => {
try {
await adminClient.clientScopes.del({ id: clientScope.id! });
addAlert(t("deletedSuccess"), AlertVariant.success);
return true;
} catch (error) {
addAlert(
t("deleteError", {
error: error.response.data?.errorMessage || error,
}),
AlertVariant.danger
);
return false;
}
},
},
]}
columns={[
{
name: "name",
cellRenderer: ClientScopeDetailLink,
},
{ name: "description" },
{
name: "protocol",
displayKey: "client-scopes:protocol",
},
]}
/>
</PageSection>
</>
);
};