2026-06-23 20:36:07 -04:00
|
|
|
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"
|
2026-07-02 13:42:34 -04:00
|
|
|
import { getEffectiveOwnerId } from "@/lib/account"
|
2026-06-23 20:36:07 -04:00
|
|
|
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")
|
|
|
|
|
|
2026-07-02 13:42:34 -04:00
|
|
|
const ownerId = await getEffectiveOwnerId(user.id)
|
|
|
|
|
|
2026-06-23 20:36:07 -04:00
|
|
|
const [rules, logs] = await Promise.all([
|
|
|
|
|
db
|
|
|
|
|
.select()
|
|
|
|
|
.from(follow_up_rules)
|
2026-07-02 13:42:34 -04:00
|
|
|
.where(eq(follow_up_rules.user_id, ownerId))
|
2026-06-23 20:36:07 -04:00
|
|
|
.orderBy(asc(follow_up_rules.created_at)),
|
|
|
|
|
db
|
|
|
|
|
.select()
|
|
|
|
|
.from(follow_up_log)
|
2026-07-02 13:42:34 -04:00
|
|
|
.where(eq(follow_up_log.user_id, ownerId))
|
2026-06-23 20:36:07 -04:00
|
|
|
.orderBy(desc(follow_up_log.created_at))
|
|
|
|
|
.limit(30),
|
|
|
|
|
])
|
|
|
|
|
|
|
|
|
|
return <FollowUpsClient rules={rules ?? []} logs={logs ?? []} />
|
|
|
|
|
}
|