60 lines
1.9 KiB
TypeScript
60 lines
1.9 KiB
TypeScript
|
import React, { useState, useContext } from "react";
|
||
|
import { useHistory } from "react-router-dom";
|
||
|
import { useTranslation } from "react-i18next";
|
||
|
import { Button } from "@patternfly/react-core";
|
||
|
|
||
|
import { DataLoader } from "../components/data-loader/DataLoader";
|
||
|
import { TableToolbar } from "../components/table-toolbar/TableToolbar";
|
||
|
import { ClientList } from "../clients/ClientList";
|
||
|
import { HttpClientContext } from "../http-service/HttpClientContext";
|
||
|
import { KeycloakContext } from "../auth/KeycloakContext";
|
||
|
import { ClientRepresentation } from "../model/client-model";
|
||
|
|
||
|
export const ClientsPage = () => {
|
||
|
const { t } = useTranslation();
|
||
|
const history = useHistory();
|
||
|
const [max, setMax] = useState(10);
|
||
|
const [first, setFirst] = useState(0);
|
||
|
const httpClient = useContext(HttpClientContext)!;
|
||
|
const keycloak = useContext(KeycloakContext);
|
||
|
|
||
|
const loader = async () => {
|
||
|
return await httpClient
|
||
|
.doGet("/admin/realms/master/clients", { params: { first, max } })
|
||
|
.then((r) => r.data as ClientRepresentation[]);
|
||
|
};
|
||
|
|
||
|
return (
|
||
|
<DataLoader loader={loader}>
|
||
|
{(clients) => (
|
||
|
<TableToolbar
|
||
|
count={clients!.length}
|
||
|
first={first}
|
||
|
max={max}
|
||
|
onNextClick={setFirst}
|
||
|
onPreviousClick={setFirst}
|
||
|
onPerPageSelect={(f, m) => {
|
||
|
setFirst(f);
|
||
|
setMax(m);
|
||
|
}}
|
||
|
toolbarItem={
|
||
|
<>
|
||
|
<Button onClick={() => history.push("/add-client")}>
|
||
|
{t("Create client")}
|
||
|
</Button>
|
||
|
<Button
|
||
|
onClick={() => history.push("/import-client")}
|
||
|
variant="link"
|
||
|
>
|
||
|
{t("Import client")}
|
||
|
</Button>
|
||
|
</>
|
||
|
}
|
||
|
>
|
||
|
<ClientList clients={clients} baseUrl={keycloak!.authServerUrl()!} />
|
||
|
</TableToolbar>
|
||
|
)}
|
||
|
</DataLoader>
|
||
|
);
|
||
|
};
|