36 lines
1.3 KiB
TypeScript
36 lines
1.3 KiB
TypeScript
import { redirect } from "next/navigation"
|
|||
|
|
import { and, asc, eq } from "drizzle-orm"
|
||
|
|
import { db } from "@/lib/db"
|
||
|
|
import { tenants as tenantsTable } from "@/lib/db/schema"
|
||
|
|
import { getSessionUser } from "@/lib/session"
|
||
|
|
import { RentPaymentForm } from "@/components/forms/rent-payment-form"
|
||
|
|
import { BackButton } from "@/components/ui/back-button"
|
||
|
|
|
||
|
|
export const metadata = { title: "Record Payment" }
|
||
|
|
|
||
|
|
export default async function NewRentPaymentPage() {
|
||
|
|
const user = await getSessionUser()
|
||
|
|
if (!user) redirect("/login")
|
||
|
|
|
||
|
|
const tenants = await db.query.tenants.findMany({
|
||
|
|
where: and(eq(tenantsTable.user_id, user.id), eq(tenantsTable.status, "active")),
|
||
|
|
columns: { id: true, first_name: true, last_name: true, property_id: true, unit_id: true },
|
||
|
|
with: {
|
||
|
|
unit: { columns: { unit_number: true, rent_amount: true } },
|
||
|
|
property: { columns: { id: true, name: true } },
|
||
|
|
},
|
||
|
|
orderBy: asc(tenantsTable.first_name),
|
||
|
|
})
|
||
|
|
|
||
|
|
return (
|
||
|
|
<div className="mx-auto max-w-2xl space-y-6">
|
||
|
|
<BackButton href="/rent" />
|
||
|
|
<div>
|
||
|
|
<h2 className="text-lg font-semibold text-white">Record Payment</h2>
|
||
|
|
<p className="text-sm text-white/40">Log a rent payment for a tenant</p>
|
||
|
|
</div>
|
||
|
|
<RentPaymentForm tenants={tenants ?? []} />
|
||
|
|
</div>
|
||
|
|
)
|
||
|
|
}
|