import { useState } from 'react'; import { Trans, msg } from '@lingui/macro'; import { useLingui } from '@lingui/react'; import { match } from 'ts-pattern'; import { NEXT_PUBLIC_WEBAPP_URL } from '@documenso/lib/constants/app'; import { AppError, AppErrorCode } from '@documenso/lib/errors/app-error'; import { trpc } from '@documenso/trpc/react'; import { Avatar, AvatarFallback, AvatarImage } from '@documenso/ui/primitives/avatar'; import { Button } from '@documenso/ui/primitives/button'; import { Dialog, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, } from '@documenso/ui/primitives/dialog'; import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue, } from '@documenso/ui/primitives/select'; import { useToast } from '@documenso/ui/primitives/use-toast'; type TemplateMoveDialogProps = { templateId: number; open: boolean; onOpenChange: (_open: boolean) => void; }; export const TemplateMoveDialog = ({ templateId, open, onOpenChange }: TemplateMoveDialogProps) => { const { toast } = useToast(); const { _ } = useLingui(); const [selectedTeamId, setSelectedTeamId] = useState(null); const { data: teams, isLoading: isLoadingTeams } = trpc.team.getTeams.useQuery(); const { mutateAsync: moveTemplate, isPending } = trpc.template.moveTemplateToTeam.useMutation({ onSuccess: () => { // router.refresh(); // Todo toast({ title: _(msg`Template moved`), description: _(msg`The template has been successfully moved to the selected team.`), duration: 5000, }); onOpenChange(false); }, onError: (err) => { const error = AppError.parseError(err); const errorMessage = match(error.code) .with( AppErrorCode.NOT_FOUND, () => msg`Template not found or already associated with a team.`, ) .with(AppErrorCode.UNAUTHORIZED, () => msg`You are not a member of this team.`) .otherwise(() => msg`An error occurred while moving the template.`); toast({ title: _(msg`Error`), description: _(errorMessage), variant: 'destructive', duration: 7500, }); }, }); const onMove = async () => { if (!selectedTeamId) { return; } await moveTemplate({ templateId, teamId: selectedTeamId }); }; return ( Move Template to Team Select a team to move this template to. This action cannot be undone. ); };