2022-12-04 04:31:51 -05:00
|
|
|
import PostPage from "./components/post-page"
|
2022-11-18 02:39:52 -05:00
|
|
|
import { notFound, redirect } from "next/navigation"
|
2022-12-04 04:31:51 -05:00
|
|
|
import { getPostById, Post, PostWithFilesAndAuthor } from "@lib/server/prisma"
|
2022-11-14 02:02:31 -05:00
|
|
|
import { getCurrentUser } from "@lib/server/session"
|
2022-12-04 04:31:51 -05:00
|
|
|
import ScrollToTop from "@components/scroll-to-top"
|
|
|
|
import { title } from "process"
|
|
|
|
import { PostButtons } from "./components/header/post-buttons"
|
|
|
|
import styles from "./styles.module.css"
|
|
|
|
import { PostTitle } from "./components/header/title"
|
|
|
|
import VisibilityControl from "@components/badges/visibility-control"
|
2022-11-12 02:59:33 -05:00
|
|
|
|
|
|
|
export type PostProps = {
|
|
|
|
post: Post
|
|
|
|
isProtected?: boolean
|
|
|
|
}
|
|
|
|
|
2022-12-04 04:31:51 -05:00
|
|
|
// export async function generateStaticParams() {
|
|
|
|
// const posts = await getAllPosts({
|
|
|
|
// where: {
|
|
|
|
// visibility: {
|
|
|
|
// equals: "public"
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
// })
|
|
|
|
|
|
|
|
// return posts.map((post) => ({
|
|
|
|
// id: post.id
|
|
|
|
// }))
|
|
|
|
// }
|
|
|
|
|
|
|
|
const fetchOptions = {
|
|
|
|
withFiles: true,
|
|
|
|
withAuthor: true
|
2022-12-01 22:45:19 -05:00
|
|
|
}
|
2022-11-12 21:39:03 -05:00
|
|
|
|
2022-11-12 02:59:33 -05:00
|
|
|
const getPost = async (id: string) => {
|
2022-12-04 04:31:51 -05:00
|
|
|
const post = (await getPostById(id, fetchOptions)) as PostWithFilesAndAuthor
|
2022-11-12 21:39:03 -05:00
|
|
|
|
2022-11-12 02:59:33 -05:00
|
|
|
if (!post) {
|
|
|
|
return notFound()
|
|
|
|
}
|
2022-12-01 22:45:19 -05:00
|
|
|
|
2022-11-30 01:22:17 -05:00
|
|
|
const user = await getCurrentUser()
|
2022-11-14 02:28:51 -05:00
|
|
|
const isAuthorOrAdmin = user?.id === post?.authorId || user?.role === "admin"
|
2022-11-12 02:59:33 -05:00
|
|
|
|
|
|
|
if (post.visibility === "public") {
|
2022-11-14 02:28:51 -05:00
|
|
|
return { post, isAuthor: isAuthorOrAdmin }
|
2022-11-12 02:59:33 -05:00
|
|
|
}
|
|
|
|
|
2022-11-18 01:36:53 -05:00
|
|
|
if (post.visibility === "private" && !isAuthorOrAdmin) {
|
2022-11-12 02:59:33 -05:00
|
|
|
return notFound()
|
|
|
|
}
|
|
|
|
|
2022-11-14 02:28:51 -05:00
|
|
|
if (post.visibility === "private" && !isAuthorOrAdmin) {
|
2022-11-12 02:59:33 -05:00
|
|
|
return notFound()
|
|
|
|
}
|
|
|
|
|
2022-11-14 02:28:51 -05:00
|
|
|
if (post.visibility === "protected" && !isAuthorOrAdmin) {
|
2022-11-12 02:59:33 -05:00
|
|
|
return {
|
2022-11-30 01:10:51 -05:00
|
|
|
post: {
|
|
|
|
visibility: "protected",
|
2022-12-04 04:31:51 -05:00
|
|
|
id: post.id,
|
|
|
|
files: [],
|
|
|
|
parentId: "",
|
|
|
|
title: "",
|
|
|
|
createdAt: new Date("1970-01-01"),
|
|
|
|
author: {
|
|
|
|
displayName: ""
|
|
|
|
},
|
|
|
|
description: ""
|
2022-11-30 01:10:51 -05:00
|
|
|
},
|
2022-11-12 02:59:33 -05:00
|
|
|
isProtected: true,
|
2022-11-14 02:28:51 -05:00
|
|
|
isAuthor: isAuthorOrAdmin
|
2022-11-12 02:59:33 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-11-14 04:28:40 -05:00
|
|
|
// if expired
|
|
|
|
if (post.expiresAt && !isAuthorOrAdmin) {
|
|
|
|
const expirationDate = new Date(post.expiresAt)
|
|
|
|
if (expirationDate < new Date()) {
|
2022-11-18 02:39:52 -05:00
|
|
|
return redirect("/expired")
|
2022-11-14 04:28:40 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-11-14 02:28:51 -05:00
|
|
|
return { post, isAuthor: isAuthorOrAdmin }
|
2022-11-12 02:59:33 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
const PostView = async ({
|
|
|
|
params
|
|
|
|
}: {
|
|
|
|
params: {
|
2022-11-12 04:28:06 -05:00
|
|
|
id: string
|
2022-11-12 02:59:33 -05:00
|
|
|
}
|
|
|
|
}) => {
|
2022-11-14 02:02:31 -05:00
|
|
|
const { post, isProtected, isAuthor } = await getPost(params.id)
|
|
|
|
// TODO: serialize dates in prisma middleware instead of passing as JSON
|
2022-11-14 02:28:51 -05:00
|
|
|
const stringifiedPost = JSON.stringify(post)
|
2022-12-04 04:31:51 -05:00
|
|
|
|
2022-11-14 02:28:51 -05:00
|
|
|
return (
|
2022-12-04 04:31:51 -05:00
|
|
|
<>
|
|
|
|
<div className={styles.header}>
|
|
|
|
<PostButtons
|
|
|
|
parentId={post.parentId || undefined}
|
|
|
|
postId={post.id}
|
|
|
|
files={post.files}
|
|
|
|
title={title}
|
|
|
|
/>
|
|
|
|
<PostTitle
|
|
|
|
title={post.title}
|
|
|
|
createdAt={post.createdAt}
|
|
|
|
displayName={post.author?.displayName || ""}
|
|
|
|
visibility={post.visibility}
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
{post.description && (
|
|
|
|
<div>
|
|
|
|
<p>{post.description}</p>
|
|
|
|
</div>
|
|
|
|
)}
|
|
|
|
<PostPage
|
|
|
|
isAuthor={isAuthor}
|
|
|
|
isProtected={isProtected}
|
|
|
|
post={stringifiedPost}
|
|
|
|
/>
|
|
|
|
{isAuthor && (
|
|
|
|
<span className={styles.controls}>
|
|
|
|
<VisibilityControl postId={post.id} visibility={post.visibility} />
|
|
|
|
</span>
|
|
|
|
)}
|
|
|
|
<ScrollToTop />
|
|
|
|
</>
|
2022-11-14 02:28:51 -05:00
|
|
|
)
|
2022-11-12 02:59:33 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
export default PostView
|