Files

33 lines
1003 B
TypeScript
Raw Permalink Normal View History

import { redirect } from "next/navigation"
import { asc, desc, eq } from "drizzle-orm"
import { db } from "@/lib/db"
import { follow_up_rules, follow_up_log } from "@/lib/db/schema"
import { getSessionUser } from "@/lib/session"
import { getEffectiveOwnerId } from "@/lib/account"
import { FollowUpsClient } from "./follow-ups-client"
export const metadata = { title: "Automated Follow-ups" }
export default async function FollowUpsPage() {
const user = await getSessionUser()
if (!user) redirect("/login")
const ownerId = await getEffectiveOwnerId(user.id)
const [rules, logs] = await Promise.all([
db
.select()
.from(follow_up_rules)
.where(eq(follow_up_rules.user_id, ownerId))
.orderBy(asc(follow_up_rules.created_at)),
db
.select()
.from(follow_up_log)
.where(eq(follow_up_log.user_id, ownerId))
.orderBy(desc(follow_up_log.created_at))
.limit(30),
])
return <FollowUpsClient rules={rules ?? []} logs={logs ?? []} />
}