-
-
Notifications
You must be signed in to change notification settings - Fork 421
Expand file tree
/
Copy pathcontact-list.tsx
More file actions
409 lines (385 loc) · 13.7 KB
/
Copy pathcontact-list.tsx
File metadata and controls
409 lines (385 loc) · 13.7 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
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
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
"use client";
import { Button } from "@usesend/ui/src/button";
import {
Select,
SelectContent,
SelectItem,
SelectTrigger,
} from "@usesend/ui/src/select";
import Spinner from "@usesend/ui/src/spinner";
import {
Table,
TableBody,
TableCell,
TableHead,
TableHeader,
TableRow,
} from "@usesend/ui/src/table";
import { formatDistanceToNow } from "date-fns";
import Image from "next/image";
import { useUrlState } from "~/hooks/useUrlState";
import { api } from "~/trpc/react";
import { getGravatarUrl } from "~/utils/gravatar-utils";
import DeleteContact from "./delete-contact";
import EditContact from "./edit-contact";
import { ResendDoubleOptInConfirmation } from "./resend-double-opt-in-confirmation";
import { Input } from "@usesend/ui/src/input";
import { useDebouncedCallback } from "use-debounce";
import { getContactPropertyValue } from "~/lib/contact-properties";
import {
Tooltip,
TooltipContent,
TooltipProvider,
TooltipTrigger,
} from "@usesend/ui/src/tooltip";
import { UnsubscribeReason } from "@prisma/client";
import { Download } from "lucide-react";
import { useEffect } from "react";
function sanitizeFilename(
name: string | undefined,
fallback = "contacts",
): string {
if (!name) return fallback;
// Remove or replace unsafe characters:
// - Path separators: / \
// - Reserved characters: : * ? " < > |
// - Control characters (0x00-0x1F, 0x7F)
// - Single quotes and backticks
const sanitized = name.replace(/[/\\:*?"<>|'\x00-\x1F\x7F]/g, "-").trim();
// Limit length to prevent excessively long filenames (max 100 chars)
const limited = sanitized.slice(0, 100).trim();
// Return fallback if result is empty after sanitization
return limited || fallback;
}
function getUnsubscribeReason(reason: UnsubscribeReason) {
switch (reason) {
case UnsubscribeReason.BOUNCED:
return "Email bounced";
case UnsubscribeReason.COMPLAINED:
return "User complained";
case UnsubscribeReason.UNSUBSCRIBED:
return "User unsubscribed";
default:
return "User unsubscribed";
}
}
export default function ContactList({
contactBookId,
contactBookName,
doubleOptInEnabled,
contactBookVariables,
}: {
contactBookId: string;
contactBookName?: string;
doubleOptInEnabled?: boolean;
contactBookVariables?: string[];
}) {
const [page, setPage] = useUrlState("page", "1");
const [status, setStatus] = useUrlState("status");
const [search, setSearch] = useUrlState("search");
const [segmentId, setSegmentId] = useUrlState("segment");
const pageNumber = Number(page);
const segmentsQuery = api.contacts.listSegments.useQuery({ contactBookId });
useEffect(() => {
if (!segmentId || !segmentsQuery.data) {
return;
}
const segmentExists = segmentsQuery.data.some(
(segment) => segment.id === segmentId,
);
if (!segmentExists) {
setSegmentId(null);
}
}, [segmentId, segmentsQuery.data, setSegmentId]);
const contactsQuery = api.contacts.contacts.useQuery({
contactBookId,
page: pageNumber,
search: search ?? undefined,
segmentId: segmentId ?? undefined,
subscribed:
status === "Subscribed"
? true
: status === "Unsubscribed"
? false
: undefined,
});
const debouncedSearch = useDebouncedCallback((value: string) => {
setSearch(value || null);
setPage("1");
}, 1000);
const handleStatusChange = (val: string) => {
setStatus(val === "All" ? null : val);
setPage("1");
};
const handleSegmentChange = (value: string) => {
setSegmentId(value === "all" ? null : value);
setPage("1");
};
const exportQuery = api.contacts.exportContacts.useQuery(
{
contactBookId,
search: search ?? undefined,
segmentId: segmentId ?? undefined,
subscribed:
status === "Subscribed"
? true
: status === "Unsubscribed"
? false
: undefined,
},
{
enabled: false,
},
);
const escapeCell = (str: string): string => {
// Wrap in quotes if contains comma, newline, or quote
if (str.includes(",") || str.includes("\n") || str.includes('"')) {
return `"${str.replace(/"/g, '""')}"`;
}
return str;
};
const handleExport = async () => {
const result = await exportQuery.refetch();
if (!result.data) return;
// CSV Header
const headers = [
"Email",
"First Name",
"Last Name",
"Subscribed",
"Unsubscribe Reason",
"Created At",
...(contactBookVariables ?? []),
];
// CSV Rows
const rows = result.data.map((contact) => [
escapeCell(contact.email ?? ""),
escapeCell(contact.firstName ?? ""),
escapeCell(contact.lastName ?? ""),
escapeCell(contact.subscribed ? "Yes" : "No"),
escapeCell(contact.unsubscribeReason ?? ""),
escapeCell(contact.createdAt.toISOString()),
...(contactBookVariables ?? []).map((variable) =>
escapeCell(
getContactPropertyValue(
(contact.properties as Record<string, unknown> | undefined) ?? {},
variable,
contactBookVariables ?? [],
) ?? "",
),
),
]);
// Build CSV with UTF-8 BOM
const csvContent = [
headers.map(escapeCell).join(","),
...rows.map((row) => row.join(",")),
].join("\n");
const blob = new Blob([csvContent], {
type: "text/csv;charset=utf-8;",
});
// Download
const url = URL.createObjectURL(blob);
const link = document.createElement("a");
link.href = url;
const today = new Date().toISOString().split("T")[0];
const safeContactBookName = sanitizeFilename(contactBookName);
link.download = `contacts-${safeContactBookName}-${today}.csv`;
document.body.appendChild(link);
link.click();
document.body.removeChild(link);
URL.revokeObjectURL(url);
};
return (
<TooltipProvider>
<div className="mt-10 flex flex-col gap-4">
<div className="flex justify-between items-center">
<div>
<Input
placeholder="Search by email or name"
className="w-[350px] mr-4"
defaultValue={search ?? ""}
onChange={(e) => debouncedSearch(e.target.value)}
/>
</div>
<div className="flex gap-2">
<Select value={segmentId ?? "all"} onValueChange={handleSegmentChange}>
<SelectTrigger className="w-[220px]">
{segmentId
? segmentsQuery.data?.find((segment) => segment.id === segmentId)
?.name ?? "Segment"
: "All segments"}
</SelectTrigger>
<SelectContent>
<SelectItem value="all">All segments</SelectItem>
{segmentsQuery.data?.map((segment) => (
<SelectItem key={segment.id} value={segment.id}>
{segment.name}
</SelectItem>
))}
</SelectContent>
</Select>
<Select value={status ?? "All"} onValueChange={handleStatusChange}>
<SelectTrigger className="w-[180px] capitalize">
{status || "All statuses"}
</SelectTrigger>
<SelectContent>
<SelectItem value="All" className=" capitalize">
All statuses
</SelectItem>
<SelectItem value="Subscribed" className=" capitalize">
Subscribed
</SelectItem>
<SelectItem value="Unsubscribed" className=" capitalize">
Unsubscribed
</SelectItem>
</SelectContent>
</Select>
<Button
onClick={handleExport}
disabled={exportQuery.isFetching}
size="sm"
variant="outline"
>
{exportQuery.isFetching ? (
<Spinner
className="w-4 h-4 mr-2"
innerSvgClass="stroke-primary"
/>
) : (
<Download className="w-4 h-4 mr-2" />
)}
Export
</Button>
</div>
</div>
<div className="flex flex-col rounded-xl border border-broder shadow">
<Table className="">
<TableHeader className="">
<TableRow className=" bg-muted/30">
<TableHead className="rounded-tl-xl">Email</TableHead>
<TableHead>Status</TableHead>
<TableHead className="">Created At</TableHead>
<TableHead className="rounded-tr-xl">Actions</TableHead>
</TableRow>
</TableHeader>
<TableBody>
{contactsQuery.isLoading ? (
<TableRow className="h-32">
<TableCell colSpan={4} className="text-center py-4">
<Spinner
className="w-6 h-6 mx-auto"
innerSvgClass="stroke-primary"
/>
</TableCell>
</TableRow>
) : contactsQuery.data?.contacts.length ? (
contactsQuery.data?.contacts.map((contact) => {
const isPendingConfirmation =
Boolean(doubleOptInEnabled) &&
!contact.subscribed &&
!contact.unsubscribeReason;
return (
<TableRow key={contact.id} className="">
<TableCell className="font-medium">
<div className="flex items-center gap-2">
<Image
src={getGravatarUrl(contact.email, {
size: 75,
defaultImage: "robohash",
})}
alt={contact.email + "'s gravatar"}
width={35}
height={35}
className="rounded-full"
/>
<div className="flex flex-col">
<span className="text-sm font-medium">
{contact.email}
</span>
<span className="text-xs text-muted-foreground">
{contact.firstName} {contact.lastName}
</span>
</div>
</div>
</TableCell>
<TableCell>
{contact.subscribed ? (
<div className="text-center w-[130px] rounded capitalize py-1 text-xs bg-green/15 text-green border border-green/25">
Subscribed
</div>
) : isPendingConfirmation ? (
<div className="text-center w-[130px] rounded capitalize py-1 text-xs bg-yellow/20 text-yellow border border-yellow/20">
Pending
</div>
) : (
<Tooltip>
<TooltipTrigger>
<div className="text-center w-[130px] rounded capitalize py-1 text-xs bg-red/10 text-red border border-red/10">
Unsubscribed
</div>
</TooltipTrigger>
<TooltipContent>
<p>
{getUnsubscribeReason(
contact.unsubscribeReason ??
UnsubscribeReason.UNSUBSCRIBED,
)}
</p>
</TooltipContent>
</Tooltip>
)}
</TableCell>
<TableCell className="">
{formatDistanceToNow(new Date(contact.createdAt), {
addSuffix: true,
})}
</TableCell>
<TableCell>
<div className="flex gap-2">
{isPendingConfirmation ? (
<ResendDoubleOptInConfirmation
contactBookId={contactBookId}
contactId={contact.id}
email={contact.email}
/>
) : null}
<EditContact
contact={contact}
contactBookVariables={contactBookVariables}
/>
<DeleteContact contact={contact} />
</div>
</TableCell>
</TableRow>
);
})
) : (
<TableRow className="h-32">
<TableCell colSpan={4} className="text-center py-4">
No contacts found
</TableCell>
</TableRow>
)}
</TableBody>
</Table>
</div>
<div className="flex gap-4 justify-end">
<Button
size="sm"
onClick={() => setPage((pageNumber - 1).toString())}
disabled={pageNumber === 1}
>
Previous
</Button>
<Button
size="sm"
onClick={() => setPage((pageNumber + 1).toString())}
disabled={pageNumber >= (contactsQuery.data?.totalPage ?? 0)}
>
Next
</Button>
</div>
</div>
</TooltipProvider>
);
}