2026-06-23 20:36:07 -04:00
|
|
|
import { redirect } from "next/navigation"
|
|
|
|
|
import { desc, eq } from "drizzle-orm"
|
|
|
|
|
import { db } from "@/lib/db"
|
|
|
|
|
import { ai_recommendations } 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 { RecommendationsClient } from "./recommendations-client"
|
|
|
|
|
|
|
|
|
|
export const metadata = { title: "AI Recommendations" }
|
|
|
|
|
|
|
|
|
|
export default async function RecommendationsPage() {
|
|
|
|
|
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 recommendations = await db
|
|
|
|
|
.select()
|
|
|
|
|
.from(ai_recommendations)
|
2026-07-02 13:42:34 -04:00
|
|
|
.where(eq(ai_recommendations.user_id, ownerId))
|
2026-06-23 20:36:07 -04:00
|
|
|
.orderBy(desc(ai_recommendations.created_at))
|
|
|
|
|
|
|
|
|
|
return <RecommendationsClient recommendations={recommendations ?? []} />
|
|
|
|
|
}
|