2022-03-22 23:06:15 -04:00
|
|
|
import { Page, useToasts } from '@geist-ui/core';
|
2022-03-21 21:51:19 -04:00
|
|
|
|
2022-03-22 23:06:15 -04:00
|
|
|
import type { Post } from "@lib/types";
|
2022-03-30 23:01:24 -04:00
|
|
|
import PasswordModal from "@components/new-post/password-modal";
|
2022-03-21 21:51:19 -04:00
|
|
|
import { useEffect, useState } from "react";
|
|
|
|
import { useRouter } from "next/router";
|
|
|
|
import Cookies from "js-cookie";
|
2022-03-21 23:30:45 -04:00
|
|
|
import PostPage from "@components/post-page";
|
2022-03-21 21:51:19 -04:00
|
|
|
|
2022-03-22 23:06:15 -04:00
|
|
|
const Post = () => {
|
2022-03-21 21:51:19 -04:00
|
|
|
const [isPasswordModalOpen, setIsPasswordModalOpen] = useState(true);
|
|
|
|
const [post, setPost] = useState<Post>()
|
|
|
|
const router = useRouter()
|
|
|
|
const { setToast } = useToasts()
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
if (router.isReady) {
|
|
|
|
const fetchPostWithAuth = async () => {
|
|
|
|
const resp = await fetch(`/server-api/posts/${router.query.id}`, {
|
|
|
|
headers: {
|
|
|
|
Authorization: `Bearer ${Cookies.get('drift-token')}`
|
|
|
|
}
|
|
|
|
})
|
|
|
|
if (!resp.ok) return
|
|
|
|
const post = await resp.json()
|
|
|
|
|
|
|
|
if (!post) return
|
|
|
|
setPost(post)
|
|
|
|
}
|
|
|
|
fetchPostWithAuth()
|
|
|
|
}
|
|
|
|
}, [router.isReady, router.query.id])
|
|
|
|
|
|
|
|
const onSubmit = async (password: string) => {
|
|
|
|
const res = await fetch(`/server-api/posts/${router.query.id}?password=${password}`, {
|
|
|
|
method: "GET",
|
|
|
|
headers: {
|
|
|
|
"Content-Type": "application/json",
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
if (!res.ok) {
|
|
|
|
setToast({
|
|
|
|
type: "error",
|
|
|
|
text: "Wrong password"
|
|
|
|
})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
const data = await res.json()
|
|
|
|
if (data) {
|
|
|
|
if (data.error) {
|
|
|
|
setToast({
|
|
|
|
text: data.error,
|
|
|
|
type: "error"
|
|
|
|
})
|
|
|
|
} else {
|
|
|
|
setPost(data)
|
|
|
|
setIsPasswordModalOpen(false)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const onClose = () => {
|
|
|
|
setIsPasswordModalOpen(false);
|
2022-04-01 19:51:23 -04:00
|
|
|
router.push("/");
|
2022-03-21 21:51:19 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!router.isReady) {
|
|
|
|
return <></>
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!post) {
|
2022-03-30 23:01:24 -04:00
|
|
|
return <Page>
|
|
|
|
<PasswordModal creating={false} onClose={onClose} onSubmit={onSubmit} isOpen={isPasswordModalOpen} />
|
|
|
|
</Page>
|
2022-03-21 21:51:19 -04:00
|
|
|
}
|
|
|
|
|
2022-03-22 23:06:15 -04:00
|
|
|
return (<PostPage post={post} />)
|
2022-03-21 21:51:19 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
export default Post
|
|
|
|
|