aboutsummaryrefslogtreecommitdiffstats
path: root/apps/web/components/dashboard/lists/LeaveListConfirmationDialog.tsx
blob: 859f4c831ad0df91a70caa50f583e1c9601ef5ba (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
import React from "react";
import { usePathname, useRouter } from "next/navigation";
import { ActionButton } from "@/components/ui/action-button";
import ActionConfirmingDialog from "@/components/ui/action-confirming-dialog";
import { toast } from "@/components/ui/sonner";
import { useTranslation } from "@/lib/i18n/client";
import { useMutation, useQueryClient } from "@tanstack/react-query";

import type { ZBookmarkList } from "@karakeep/shared/types/lists";
import { useTRPC } from "@karakeep/shared-react/trpc";

export default function LeaveListConfirmationDialog({
  list,
  children,
  open,
  setOpen,
}: {
  list: ZBookmarkList;
  children?: React.ReactNode;
  open: boolean;
  setOpen: (v: boolean) => void;
}) {
  const api = useTRPC();
  const { t } = useTranslation();
  const currentPath = usePathname();
  const router = useRouter();
  const queryClient = useQueryClient();

  const { mutate: leaveList, isPending } = useMutation(
    api.lists.leaveList.mutationOptions({
      onSuccess: () => {
        toast({
          description: t("lists.leave_list.success", {
            icon: list.icon,
            name: list.name,
          }),
        });
        setOpen(false);
        // Invalidate the lists cache
        queryClient.invalidateQueries(api.lists.list.pathFilter());
        // If currently viewing this list, redirect to lists page
        if (currentPath.includes(list.id)) {
          router.push("/dashboard/lists");
        }
      },
      onError: (error) => {
        toast({
          variant: "destructive",
          description: error.message || t("common.something_went_wrong"),
        });
      },
    }),
  );

  return (
    <ActionConfirmingDialog
      open={open}
      setOpen={setOpen}
      title={t("lists.leave_list.title")}
      description={
        <div className="space-y-3">
          <p className="text-balance">
            {t("lists.leave_list.confirm_message", {
              icon: list.icon,
              name: list.name,
            })}
          </p>
          <p className="text-balance text-sm text-muted-foreground">
            {t("lists.leave_list.warning")}
          </p>
        </div>
      }
      actionButton={() => (
        <ActionButton
          type="button"
          variant="destructive"
          loading={isPending}
          onClick={() => leaveList({ listId: list.id })}
        >
          {t("lists.leave_list.action")}
        </ActionButton>
      )}
    >
      {children}
    </ActionConfirmingDialog>
  );
}