generated from plutack/nextjsauth-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcsv-download.ts
30 lines (27 loc) · 915 Bytes
/
csv-download.ts
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
import logger from "@/lib/logger";
const log = logger.child({ util: "CSV-download" });
function generateCSV(data: any[]): string {
log.info("Function called");
const headers = Object.keys(data[0]);
const csvRows = [
headers.join(","), // CSV header row
...data.map((row) =>
headers.map((header) => JSON.stringify(row[header])).join(","),
),
];
return csvRows.join("\n");
}
export function downloadCSV(data: any[], filename: string): void {
const csv = generateCSV(data);
const blob = new Blob([csv], { type: "text/csv;charset=utf-8;" });
const link = document.createElement("a");
if (link.download !== undefined) {
const url = URL.createObjectURL(blob);
link.setAttribute("href", url);
link.setAttribute("download", filename);
link.style.visibility = "hidden";
document.body.appendChild(link);
link.click();
document.body.removeChild(link);
}
}