import { Button, Page, Text } from "@geist-ui/core"; import Document from '@components/document' import Header from "@components/header"; import VisibilityBadge from "@components/visibility-badge"; import PageSeo from "components/page-seo"; import styles from '../styles.module.css'; import cookie from "cookie"; import type { GetServerSideProps } from "next"; import { PostVisibility, ThemeProps } from "@lib/types"; type File = { id: string title: string content: string } type Files = File[] export type PostProps = ThemeProps & { post: { id: string title: string description: string visibility: PostVisibility files: Files } } const Post = ({ post, theme, changeTheme }: PostProps) => { const download = async () => { const clientZip = require("client-zip") const blob = await clientZip.downloadZip(post.files.map((file: any) => { return { name: file.title, input: file.content, lastModified: new Date(file.updatedAt) } })).blob() const link = document.createElement("a") link.href = URL.createObjectURL(blob) link.download = `${post.title}.zip` link.click() link.remove() } return (
{/* {!isLoading && } */}
{post.title}
{post.files.map(({ id, content, title }: { id: any, content: string, title: string }) => ( ))}
) } export const getServerSideProps: GetServerSideProps = async (context) => { const headers = context.req.headers const host = headers.host const driftToken = cookie.parse(headers.cookie || '')[`drift-token`] if (context.query.id) { const post = await fetch('http://' + host + `/server-api/posts/${context.query.id}`, { method: "GET", headers: { "Content-Type": "application/json", "Authorization": `Bearer ${driftToken}` } }) if (!post.ok || post.status !== 200) { return { redirect: { destination: '/', permanent: false, }, } } try { const json = await post.json(); return { props: { post: json } } } catch (e) { console.log(e) } } return { props: { post: null } } } export default Post