1
0
ohmyform/ui/components/form/admin/export.submission.action.tsx
Michael Schramm 9c4c325e5a
Switch to single branch (#221)
* remove submodules
* add api and ui files
* update github actions
* use sparse checkout
* update node setup
* update checkout
* update docker
* change permissions
* update mariadb health check
* update changelog
2023-12-02 19:22:40 +01:00

126 lines
3.5 KiB
TypeScript

import { message } from 'antd'
import ExcelJS, { CellValue } from 'exceljs'
import { useCallback, useState } from 'react'
import { SubmissionFragment } from '../../../graphql/fragment/submission.fragment'
import { useFormQuery } from '../../../graphql/query/form.query'
import { useSubmissionPagerImperativeQuery } from '../../../graphql/query/submission.pager.query'
import { fieldTypes } from '../types'
interface Props {
form: string
trigger: (open: () => any, loading: boolean) => JSX.Element
}
export const ExportSubmissionAction: React.FC<Props> = (props) => {
const [loading, setLoading] = useState(false)
const form = useFormQuery({
variables: {
id: props.form,
},
})
const getSubmissions = useSubmissionPagerImperativeQuery()
const exportSubmissions = useCallback(async () => {
if (loading) {
return
}
setLoading(true)
try {
const workbook = new ExcelJS.Workbook()
workbook.creator = 'OhMyForm'
workbook.lastModifiedBy = 'OhMyForm'
workbook.created = new Date()
workbook.modified = new Date()
const orderedFields = form.data.form.fields
.map(field => field)
.sort((a, b) => (a.idx ?? 0) - (b.idx ?? 0))
// TODO should go through deleted fields as well to have a complete overview!
const sheet = workbook.addWorksheet('Submissions')
sheet.getRow(1).values = [
'Submission ID',
'Created',
'Last Change',
'Country',
'City',
'User Agent',
'Device',
...orderedFields.map((field) => `${field.title} (${field.type})`),
]
const firstPage = await getSubmissions({
form: props.form,
limit: 50,
start: 0,
})
const buildRow = (data: SubmissionFragment): CellValue[] => {
const row: CellValue[] = [
data.id,
data.created,
data.lastModified,
data.geoLocation.country,
data.geoLocation.city,
data.device.type,
data.device.name,
]
orderedFields.forEach((formField) => {
const field = data.fields.find(submission => submission.field?.id === formField.id)
try {
fieldTypes[field.type]?.stringifyValue(field.value)
row.push(fieldTypes[field.type]?.stringifyValue(field.value))
} catch (e) {
row.push('')
}
})
return row
}
firstPage.data.pager.entries.forEach((row, index) => {
sheet.getRow(index + 2).values = buildRow(row)
})
const pages = Math.ceil(firstPage.data.pager.total / 50)
for (let page = 1; page < pages; page++) {
// now process each page!
const next = await getSubmissions({
form: props.form,
limit: 50,
start: page * 50,
})
next.data.pager.entries.forEach((row, index) => {
sheet.getRow(index + 2 + page * 50).values = buildRow(row)
})
}
const buffer = await workbook.xlsx.writeBuffer()
const link = document.createElement('a')
link.href = window.URL.createObjectURL(new Blob([buffer], { type: 'application/xlsx' }))
link.download = 'submissions.xlsx'
link.click()
} catch (e) {
console.log('error', e)
void message.error({
content: 'Failed to generate export',
})
}
setLoading(false)
}, [
form, getSubmissions, props.form, setLoading, loading,
])
return props.trigger(() => exportSubmissions(), loading)
}