2021-03-24 14:07:49 +00:00
|
|
|
import React, { useState } from "react";
|
|
|
|
import { useTranslation } from "react-i18next";
|
|
|
|
import { useHistory } from "react-router-dom";
|
|
|
|
import {
|
|
|
|
AlertVariant,
|
|
|
|
Button,
|
|
|
|
Modal,
|
|
|
|
ModalVariant,
|
|
|
|
} from "@patternfly/react-core";
|
|
|
|
|
2021-05-04 17:58:18 +00:00
|
|
|
import type UserRepresentation from "keycloak-admin/lib/defs/userRepresentation";
|
2021-03-24 14:07:49 +00:00
|
|
|
import { useAdminClient } from "../context/auth/AdminClient";
|
|
|
|
import { useRealm } from "../context/realm-context/RealmContext";
|
|
|
|
import { useAlerts } from "../components/alert/Alerts";
|
|
|
|
import { KeycloakDataTable } from "../components/table-toolbar/KeycloakDataTable";
|
|
|
|
import { ListEmptyState } from "../components/list-empty-state/ListEmptyState";
|
|
|
|
import { emptyFormatter } from "../util";
|
|
|
|
import _ from "lodash";
|
|
|
|
|
|
|
|
type MemberModalProps = {
|
|
|
|
groupId: string;
|
|
|
|
onClose: () => void;
|
|
|
|
};
|
|
|
|
|
|
|
|
export const MemberModal = ({ groupId, onClose }: MemberModalProps) => {
|
|
|
|
const { t } = useTranslation("groups");
|
|
|
|
const adminClient = useAdminClient();
|
2021-07-28 12:01:42 +00:00
|
|
|
const { addAlert, addError } = useAlerts();
|
2021-03-24 14:07:49 +00:00
|
|
|
const [selectedRows, setSelectedRows] = useState<UserRepresentation[]>([]);
|
|
|
|
|
|
|
|
const history = useHistory();
|
|
|
|
const { realm } = useRealm();
|
|
|
|
const goToCreate = () => history.push(`/${realm}/users/add-user`);
|
|
|
|
|
|
|
|
const loader = async (first?: number, max?: number, search?: string) => {
|
|
|
|
const members = await adminClient.groups.listMembers({ id: groupId });
|
|
|
|
const params: { [name: string]: string | number } = {
|
|
|
|
first: first!,
|
|
|
|
max: max! + members.length,
|
|
|
|
search: search || "",
|
|
|
|
};
|
|
|
|
|
|
|
|
try {
|
|
|
|
const users = await adminClient.users.find({ ...params });
|
2021-03-31 19:45:20 +00:00
|
|
|
return _.differenceBy(users, members, "id").slice(0, max);
|
2021-03-24 14:07:49 +00:00
|
|
|
} catch (error) {
|
2021-07-28 12:01:42 +00:00
|
|
|
addError("groups:noUsersFoundError", error);
|
2021-03-24 14:07:49 +00:00
|
|
|
return [];
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
return (
|
|
|
|
<Modal
|
|
|
|
variant={ModalVariant.large}
|
|
|
|
title={t("addMember")}
|
|
|
|
isOpen={true}
|
|
|
|
onClose={onClose}
|
|
|
|
actions={[
|
|
|
|
<Button
|
|
|
|
data-testid="add"
|
|
|
|
key="confirm"
|
|
|
|
variant="primary"
|
|
|
|
onClick={async () => {
|
|
|
|
try {
|
|
|
|
await Promise.all(
|
|
|
|
selectedRows.map((user) =>
|
|
|
|
adminClient.users.addToGroup({ id: user.id!, groupId })
|
|
|
|
)
|
|
|
|
);
|
|
|
|
onClose();
|
|
|
|
addAlert(
|
|
|
|
t("usersAdded", { count: selectedRows.length }),
|
|
|
|
AlertVariant.success
|
|
|
|
);
|
|
|
|
} catch (error) {
|
2021-07-28 12:01:42 +00:00
|
|
|
addError("groups:usersAddedError", error);
|
2021-03-24 14:07:49 +00:00
|
|
|
}
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
{t("common:add")}
|
|
|
|
</Button>,
|
|
|
|
<Button
|
|
|
|
data-testid="cancel"
|
|
|
|
key="cancel"
|
2021-04-15 10:52:34 +00:00
|
|
|
variant="link"
|
2021-03-24 14:07:49 +00:00
|
|
|
onClick={onClose}
|
|
|
|
>
|
|
|
|
{t("common:cancel")}
|
|
|
|
</Button>,
|
|
|
|
]}
|
|
|
|
>
|
|
|
|
<KeycloakDataTable
|
|
|
|
loader={loader}
|
|
|
|
isPaginated
|
|
|
|
ariaLabelKey="users:title"
|
|
|
|
searchPlaceholderKey="users:searchForUser"
|
|
|
|
canSelectAll
|
|
|
|
onSelect={(rows) => setSelectedRows([...rows])}
|
|
|
|
emptyState={
|
|
|
|
<ListEmptyState
|
|
|
|
message={t("users:noUsersFound")}
|
|
|
|
instructions={t("users:emptyInstructions")}
|
|
|
|
primaryActionText={t("users:createNewUser")}
|
|
|
|
onPrimaryAction={goToCreate}
|
|
|
|
/>
|
|
|
|
}
|
|
|
|
columns={[
|
|
|
|
{
|
|
|
|
name: "username",
|
|
|
|
displayKey: "users:username",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "email",
|
|
|
|
displayKey: "users:email",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "lastName",
|
|
|
|
displayKey: "users:lastName",
|
|
|
|
cellFormatters: [emptyFormatter()],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "firstName",
|
|
|
|
displayKey: "users:firstName",
|
|
|
|
cellFormatters: [emptyFormatter()],
|
|
|
|
},
|
|
|
|
]}
|
|
|
|
/>
|
|
|
|
</Modal>
|
|
|
|
);
|
|
|
|
};
|