* added layouts for moving teams step * added admin section for org creation step * extended org creation to also move existing teams * wip * wip * wip * further changes * Add checkout for org in onboarding * Fix ts errors * Self review feedback * Self review addressed * Fix unit tests * Fix ts error * Seans feedback addressed * feat: fix correct accounts pending * fix: unit tests for new invite member permissions * tests: org admin onboarding tests for existing user * tests: Inital user self serve flow * chore: update teamAndUserFixture to create X amount of teams * chore: add testId to card actionButton * test: add test-Id to continue or checkout button * tests: add tests for migrating existing teams * feat: match new designs * fix: isAdminCheck * chore: fix pricing copy * fix: flacky tests * Fix tests? * More test fixes * Check all checkboxes * Fix type error * Fix failing test and typescript issues * Fix unpaid org allowing auto-add users * Add self-serve flag * Skip tests * Add adminReview option * Fixes * Add server checks for impersonation * Improved error * feat: extract - and disalow updating from org uset list if not reviewed --------- Co-authored-by: Peer Richelsen <peer@cal.com> Co-authored-by: Alex van Andel <me@alexvanandel.com> Co-authored-by: Peer Richelsen <peeroke@gmail.com> Co-authored-by: sean-brydon <sean@cal.com> Co-authored-by: Joe Au-Yeung <j.auyeung419@gmail.com> Co-authored-by: Joe Au-Yeung <65426560+joeauyeung@users.noreply.github.com>
382 lines
12 KiB
TypeScript
382 lines
12 KiB
TypeScript
import { keepPreviousData } from "@tanstack/react-query";
|
|
import type { ColumnDef } from "@tanstack/react-table";
|
|
import { useSession } from "next-auth/react";
|
|
import { useCallback, useEffect, useMemo, useReducer, useRef, useState } from "react";
|
|
|
|
import { WEBAPP_URL } from "@calcom/lib/constants";
|
|
import { useLocale } from "@calcom/lib/hooks/useLocale";
|
|
import type { MembershipRole } from "@calcom/prisma/enums";
|
|
import { trpc } from "@calcom/trpc";
|
|
import { Avatar, Badge, Button, Checkbox, DataTable } from "@calcom/ui";
|
|
|
|
import { useOrgBranding } from "../../../ee/organizations/context/provider";
|
|
import { DeleteBulkUsers } from "./BulkActions/DeleteBulkUsers";
|
|
import { TeamListBulkAction } from "./BulkActions/TeamList";
|
|
import { ChangeUserRoleModal } from "./ChangeUserRoleModal";
|
|
import { DeleteMemberModal } from "./DeleteMemberModal";
|
|
import { EditUserSheet } from "./EditSheet/EditUserSheet";
|
|
import { ImpersonationMemberModal } from "./ImpersonationMemberModal";
|
|
import { InviteMemberModal } from "./InviteMemberModal";
|
|
import { TableActions } from "./UserTableActions";
|
|
|
|
export interface User {
|
|
id: number;
|
|
username: string | null;
|
|
email: string;
|
|
timeZone: string;
|
|
role: MembershipRole;
|
|
accepted: boolean;
|
|
disableImpersonation: boolean;
|
|
completedOnboarding: boolean;
|
|
teams: {
|
|
id: number;
|
|
name: string;
|
|
slug: string | null;
|
|
}[];
|
|
}
|
|
|
|
type Payload = {
|
|
showModal: boolean;
|
|
user?: User;
|
|
};
|
|
|
|
export type State = {
|
|
changeMemberRole: Payload;
|
|
deleteMember: Payload;
|
|
impersonateMember: Payload;
|
|
inviteMember: Payload;
|
|
editSheet: Payload;
|
|
};
|
|
|
|
export type Action =
|
|
| {
|
|
type:
|
|
| "SET_CHANGE_MEMBER_ROLE_ID"
|
|
| "SET_DELETE_ID"
|
|
| "SET_IMPERSONATE_ID"
|
|
| "INVITE_MEMBER"
|
|
| "EDIT_USER_SHEET";
|
|
payload: Payload;
|
|
}
|
|
| {
|
|
type: "CLOSE_MODAL";
|
|
};
|
|
|
|
const initialState: State = {
|
|
changeMemberRole: {
|
|
showModal: false,
|
|
},
|
|
deleteMember: {
|
|
showModal: false,
|
|
},
|
|
impersonateMember: {
|
|
showModal: false,
|
|
},
|
|
inviteMember: {
|
|
showModal: false,
|
|
},
|
|
editSheet: {
|
|
showModal: false,
|
|
},
|
|
};
|
|
|
|
function reducer(state: State, action: Action): State {
|
|
switch (action.type) {
|
|
case "SET_CHANGE_MEMBER_ROLE_ID":
|
|
return { ...state, changeMemberRole: action.payload };
|
|
case "SET_DELETE_ID":
|
|
return { ...state, deleteMember: action.payload };
|
|
case "SET_IMPERSONATE_ID":
|
|
return { ...state, impersonateMember: action.payload };
|
|
case "INVITE_MEMBER":
|
|
return { ...state, inviteMember: action.payload };
|
|
case "EDIT_USER_SHEET":
|
|
return { ...state, editSheet: action.payload };
|
|
case "CLOSE_MODAL":
|
|
return {
|
|
...state,
|
|
changeMemberRole: { showModal: false },
|
|
deleteMember: { showModal: false },
|
|
impersonateMember: { showModal: false },
|
|
inviteMember: { showModal: false },
|
|
editSheet: { showModal: false },
|
|
};
|
|
default:
|
|
return state;
|
|
}
|
|
}
|
|
|
|
export function UserListTable() {
|
|
const { data: session } = useSession();
|
|
const { data: org } = trpc.viewer.organizations.listCurrent.useQuery();
|
|
const { data: teams } = trpc.viewer.organizations.getTeams.useQuery();
|
|
const tableContainerRef = useRef<HTMLDivElement>(null);
|
|
const [state, dispatch] = useReducer(reducer, initialState);
|
|
const { t } = useLocale();
|
|
const orgBranding = useOrgBranding();
|
|
const [debouncedSearchTerm, setDebouncedSearchTerm] = useState("");
|
|
const { data, isPending, fetchNextPage, isFetching } =
|
|
trpc.viewer.organizations.listMembers.useInfiniteQuery(
|
|
{
|
|
limit: 10,
|
|
searchTerm: debouncedSearchTerm,
|
|
},
|
|
{
|
|
getNextPageParam: (lastPage) => lastPage.nextCursor,
|
|
placeholderData: keepPreviousData,
|
|
}
|
|
);
|
|
const totalDBRowCount = data?.pages?.[0]?.meta?.totalRowCount ?? 0;
|
|
const adminOrOwner = org?.user.role === "ADMIN" || org?.user.role === "OWNER";
|
|
const domain = orgBranding?.fullDomain ?? WEBAPP_URL;
|
|
|
|
const memorisedColumns = useMemo(() => {
|
|
const permissions = {
|
|
canEdit: adminOrOwner,
|
|
canRemove: adminOrOwner,
|
|
canResendInvitation: adminOrOwner,
|
|
canImpersonate: false,
|
|
};
|
|
const cols: ColumnDef<User>[] = [
|
|
// Disabling select for this PR: Will work on actions etc in a follow up
|
|
{
|
|
id: "select",
|
|
header: ({ table }) => (
|
|
<Checkbox
|
|
checked={table.getIsAllPageRowsSelected()}
|
|
onCheckedChange={(value) => table.toggleAllPageRowsSelected(!!value)}
|
|
aria-label="Select all"
|
|
className="translate-y-[2px]"
|
|
/>
|
|
),
|
|
cell: ({ row }) => (
|
|
<Checkbox
|
|
checked={row.getIsSelected()}
|
|
onCheckedChange={(value) => row.toggleSelected(!!value)}
|
|
aria-label="Select row"
|
|
className="translate-y-[2px]"
|
|
/>
|
|
),
|
|
},
|
|
{
|
|
id: "member",
|
|
accessorFn: (data) => data.email,
|
|
header: `Member (${totalDBRowCount})`,
|
|
cell: ({ row }) => {
|
|
const { username, email } = row.original;
|
|
return (
|
|
<div className="flex items-center gap-2">
|
|
<Avatar size="sm" alt={username || email} imageSrc={`${domain}/${username}/avatar.png`} />
|
|
<div className="">
|
|
<div
|
|
data-testid={`member-${username}-username`}
|
|
className="text-emphasis text-sm font-medium leading-none">
|
|
{username || "No username"}
|
|
</div>
|
|
<div
|
|
data-testid={`member-${username}-email`}
|
|
className="text-subtle mt-1 text-sm leading-none">
|
|
{email}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
},
|
|
filterFn: (rows, id, filterValue) => {
|
|
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
|
// @ts-ignore Weird typing issue
|
|
return rows.getValue(id).includes(filterValue);
|
|
},
|
|
},
|
|
{
|
|
id: "role",
|
|
accessorFn: (data) => data.role,
|
|
header: "Role",
|
|
cell: ({ row, table }) => {
|
|
const { role, username } = row.original;
|
|
return (
|
|
<Badge
|
|
data-testid={`member-${username}-role`}
|
|
variant={role === "MEMBER" ? "gray" : "blue"}
|
|
onClick={() => {
|
|
table.getColumn("role")?.setFilterValue([role]);
|
|
}}>
|
|
{role}
|
|
</Badge>
|
|
);
|
|
},
|
|
filterFn: (rows, id, filterValue) => {
|
|
if (filterValue.includes("PENDING")) {
|
|
if (filterValue.length === 1) return !rows.original.accepted;
|
|
else return !rows.original.accepted || filterValue.includes(rows.getValue(id));
|
|
}
|
|
|
|
// Show only the selected roles
|
|
return filterValue.includes(rows.getValue(id));
|
|
},
|
|
},
|
|
{
|
|
id: "teams",
|
|
accessorFn: (data) => data.teams.map((team) => team.name),
|
|
header: "Teams",
|
|
cell: ({ row, table }) => {
|
|
const { teams, accepted, email, username } = row.original;
|
|
// TODO: Implement click to filter
|
|
return (
|
|
<div className="flex h-full flex-wrap items-center gap-2">
|
|
{accepted ? null : (
|
|
<Badge
|
|
data-testid2={`member-${username}-pending`}
|
|
variant="red"
|
|
className="text-xs"
|
|
data-testid={`email-${email.replace("@", "")}-pending`}
|
|
onClick={() => {
|
|
table.getColumn("role")?.setFilterValue(["PENDING"]);
|
|
}}>
|
|
Pending
|
|
</Badge>
|
|
)}
|
|
{teams.map((team) => (
|
|
<Badge
|
|
key={team.id}
|
|
variant="gray"
|
|
onClick={() => {
|
|
table.getColumn("teams")?.setFilterValue([team.name]);
|
|
}}>
|
|
{team.name}
|
|
</Badge>
|
|
))}
|
|
</div>
|
|
);
|
|
},
|
|
filterFn: (rows, _, filterValue: string[]) => {
|
|
const teamNames = rows.original.teams.map((team) => team.name);
|
|
return filterValue.some((value: string) => teamNames.includes(value));
|
|
},
|
|
},
|
|
{
|
|
id: "actions",
|
|
cell: ({ row }) => {
|
|
const user = row.original;
|
|
const permissionsRaw = permissions;
|
|
const isSelf = user.id === session?.user.id;
|
|
|
|
const permissionsForUser = {
|
|
canEdit: permissionsRaw.canEdit && user.accepted && !isSelf,
|
|
canRemove: permissionsRaw.canRemove && !isSelf,
|
|
canImpersonate:
|
|
user.accepted && !user.disableImpersonation && !isSelf && !!org?.canAdminImpersonate,
|
|
canLeave: user.accepted && isSelf,
|
|
canResendInvitation: permissionsRaw.canResendInvitation && !user.accepted,
|
|
};
|
|
|
|
return (
|
|
<TableActions
|
|
user={user}
|
|
permissionsForUser={permissionsForUser}
|
|
dispatch={dispatch}
|
|
domain={domain}
|
|
/>
|
|
);
|
|
},
|
|
},
|
|
];
|
|
|
|
return cols;
|
|
}, [session?.user.id, adminOrOwner, dispatch, domain, totalDBRowCount]);
|
|
|
|
//we must flatten the array of arrays from the useInfiniteQuery hook
|
|
const flatData = useMemo(() => data?.pages?.flatMap((page) => page.rows) ?? [], [data]) as User[];
|
|
const totalFetched = flatData.length;
|
|
|
|
//called on scroll and possibly on mount to fetch more data as the user scrolls and reaches bottom of table
|
|
const fetchMoreOnBottomReached = useCallback(
|
|
(containerRefElement?: HTMLDivElement | null) => {
|
|
if (containerRefElement) {
|
|
const { scrollHeight, scrollTop, clientHeight } = containerRefElement;
|
|
//once the user has scrolled within 300px of the bottom of the table, fetch more data if there is any
|
|
if (scrollHeight - scrollTop - clientHeight < 300 && !isFetching && totalFetched < totalDBRowCount) {
|
|
fetchNextPage();
|
|
}
|
|
}
|
|
},
|
|
[fetchNextPage, isFetching, totalFetched, totalDBRowCount]
|
|
);
|
|
|
|
useEffect(() => {
|
|
fetchMoreOnBottomReached(tableContainerRef.current);
|
|
}, [fetchMoreOnBottomReached]);
|
|
|
|
return (
|
|
<>
|
|
<DataTable
|
|
onSearch={(value) => setDebouncedSearchTerm(value)}
|
|
selectionOptions={[
|
|
{
|
|
type: "render",
|
|
render: (table) => <TeamListBulkAction table={table} />,
|
|
},
|
|
{
|
|
type: "render",
|
|
render: (table) => (
|
|
<DeleteBulkUsers
|
|
users={table.getSelectedRowModel().flatRows.map((row) => row.original)}
|
|
onRemove={() => table.toggleAllPageRowsSelected(false)}
|
|
/>
|
|
),
|
|
},
|
|
]}
|
|
tableContainerRef={tableContainerRef}
|
|
tableCTA={
|
|
adminOrOwner && (
|
|
<Button
|
|
type="button"
|
|
color="primary"
|
|
StartIcon="plus"
|
|
size="sm"
|
|
className="rounded-md"
|
|
onClick={() =>
|
|
dispatch({
|
|
type: "INVITE_MEMBER",
|
|
payload: {
|
|
showModal: true,
|
|
},
|
|
})
|
|
}
|
|
data-testid="new-organization-member-button">
|
|
{t("add")}
|
|
</Button>
|
|
)
|
|
}
|
|
columns={memorisedColumns}
|
|
data={flatData}
|
|
isPending={isPending}
|
|
onScroll={(e) => fetchMoreOnBottomReached(e.target as HTMLDivElement)}
|
|
filterableItems={[
|
|
{
|
|
tableAccessor: "role",
|
|
title: "Role",
|
|
options: [
|
|
{ label: "Owner", value: "OWNER" },
|
|
{ label: "Admin", value: "ADMIN" },
|
|
{ label: "Member", value: "MEMBER" },
|
|
{ label: "Pending", value: "PENDING" },
|
|
],
|
|
},
|
|
{
|
|
tableAccessor: "teams",
|
|
title: "Teams",
|
|
options: teams ? teams.map((team) => ({ label: team.name, value: team.name })) : [],
|
|
},
|
|
]}
|
|
/>
|
|
|
|
{state.deleteMember.showModal && <DeleteMemberModal state={state} dispatch={dispatch} />}
|
|
{state.inviteMember.showModal && <InviteMemberModal dispatch={dispatch} />}
|
|
{state.impersonateMember.showModal && <ImpersonationMemberModal dispatch={dispatch} state={state} />}
|
|
{state.changeMemberRole.showModal && <ChangeUserRoleModal dispatch={dispatch} state={state} />}
|
|
{state.editSheet.showModal && <EditUserSheet dispatch={dispatch} state={state} />}
|
|
</>
|
|
);
|
|
}
|