|
|
|
|
@ -6,13 +6,16 @@ import { useEffect, useState } from "react";
|
|
|
|
|
import Document from '../../components/document'
|
|
|
|
|
import Header from "../../components/header";
|
|
|
|
|
import VisibilityBadge from "../../components/visibility-badge";
|
|
|
|
|
import { ThemeProps } from "../_app";
|
|
|
|
|
import { PostProps } from "../_app";
|
|
|
|
|
import PageSeo from "components/page-seo";
|
|
|
|
|
import Head from "next/head";
|
|
|
|
|
import styles from './styles.module.css';
|
|
|
|
|
import Cookies from "js-cookie";
|
|
|
|
|
import cookie from "cookie";
|
|
|
|
|
import { GetServerSideProps } from "next";
|
|
|
|
|
|
|
|
|
|
const Post = ({ theme, changeTheme }: ThemeProps) => {
|
|
|
|
|
|
|
|
|
|
const Post = ({renderedPost, theme, changeTheme}: PostProps) => {
|
|
|
|
|
const [post, setPost] = useState<any>()
|
|
|
|
|
const [isLoading, setIsLoading] = useState(true)
|
|
|
|
|
const [error, setError] = useState<string>()
|
|
|
|
|
@ -21,6 +24,14 @@ const Post = ({ theme, changeTheme }: ThemeProps) => {
|
|
|
|
|
useEffect(() => {
|
|
|
|
|
async function fetchPost() {
|
|
|
|
|
setIsLoading(true);
|
|
|
|
|
|
|
|
|
|
if (renderedPost) {
|
|
|
|
|
console.log('Using Server Side Post');
|
|
|
|
|
setPost(renderedPost)
|
|
|
|
|
setIsLoading(false)
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (router.query.id) {
|
|
|
|
|
const post = await fetch(`/server-api/posts/${router.query.id}`, {
|
|
|
|
|
method: "GET",
|
|
|
|
|
@ -108,4 +119,31 @@ const Post = ({ theme, changeTheme }: ThemeProps) => {
|
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export const getServerSideProps: GetServerSideProps = async (context) => {
|
|
|
|
|
|
|
|
|
|
const headers = context.req.headers;
|
|
|
|
|
const host = headers.host;
|
|
|
|
|
const driftToken = cookie.parse(headers.cookie || '')[`drift-token`];
|
|
|
|
|
|
|
|
|
|
let post;
|
|
|
|
|
|
|
|
|
|
if (context.query.id) {
|
|
|
|
|
post = await fetch('http://' + host + `/server-api/posts/${context.query.id}`, {
|
|
|
|
|
method: "GET",
|
|
|
|
|
headers: {
|
|
|
|
|
"Content-Type": "application/json",
|
|
|
|
|
"Authorization": `Bearer ${driftToken}`
|
|
|
|
|
}
|
|
|
|
|
}).then(res => res.json());
|
|
|
|
|
|
|
|
|
|
console.log(post);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return {
|
|
|
|
|
props: {
|
|
|
|
|
renderedPost: post
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export default Post
|
|
|
|
|
|