import { useState } from 'react'; import { msg } from '@lingui/core/macro'; import { useLingui } from '@lingui/react'; import { Trans } from '@lingui/react/macro'; import { match } from 'ts-pattern'; import { AppError, AppErrorCode } from '@documenso/lib/errors/app-error'; import { formatAvatarUrl } from '@documenso/lib/utils/avatars'; 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; onMove?: ({ templateId, teamUrl, }: { templateId: number; teamUrl: string; }) => Promise | void; }; export const TemplateMoveDialog = ({ templateId, open, onOpenChange, onMove, }: 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: async () => { const team = teams?.find((team) => team.id === selectedTeamId); if (team) { await onMove?.({ templateId, teamUrl: team.url }); } 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 handleOnMove = 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. ); };