mirror of
https://github.com/marcogll/TaxHacker_s23.git
synced 2026-01-13 21:35:19 +00:00
feat: use structured output, import CSV, bugfixes
This commit is contained in:
193
components/import/csv.tsx
Normal file
193
components/import/csv.tsx
Normal file
@@ -0,0 +1,193 @@
|
||||
"use client"
|
||||
|
||||
import { Button } from "@/components/ui/button"
|
||||
import { Field } from "@prisma/client"
|
||||
import { Upload } from "lucide-react"
|
||||
import { useRouter } from "next/navigation"
|
||||
import { startTransition, useActionState, useEffect, useState } from "react"
|
||||
import { parseCSVAction, saveTransactionsAction } from "../../app/import/csv/actions"
|
||||
import { FormError } from "../forms/error"
|
||||
|
||||
const MAX_PREVIEW_ROWS = 100
|
||||
|
||||
export function ImportCSVTable({ fields }: { fields: Field[] }) {
|
||||
const router = useRouter()
|
||||
const [parseState, parseAction] = useActionState(parseCSVAction, null)
|
||||
const [saveState, saveAction] = useActionState(saveTransactionsAction, null)
|
||||
|
||||
const [csvSettings, setCSVSettings] = useState({
|
||||
skipHeader: true,
|
||||
})
|
||||
const [csvData, setCSVData] = useState<string[][]>([])
|
||||
const [columnMappings, setColumnMappings] = useState<string[]>([])
|
||||
|
||||
useEffect(() => {
|
||||
if (parseState?.success && parseState.data) {
|
||||
setCSVData(parseState.data)
|
||||
if (parseState.data.length > 0) {
|
||||
setColumnMappings(
|
||||
parseState.data[0].map((value) => {
|
||||
const field = fields.find((field) => field.code === value || field.name === value)
|
||||
return field?.code || ""
|
||||
})
|
||||
)
|
||||
} else {
|
||||
setColumnMappings([])
|
||||
}
|
||||
}
|
||||
}, [parseState])
|
||||
|
||||
useEffect(() => {
|
||||
if (saveState?.success) {
|
||||
router.push("/transactions")
|
||||
}
|
||||
}, [saveState, router])
|
||||
|
||||
const handleFileChange = async (event: React.ChangeEvent<HTMLInputElement>) => {
|
||||
const file = event.target.files?.[0]
|
||||
if (!file) return
|
||||
|
||||
const formData = new FormData()
|
||||
formData.append("file", file)
|
||||
|
||||
startTransition(async () => {
|
||||
await parseAction(formData)
|
||||
})
|
||||
}
|
||||
|
||||
const handleMappingChange = (columnIndex: number, fieldCode: string) => {
|
||||
setColumnMappings((prev) => {
|
||||
const state = [...prev]
|
||||
state[columnIndex] = fieldCode
|
||||
return state
|
||||
})
|
||||
}
|
||||
|
||||
const handleSave = async () => {
|
||||
if (csvData.length === 0) return
|
||||
|
||||
if (!isAtLeastOneFieldMapped(columnMappings)) {
|
||||
alert("Please map at least one column to a field")
|
||||
return
|
||||
}
|
||||
|
||||
const startIndex = csvSettings.skipHeader ? 1 : 0
|
||||
const processedRows = csvData.slice(startIndex).map((row) => {
|
||||
const processedRow: Record<string, unknown> = {}
|
||||
|
||||
columnMappings.forEach((fieldCode, columnIndex) => {
|
||||
if (!fieldCode || !row[columnIndex]) return
|
||||
processedRow[fieldCode] = row[columnIndex]
|
||||
})
|
||||
|
||||
return processedRow
|
||||
})
|
||||
|
||||
const formData = new FormData()
|
||||
formData.append("rows", JSON.stringify(processedRows))
|
||||
|
||||
startTransition(async () => {
|
||||
await saveAction(formData)
|
||||
})
|
||||
}
|
||||
|
||||
return (
|
||||
<>
|
||||
{csvData.length === 0 && (
|
||||
<div className="flex flex-col items-center justify-center gap-2 h-full min-h-[400px]">
|
||||
<p className="text-muted-foreground">Upload your CSV file to import transactions</p>
|
||||
<div className="flex flex-row gap-5 mt-8">
|
||||
<div>
|
||||
<input type="file" accept=".csv" className="hidden" id="csv-file" onChange={handleFileChange} />
|
||||
<Button type="button" onClick={() => document.getElementById("csv-file")?.click()}>
|
||||
<Upload className="mr-2" /> Import from CSV
|
||||
</Button>
|
||||
</div>
|
||||
</div>
|
||||
{parseState?.error && <FormError>{parseState.error}</FormError>}
|
||||
</div>
|
||||
)}
|
||||
|
||||
{csvData.length > 0 && (
|
||||
<div>
|
||||
<header className="flex flex-wrap items-center justify-between gap-2 mb-8">
|
||||
<h2 className="flex flex-row gap-3 md:gap-5">
|
||||
<span className="text-3xl font-bold tracking-tight">Import {csvData.length} items from CSV</span>
|
||||
</h2>
|
||||
<div className="flex gap-2">
|
||||
<Button onClick={handleSave} disabled={saveState?.success}>
|
||||
Import Transactions
|
||||
</Button>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<div className="flex items-center gap-4 mb-4">
|
||||
<label className="flex items-center gap-2 cursor-pointer">
|
||||
<input
|
||||
type="checkbox"
|
||||
className="w-4 h-4"
|
||||
id="skip-header"
|
||||
defaultChecked={csvSettings.skipHeader}
|
||||
onChange={(e) => setCSVSettings({ ...csvSettings, skipHeader: e.target.checked })}
|
||||
/>
|
||||
<span>First row is a header</span>
|
||||
</label>
|
||||
</div>
|
||||
|
||||
<div className="rounded-md border">
|
||||
<div className="relative w-full overflow-auto">
|
||||
<table className="w-full caption-bottom text-sm">
|
||||
<thead className="[&_tr]:border-b">
|
||||
<tr className="border-b transition-colors hover:bg-muted/50">
|
||||
{csvData[0].map((_, index) => (
|
||||
<th key={index} className="h-12 min-w-[200px] px-4 text-left align-middle font-medium">
|
||||
<select
|
||||
className="w-full p-2 border rounded-md"
|
||||
value={columnMappings[index] || ""}
|
||||
onChange={(e) => handleMappingChange(index, e.target.value)}
|
||||
>
|
||||
<option value="">Skip column</option>
|
||||
{fields.map((field) => (
|
||||
<option key={field.code} value={field.code}>
|
||||
{field.name}
|
||||
</option>
|
||||
))}
|
||||
</select>
|
||||
</th>
|
||||
))}
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody className="[&_tr:last-child]:border-0">
|
||||
{csvData.slice(0, MAX_PREVIEW_ROWS).map((row, rowIndex) => (
|
||||
<tr
|
||||
key={rowIndex}
|
||||
className={`border-b transition-colors hover:bg-muted/50 ${
|
||||
rowIndex === 0 && csvSettings.skipHeader ? "line-through text-muted-foreground" : ""
|
||||
}`}
|
||||
>
|
||||
{csvData[0].map((_, colIndex) => (
|
||||
<td key={colIndex} className="p-4 align-middle">
|
||||
{(row[colIndex] || "").toString().slice(0, 256)}
|
||||
</td>
|
||||
))}
|
||||
</tr>
|
||||
))}
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{csvData.length > MAX_PREVIEW_ROWS && (
|
||||
<p className="text-muted-foreground mt-4">and {csvData.length - MAX_PREVIEW_ROWS} more entries...</p>
|
||||
)}
|
||||
|
||||
{saveState?.error && <FormError>{saveState.error}</FormError>}
|
||||
</div>
|
||||
)}
|
||||
</>
|
||||
)
|
||||
}
|
||||
|
||||
function isAtLeastOneFieldMapped(columnMappings: string[]) {
|
||||
return columnMappings.some((mapping) => mapping !== "")
|
||||
}
|
||||
Reference in New Issue
Block a user