2022-11-10 02:11:36 -05:00
|
|
|
import { USER_COOKIE_NAME } from "@lib/constants"
|
2022-11-11 22:17:44 -05:00
|
|
|
import { notFound, redirect, useRouter } from "next/navigation"
|
2022-11-10 02:11:36 -05:00
|
|
|
import { cookies } from "next/headers"
|
2022-11-11 22:17:44 -05:00
|
|
|
import { getPostsByUser } from "@lib/server/prisma"
|
2022-11-10 02:11:36 -05:00
|
|
|
import PostList from "@components/post-list"
|
2022-11-11 22:17:44 -05:00
|
|
|
import { getCurrentUser } from "@lib/server/session"
|
|
|
|
import Header from "@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() {
|
2022-11-11 22:17:44 -05:00
|
|
|
const userId = (await getCurrentUser())?.id
|
|
|
|
|
2022-11-10 02:11:36 -05:00
|
|
|
if (!userId) {
|
2022-11-11 22:17:44 -05:00
|
|
|
redirect(authOptions.pages?.signIn || "/new")
|
2022-11-10 02:11:36 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
const posts = await getPostsByUser(userId, true)
|
2022-11-11 22:17:44 -05:00
|
|
|
|
2022-11-10 02:11:36 -05:00
|
|
|
const hasMore = false
|
2022-11-11 22:17:44 -05:00
|
|
|
return (
|
|
|
|
<>
|
|
|
|
<Header signedIn />
|
|
|
|
<PostList morePosts={hasMore} initialPosts={posts} />
|
|
|
|
</>
|
|
|
|
)
|
2022-11-10 02:11:36 -05:00
|
|
|
}
|