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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
|
"use client"
import * as React from "react"
import { userRoles, users, UserView, type User } from "@/db/schema/users"
import { SelectTrigger } from "@radix-ui/react-select"
import { type Table } from "@tanstack/react-table"
import {
ArrowUp,
CheckCircle2,
Download,
Loader,
Trash2,
X, Check
} from "lucide-react"
import { toast } from "sonner"
import { exportTableToExcel } from "@/lib/export"
import { Button } from "@/components/ui/button"
import { Portal } from "@/components/ui/portal"
import {
Select,
SelectContent,
SelectGroup,
SelectItem,
} from "@/components/ui/select"
import { Separator } from "@/components/ui/separator"
import {
Tooltip,
TooltipContent,
TooltipTrigger,
} from "@/components/ui/tooltip"
import { Kbd } from "@/components/kbd"
import {
Popover,
PopoverTrigger,
PopoverContent,
} from "@/components/ui/popover"
import {
Command,
CommandInput,
CommandList,
CommandGroup,
CommandItem,
CommandEmpty,
} from "@/components/ui/command"
import { cn } from "@/lib/utils"
import { MultiSelect } from "@/components/ui/multi-select"
import { ActionConfirmDialog } from "@/components/ui/action-dialog"
import { modifiVendorUsers, removeVendorUsers } from "../service"
interface AusersTableFloatingBarProps {
table: Table<UserView>
}
export function AusersTableFloatingBar({ table }: AusersTableFloatingBarProps) {
const rows = table.getFilteredSelectedRowModel().rows
const [isPending, startTransition] = React.useTransition()
const [action, setAction] = React.useState<
"update-roles" | "export" | "delete"
>()
// Clear selection on Escape key press
React.useEffect(() => {
function handleKeyDown(event: KeyboardEvent) {
if (event.key === "Escape") {
table.toggleAllRowsSelected(false)
}
}
window.addEventListener("keydown", handleKeyDown)
return () => window.removeEventListener("keydown", handleKeyDown)
}, [table])
const [popoverOpen, setPopoverOpen] = React.useState(false)
const [rolesPopoverOpen, setRolesPopoverOpen] = React.useState(false)
// 공용 confirm dialog state
const [confirmDialogOpen, setConfirmDialogOpen] = React.useState(false)
const [confirmProps, setConfirmProps] = React.useState<{
title: string
description?: string
onConfirm: () => Promise<void> | void
}>({
title: "",
description: "",
onConfirm: () => { },
})
// 1) "삭제" Confirm 열기
function handleDeleteConfirm() {
setAction("delete")
setConfirmProps({
title: `Delete ${rows.length} user${rows.length > 1 ? "s" : ""}?`,
description: "This action cannot be undone.",
onConfirm: async () => {
startTransition(async () => {
const { error } = await removeVendorUsers({
ids: rows.map((row) => row.original.user_id),
})
if (error) {
toast.error(error)
return
}
toast.success("Users deleted")
table.toggleAllRowsSelected(false)
setConfirmDialogOpen(false)
})
},
})
setConfirmDialogOpen(true)
}
// 3) "역할 업데이트" MultiSelect 후 → Confirm Dialog
function handleSelectRoles(newRoles: string[]) {
setAction("update-roles")
setRolesPopoverOpen(false)
setConfirmProps({
title: `Update ${rows.length} user${rows.length > 1 ? "s" : ""} with roles: ${newRoles.join(", ")}?`,
description: "This action will override their current roles.",
onConfirm: async () => {
startTransition(async () => {
const { error } = await modifiVendorUsers({
ids: rows.map((row) => row.original.user_id),
roles: newRoles as ("admin" | "normal")[],
})
if (error) {
toast.error(error)
return
}
toast.success("Users updated")
setConfirmDialogOpen(false)
})
},
})
setConfirmDialogOpen(true)
}
return (
<Portal >
<div className="fixed inset-x-0 bottom-10 z-50 mx-auto w-fit px-2.5" style={{ bottom: '1.5rem' }}>
<div className="w-full overflow-x-auto">
<div className="mx-auto flex w-fit items-center gap-2 rounded-md border bg-background p-2 text-foreground shadow">
<div className="flex h-7 items-center rounded-md border border-dashed pl-2.5 pr-1">
<span className="whitespace-nowrap text-xs">
{rows.length} selected
</span>
<Separator orientation="vertical" className="ml-2 mr-1" />
<Tooltip>
<TooltipTrigger asChild>
<Button
variant="ghost"
size="icon"
className="size-5 hover:border"
onClick={() => table.toggleAllRowsSelected(false)}
>
<X className="size-3.5 shrink-0" aria-hidden="true" />
</Button>
</TooltipTrigger>
<TooltipContent className="flex items-center border bg-accent px-2 py-1 font-semibold text-foreground dark:bg-zinc-900">
<p className="mr-2">Clear selection</p>
<Kbd abbrTitle="Escape" variant="outline">
Esc
</Kbd>
</TooltipContent>
</Tooltip>
</div>
<Separator orientation="vertical" className="hidden h-5 sm:block" />
<div className="flex items-center gap-1.5">
<Popover open={rolesPopoverOpen} onOpenChange={setRolesPopoverOpen}>
<Tooltip>
<PopoverTrigger asChild>
<TooltipTrigger asChild>
<Button
variant="secondary"
size="icon"
className="size-7 border data-[state=open]:bg-accent data-[state=open]:text-accent-foreground"
disabled={isPending}
>
{isPending && action === "update-roles" ? (
<Loader
className="size-3.5 animate-spin"
aria-hidden="true"
/>
) : (
<ArrowUp className="size-3.5" aria-hidden="true" />
)}
</Button>
</TooltipTrigger>
</PopoverTrigger>
<TooltipContent className="border bg-accent font-semibold text-foreground dark:bg-zinc-900">
<p>Update roles</p>
</TooltipContent>
</Tooltip>
<PopoverContent>
<MultiSelect
defaultValue={["999999999"]}
options={[
/* ... */
{ value: "999999999", label: "admin" }
]}
onValueChange={(newRoles) => {
handleSelectRoles(newRoles)
}}
/>
</PopoverContent>
</Popover>
<Tooltip>
<TooltipTrigger asChild>
<Button
variant="secondary"
size="icon"
className="size-7 border"
onClick={() => {
setAction("export")
startTransition(() => {
exportTableToExcel(table, {
excludeColumns: ["select", "actions"],
onlySelected: true,
})
})
}}
disabled={isPending}
>
{isPending && action === "export" ? (
<Loader
className="size-3.5 animate-spin"
aria-hidden="true"
/>
) : (
<Download className="size-3.5" aria-hidden="true" />
)}
</Button>
</TooltipTrigger>
<TooltipContent className="border bg-accent font-semibold text-foreground dark:bg-zinc-900">
<p>Export users</p>
</TooltipContent>
</Tooltip>
<Tooltip>
<TooltipTrigger asChild>
<Button
variant="secondary"
size="icon"
className="size-7 border"
onClick={handleDeleteConfirm}
disabled={isPending}
>
{isPending && action === "delete" ? (
<Loader
className="size-3.5 animate-spin"
aria-hidden="true"
/>
) : (
<Trash2 className="size-3.5" aria-hidden="true" />
)}
</Button>
</TooltipTrigger>
<TooltipContent className="border bg-accent font-semibold text-foreground dark:bg-zinc-900">
<p>Delete users</p>
</TooltipContent>
</Tooltip>
</div>
</div>
</div>
</div>
{/* 공용 Confirm Dialog */}
<ActionConfirmDialog
open={confirmDialogOpen}
onOpenChange={setConfirmDialogOpen}
title={confirmProps.title}
description={confirmProps.description}
onConfirm={confirmProps.onConfirm}
isLoading={isPending && (action === "delete" || action === "update-roles")}
confirmLabel={
action === "delete"
? "Delete"
: action === "update-roles"
? "Update"
: "Confirm"
}
confirmVariant={
action === "delete" ? "destructive" : "default"
}
/>
</Portal>
)
}
|