CoastalCommitsPastes/client/app/mine/page.tsx

19 lines
539 B
TypeScript
Raw Normal View History

import { redirect } from "next/navigation"
import { getPostsByUser } from "@lib/server/prisma"
2022-11-12 04:28:06 -05:00
import PostList from "@components/post-list"
import { getCurrentUser } from "@lib/server/session"
import { authOptions } from "@lib/server/auth"
2022-11-11 19:33:43 -05:00
2022-11-10 02:11:36 -05:00
export default async function Mine() {
const userId = (await getCurrentUser())?.id
2022-11-10 02:11:36 -05:00
if (!userId) {
return redirect(authOptions.pages?.signIn || "/new")
2022-11-10 02:11:36 -05:00
}
const posts = await getPostsByUser(userId, true)
2022-11-10 02:11:36 -05:00
const hasMore = false
2022-11-12 21:39:03 -05:00
return <PostList morePosts={hasMore} initialPosts={posts} />
2022-11-10 02:11:36 -05:00
}