Export all users to a CSV with name and email

This commit is contained in:
Austin Chen 2022-02-01 20:58:38 -08:00
parent dc2fada751
commit d2f5742231

View File

@ -35,55 +35,74 @@ function UsersTable() {
// Sort users by createdTime descending, by default // Sort users by createdTime descending, by default
users = users.sort((a, b) => b.createdTime - a.createdTime) users = users.sort((a, b) => b.createdTime - a.createdTime)
function exportCsv() {
const csv = users
// @ts-ignore
.map((u) => [u.email, u.name].join(', '))
.join('\n')
const blob = new Blob([csv], { type: 'text/csv;charset=utf-8' })
const url = URL.createObjectURL(blob)
const a = document.createElement('a')
a.href = url
a.download = 'manifold-users.csv'
a.click()
URL.revokeObjectURL(url)
}
return ( return (
<Grid <>
data={users} <Grid
columns={[ data={users}
{ columns={[
id: 'avatarUrl', {
name: 'Avatar', id: 'avatarUrl',
formatter: (cell) => html(avatarHtml(cell as string)), name: 'Avatar',
}, formatter: (cell) => html(avatarHtml(cell as string)),
{ },
id: 'username', {
name: 'Username', id: 'username',
formatter: (cell) => name: 'Username',
html(`<a formatter: (cell) =>
html(`<a
class="hover:underline hover:decoration-indigo-400 hover:decoration-2" class="hover:underline hover:decoration-indigo-400 hover:decoration-2"
href="/${cell}">@${cell}</a>`), href="/${cell}">@${cell}</a>`),
}, },
'Email', 'Email',
{ {
id: 'createdTime', id: 'createdTime',
name: 'Created Time', name: 'Created Time',
formatter: (cell) => formatter: (cell) =>
html( html(
`<span class="whitespace-nowrap">${dayjs(cell as number).format( `<span class="whitespace-nowrap">${dayjs(cell as number).format(
'MMM D, h:mma' 'MMM D, h:mma'
)}</span>` )}</span>`
), ),
}, },
{ {
id: 'balance', id: 'balance',
name: 'Balance', name: 'Balance',
formatter: (cell) => (cell as number).toFixed(0), formatter: (cell) => (cell as number).toFixed(0),
}, },
{ {
id: 'id', id: 'id',
name: 'ID', name: 'ID',
formatter: (cell) => formatter: (cell) =>
html(`<a html(`<a
class="hover:underline hover:decoration-indigo-400 hover:decoration-2" class="hover:underline hover:decoration-indigo-400 hover:decoration-2"
href="https://console.firebase.google.com/project/mantic-markets/firestore/data/~2Fusers~2F${cell}">${cell}</a>`), href="https://console.firebase.google.com/project/mantic-markets/firestore/data/~2Fusers~2F${cell}">${cell}</a>`),
}, },
]} ]}
search={true} search={true}
sort={true} sort={true}
pagination={{ pagination={{
enabled: true, enabled: true,
limit: 25, limit: 25,
}} }}
/> />
<button className="btn" onClick={exportCsv}>
Export emails to CSV
</button>
</>
) )
} }