add user to groups modal wip
This commit is contained in:
parent
9e5104b668
commit
d8c491123a
1 changed files with 15 additions and 1 deletions
|
@ -32,7 +32,7 @@ export type UserFormProps = {
|
||||||
max?: number,
|
max?: number,
|
||||||
search?: string
|
search?: string
|
||||||
) => Promise<UserRepresentation[]>;
|
) => Promise<UserRepresentation[]>;
|
||||||
addGroup?: (newGroup: GroupRepresentation) => void;
|
addGroups?: (newReps: GroupRepresentation[]) => void;
|
||||||
};
|
};
|
||||||
|
|
||||||
export const UserGroups = () => {
|
export const UserGroups = () => {
|
||||||
|
@ -48,12 +48,17 @@ export const UserGroups = () => {
|
||||||
|
|
||||||
const [search, setSearch] = useState("");
|
const [search, setSearch] = useState("");
|
||||||
const [username, setUsername] = useState("");
|
const [username, setUsername] = useState("");
|
||||||
|
const [join, setJoin] = useState<GroupTableData>();
|
||||||
|
|
||||||
|
const lastId = getLastId(location.pathname);
|
||||||
|
|
||||||
|
|
||||||
const [isDirectMembership, setDirectMembership] = useState(true);
|
const [isDirectMembership, setDirectMembership] = useState(true);
|
||||||
const [directMembershipList, setDirectMembershipList] = useState<
|
const [directMembershipList, setDirectMembershipList] = useState<
|
||||||
GroupRepresentation[]
|
GroupRepresentation[]
|
||||||
>([]);
|
>([]);
|
||||||
const [open, setOpen] = useState(false);
|
const [open, setOpen] = useState(false);
|
||||||
|
const [move, setMove] = useState<GroupTableData>();
|
||||||
|
|
||||||
const adminClient = useAdminClient();
|
const adminClient = useAdminClient();
|
||||||
const { id } = useParams<{ id: string }>();
|
const { id } = useParams<{ id: string }>();
|
||||||
|
@ -205,6 +210,15 @@ export const UserGroups = () => {
|
||||||
const toggleModal = () => {
|
const toggleModal = () => {
|
||||||
setOpen(!open);
|
setOpen(!open);
|
||||||
};
|
};
|
||||||
|
const JoinGroupButtonRenderer = (group: GroupRepresentation) => {
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<Button onClick={() => joinGroup(group)} variant="link">
|
||||||
|
{t("users:joinGroup")}
|
||||||
|
</Button>
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
const joinGroup = (group: GroupRepresentation) => {
|
const joinGroup = (group: GroupRepresentation) => {
|
||||||
setSelectedGroup(group);
|
setSelectedGroup(group);
|
||||||
|
|
Loading…
Reference in a new issue