-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patharc-hide-button-with-dialog.tsx
More file actions
147 lines (141 loc) · 4.41 KB
/
Copy patharc-hide-button-with-dialog.tsx
File metadata and controls
147 lines (141 loc) · 4.41 KB
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
"use client";
import { useQueryClient } from "@tanstack/react-query";
import type { VariantProps } from "class-variance-authority";
import { Eye, EyeOff } from "lucide-react";
import { useState } from "react";
import { toast } from "sonner";
import {
AlertDialog,
AlertDialogAction,
AlertDialogCancel,
AlertDialogContent,
AlertDialogDescription,
AlertDialogFooter,
AlertDialogHeader,
AlertDialogTitle,
AlertDialogTrigger,
} from "@/components/ui/alert-dialog";
import { Button } from "@/components/ui/button";
import type { buttonVariants } from "@/components/ui/button/variants";
import { fetchMutation, getKey, useMutationWrapper } from "@/features/backend";
import type { MessageResponse } from "@/features/backend/types";
import { GrammaticalCase, declineNoun } from "@/features/polish";
import type { Resource } from "@/features/resources";
import { useRouter } from "@/hooks/use-router";
import { getToastMessages } from "@/lib/get-toast-messages";
import type { OptionalPromise } from "@/types/helpers";
import { quoteText } from "@/utils";
export function ArcHideButtonWithDialog({
resource,
googleCalId,
hidden,
itemName,
showLabel = false,
onHideSuccess,
...props
}: {
resource: Resource;
googleCalId: string;
hidden: boolean;
itemName?: string;
showLabel?: boolean;
onHideSuccess?: () => OptionalPromise<boolean>;
} & VariantProps<typeof buttonVariants>) {
const [isAlertDialogOpen, setIsAlertDialogOpen] = useState(false);
const router = useRouter();
const queryClient = useQueryClient();
const { mutateAsync, isPending } = useMutationWrapper<
MessageResponse,
string
>(getKey.mutation.hideResource(resource, googleCalId), async (calId) => {
const response = await fetchMutation<MessageResponse>(`hidden`, {
resource,
method: "POST",
body: { googleCalId: calId, hide: !hidden },
});
setIsAlertDialogOpen(false);
await queryClient.invalidateQueries({
queryKey: [getKey.query.resourceList(resource)],
exact: false,
});
if ((await onHideSuccess?.()) !== false) {
router.refresh();
}
return response;
});
function handleHide() {
toast.promise(
mutateAsync(googleCalId),
getToastMessages.resource(resource).modify,
);
}
const declensions = declineNoun(resource);
const label = hidden
? `Pokaż ${declensions.accusative}`
: `Ukryj ${declensions.accusative}`;
return (
<AlertDialog open={isAlertDialogOpen} onOpenChange={setIsAlertDialogOpen}>
<AlertDialogTrigger asChild>
<Button
variant="icon"
size={showLabel ? "sm" : "icon"}
aria-label={label}
tooltip={showLabel ? undefined : label}
{...props}
>
{showLabel ? label : null}
{hidden ? <Eye /> : <EyeOff />}
</Button>
</AlertDialogTrigger>
<AlertDialogContent
onCloseAutoFocus={(event) => {
event.preventDefault();
}}
>
<AlertDialogHeader>
<AlertDialogTitle className="text-balance">
{hidden
? "Czy na pewno chcesz pokazać"
: "Czy na pewno chcesz ukryć"}{" "}
{
itemName == null
? declineNoun(resource, {
case: GrammaticalCase.Accusative,
prependDeterminer: "this",
}) // e.g. tę organizację studencką
: `${declensions.accusative} ${quoteText(itemName)}` // e.g. organizację studencką „KN Solvro”
}
?
</AlertDialogTitle>
<AlertDialogDescription>
{hidden
? "Wydarzenie zostanie ponownie wyświetlone w kalendarzu."
: "Wydarzenie zostanie ukryte w kalendarzu."}
</AlertDialogDescription>
</AlertDialogHeader>
<AlertDialogFooter>
<AlertDialogCancel>Anuluj</AlertDialogCancel>
<AlertDialogAction asChild>
<Button
variant="destructive"
onClick={handleHide}
loading={isPending}
>
{hidden ? (
<>
<Eye />
Pokaż
</>
) : (
<>
<EyeOff />
Ukryj
</>
)}
</Button>
</AlertDialogAction>
</AlertDialogFooter>
</AlertDialogContent>
</AlertDialog>
);
}