2020-09-15 19:54:52 +00:00
|
|
|
import React, { useContext, useState } from "react";
|
|
|
|
import { useTranslation } from "react-i18next";
|
|
|
|
import { useHistory } from "react-router-dom";
|
|
|
|
import { Button } from "@patternfly/react-core";
|
|
|
|
|
|
|
|
import { HttpClientContext } from "../http-service/HttpClientContext";
|
|
|
|
import { GroupsList } from "./GroupsList";
|
|
|
|
import { DataLoader } from "../components/data-loader/DataLoader";
|
|
|
|
import { GroupRepresentation } from "./models/groups";
|
|
|
|
import { TableToolbar } from "../components/table-toolbar/TableToolbar";
|
2020-09-09 09:07:17 +00:00
|
|
|
|
2020-09-10 18:04:03 +00:00
|
|
|
export const GroupsSection = () => {
|
2020-09-15 19:54:52 +00:00
|
|
|
const { t } = useTranslation("groups");
|
|
|
|
const history = useHistory();
|
|
|
|
const httpClient = useContext(HttpClientContext)!;
|
|
|
|
const [max, setMax] = useState(10);
|
|
|
|
const [first, setFirst] = useState(0);
|
|
|
|
|
|
|
|
const loader = async () => {
|
|
|
|
return await httpClient
|
|
|
|
.doGet("/admin/realms/master/groups", { params: { first, max } })
|
|
|
|
.then((r) => r.data as GroupRepresentation[]);
|
|
|
|
};
|
|
|
|
|
|
|
|
return (
|
|
|
|
<>
|
|
|
|
<DataLoader loader={loader}>
|
|
|
|
{(groups) => (
|
|
|
|
<TableToolbar
|
|
|
|
count={groups!.length}
|
|
|
|
first={first}
|
|
|
|
max={max}
|
|
|
|
onNextClick={setFirst}
|
|
|
|
onPreviousClick={setFirst}
|
|
|
|
onPerPageSelect={(f, m) => {
|
|
|
|
setFirst(f);
|
|
|
|
setMax(m);
|
|
|
|
}}
|
|
|
|
toolbarItem={
|
|
|
|
<>
|
|
|
|
<Button onClick={() => history.push("/add-group")}>
|
|
|
|
{t("Create group")}
|
|
|
|
</Button>
|
|
|
|
</>
|
|
|
|
}
|
|
|
|
>
|
|
|
|
<GroupsList list={groups} />
|
|
|
|
</TableToolbar>
|
|
|
|
)}
|
|
|
|
</DataLoader>
|
|
|
|
</>
|
|
|
|
);
|
2020-09-09 09:07:17 +00:00
|
|
|
};
|