mirror of
https://github.com/marcogll/TaxHacker_s23.git
synced 2026-01-13 13:25:18 +00:00
67 lines
2.5 KiB
TypeScript
67 lines
2.5 KiB
TypeScript
import { FormTextarea } from "@/components/forms/simple"
|
|
import TransactionEditForm from "@/components/transactions/edit"
|
|
import TransactionFiles from "@/components/transactions/transaction-files"
|
|
import { Card } from "@/components/ui/card"
|
|
import { getCurrentUser } from "@/lib/auth"
|
|
import { getCategories } from "@/models/categories"
|
|
import { getCurrencies } from "@/models/currencies"
|
|
import { getFields } from "@/models/fields"
|
|
import { getFilesByTransactionId } from "@/models/files"
|
|
import { getProjects } from "@/models/projects"
|
|
import { getSettings } from "@/models/settings"
|
|
import { getTransactionById } from "@/models/transactions"
|
|
import { notFound } from "next/navigation"
|
|
|
|
export default async function TransactionPage({ params }: { params: Promise<{ transactionId: string }> }) {
|
|
const { transactionId } = await params
|
|
const user = await getCurrentUser()
|
|
const transaction = await getTransactionById(transactionId, user.id)
|
|
if (!transaction) {
|
|
notFound()
|
|
}
|
|
|
|
const files = await getFilesByTransactionId(transactionId, user.id)
|
|
const categories = await getCategories(user.id)
|
|
const currencies = await getCurrencies(user.id)
|
|
const settings = await getSettings(user.id)
|
|
const fields = await getFields(user.id)
|
|
const projects = await getProjects(user.id)
|
|
|
|
return (
|
|
<div className="flex flex-wrap flex-row items-start justify-center gap-4 max-w-6xl">
|
|
<Card className="w-full flex-1 flex flex-col flex-wrap justify-center items-start gap-10 p-5 bg-accent">
|
|
<div className="w-full">
|
|
<TransactionEditForm
|
|
transaction={transaction}
|
|
categories={categories}
|
|
currencies={currencies}
|
|
settings={settings}
|
|
fields={fields}
|
|
projects={projects}
|
|
/>
|
|
|
|
{transaction.text && (
|
|
<details className="mt-10">
|
|
<summary className="cursor-pointer text-sm font-medium">Recognized Text</summary>
|
|
<Card className="flex items-stretch p-2 max-w-6xl">
|
|
<div className="flex-1">
|
|
<FormTextarea
|
|
name="text"
|
|
defaultValue={transaction.text || ""}
|
|
hideIfEmpty={true}
|
|
className="w-full h-[400px]"
|
|
/>
|
|
</div>
|
|
</Card>
|
|
</details>
|
|
)}
|
|
</div>
|
|
</Card>
|
|
|
|
<div className="w-1/2 max-w-[400px] space-y-4">
|
|
<TransactionFiles transaction={transaction} files={files} />
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|