Skip to content

Commit a8da018

Browse files
committed
v4.8.10
1 parent eefadaa commit a8da018

File tree

4 files changed

+29
-2
lines changed

4 files changed

+29
-2
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@netdata/netdata-ui",
3-
"version": "4.8.9",
3+
"version": "4.8.10",
44
"description": "netdata UI kit",
55
"main": "dist/index.js",
66
"module": "dist/es6/index.js",
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
const formatValue = value => {
2+
if (value === null || value === undefined) return "-"
3+
if (typeof value === "object") return JSON.stringify(value)
4+
return value
5+
}
6+
7+
const convertToCSV = data => data.reduce((h, row) => h + row.map(formatValue).join(",") + "\n", "")
8+
9+
export default (name = "netdata") =>
10+
(_, table) => {
11+
let data = [table.getFlatHeaders().map(header => header.id)]
12+
table.getRowModel().rows.forEach(row => {
13+
data.push(table.getFlatHeaders().map(header => row.renderValue(header.id)))
14+
})
15+
16+
const url = window.URL.createObjectURL(
17+
new Blob([convertToCSV(data)], { type: "text/csv;charset=utf-8;" })
18+
)
19+
const link = document.createElement("a")
20+
link.href = url
21+
const fileName = `${name}.csv`
22+
link.setAttribute("download", fileName)
23+
document.body.appendChild(link)
24+
link.click()
25+
link.remove()
26+
}

src/components/table/index.js

+1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
export { default as Table } from "./table"
2+
export { default as downloadCsvAction } from "./helpers/downloadCsv"

src/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ export { default as Modal } from "./components/modal"
121121

122122
export { ConfirmationDialog } from "./components/confirmation-dialog"
123123

124-
export { Table } from "./components/table"
124+
export { Table, downloadCsvAction } from "./components/table"
125125

126126
export { default as Select } from "./components/select"
127127
export { default as SearchInput } from "./components/search"

0 commit comments

Comments
 (0)