* fix: [CAL-3374] Says Number is not Verified, but it is Verified * clearing error only when verified * type-checks fixed * chore: improvement --------- Co-authored-by: Udit Takkar <53316345+Udit-takkar@users.noreply.github.com> Co-authored-by: Udit Takkar <udit222001@gmail.com>
127 lines
4.1 KiB
TypeScript
127 lines
4.1 KiB
TypeScript
import type { Table } from "@tanstack/react-table";
|
|
import { useState } from "react";
|
|
|
|
import classNames from "@calcom/lib/classNames";
|
|
import { useLocale } from "@calcom/lib/hooks/useLocale";
|
|
import { trpc } from "@calcom/trpc";
|
|
import {
|
|
Button,
|
|
Command,
|
|
CommandEmpty,
|
|
CommandGroup,
|
|
CommandInput,
|
|
CommandItem,
|
|
CommandList,
|
|
Icon,
|
|
Popover,
|
|
PopoverContent,
|
|
PopoverTrigger,
|
|
showToast,
|
|
} from "@calcom/ui";
|
|
|
|
import type { User } from "../UserListTable";
|
|
|
|
interface Props {
|
|
table: Table<User>;
|
|
}
|
|
|
|
export function TeamListBulkAction({ table }: Props) {
|
|
const { data: teams } = trpc.viewer.organizations.getTeams.useQuery();
|
|
const [selectedValues, setSelectedValues] = useState<Set<number>>(new Set());
|
|
const utils = trpc.useUtils();
|
|
const mutation = trpc.viewer.organizations.bulkAddToTeams.useMutation({
|
|
onError: (error) => {
|
|
showToast(error.message, "error");
|
|
},
|
|
onSuccess: (res) => {
|
|
showToast(
|
|
`${res.invitedTotalUsers} Users invited to ${Array.from(selectedValues).length} teams`,
|
|
"success"
|
|
);
|
|
// Optimistically update the data from query trpc cache listMembers
|
|
// We may need to set this data instread of invalidating. Will see how performance handles it
|
|
utils.viewer.organizations.listMembers.invalidate();
|
|
|
|
// Clear the selected values
|
|
setSelectedValues(new Set());
|
|
table.toggleAllRowsSelected(false);
|
|
},
|
|
});
|
|
|
|
const { t } = useLocale();
|
|
|
|
// Add a value to the set
|
|
const addValue = (value: number) => {
|
|
const updatedSet = new Set(selectedValues);
|
|
updatedSet.add(value);
|
|
setSelectedValues(updatedSet);
|
|
};
|
|
|
|
// Remove a value from the set
|
|
const removeValue = (value: number) => {
|
|
const updatedSet = new Set(selectedValues);
|
|
updatedSet.delete(value);
|
|
setSelectedValues(updatedSet);
|
|
};
|
|
|
|
return (
|
|
<>
|
|
<Popover>
|
|
<PopoverTrigger asChild>
|
|
<Button StartIcon="users">{t("add_to_team")}</Button>
|
|
</PopoverTrigger>
|
|
{/* We dont really use shadows much - but its needed here */}
|
|
<PopoverContent className="w-[200px] p-0 shadow-md" align="start" sideOffset={12}>
|
|
<Command>
|
|
<CommandInput placeholder={t("search")} />
|
|
<CommandList>
|
|
<CommandEmpty>No results found.</CommandEmpty>
|
|
<CommandGroup>
|
|
{teams &&
|
|
teams.map((option) => {
|
|
const isSelected = selectedValues.has(option.id);
|
|
return (
|
|
<CommandItem
|
|
key={option.id}
|
|
onSelect={() => {
|
|
if (!isSelected) {
|
|
addValue(option.id);
|
|
} else {
|
|
removeValue(option.id);
|
|
}
|
|
}}>
|
|
<span>{option.name}</span>
|
|
<div
|
|
className={classNames(
|
|
"border-subtle ml-auto flex h-4 w-4 items-center justify-center rounded-sm border",
|
|
isSelected ? "text-emphasis" : "opacity-50 [&_svg]:invisible"
|
|
)}>
|
|
<Icon name="check" className={classNames("h-4 w-4")} />
|
|
</div>
|
|
</CommandItem>
|
|
);
|
|
})}
|
|
</CommandGroup>
|
|
</CommandList>
|
|
</Command>
|
|
<div className="my-1.5 flex w-full">
|
|
<Button
|
|
loading={mutation.isPending}
|
|
className="ml-auto mr-1.5 rounded-md"
|
|
size="sm"
|
|
onClick={async () => {
|
|
const selectedRows = table.getSelectedRowModel().flatRows.map((row) => row.original);
|
|
mutation.mutateAsync({
|
|
userIds: selectedRows.map((row) => row.id),
|
|
teamIds: Array.from(selectedValues),
|
|
});
|
|
}}>
|
|
{t("apply")}
|
|
</Button>
|
|
</div>
|
|
</PopoverContent>
|
|
</Popover>
|
|
</>
|
|
);
|
|
}
|