CoastalCommitsPastes/client/app/mine/page.tsx

25 lines
620 B
TypeScript
Raw Normal View History

import { redirect } from "next/navigation"
import { getPostsByUser } from "@lib/server/prisma"
2022-11-12 03:58:21 -05:00
import PostList from "app/components/post-list"
import { getCurrentUser } from "@lib/server/session"
2022-11-12 03:58:21 -05:00
import Header from "app/components/header"
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) {
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
return (
<>
<Header signedIn />
<PostList morePosts={hasMore} initialPosts={posts} />
</>
)
2022-11-10 02:11:36 -05:00
}