import { memo, useEffect, useState } from "react" import styles from "./preview.module.css" import "@styles/markdown.css" import "@styles/syntax.css" import Skeleton from "@components/skeleton" import { Spinner } from "@geist-ui/core/dist" type Props = { height?: number | string fileId?: string content?: string title?: string } const MarkdownPreview = ({ height = 500, fileId, content: initial = "", title }: Props) => { const [content, setPreview] = useState(initial) const [isLoading, setIsLoading] = useState(true) useEffect(() => { async function fetchPost() { // POST to avoid query string length limit const method = fileId ? "GET" : "POST" const path = fileId ? `/api/file/html/${fileId}` : "/api/file/get-html" const body = fileId ? undefined : JSON.stringify({ title: title || "", content: initial }) const resp = await fetch(path, { method: method, headers: { "Content-Type": "application/json" }, body }) if (resp.ok) { const res = await resp.text() setPreview(res) } setIsLoading(false) } fetchPost() }, [initial, fileId, title]) return ( <> {isLoading ? ( <> ) : ( )} ) } export default memo(MarkdownPreview) export const StaticPreview = ({ content, height = 500 }: { content: string height: string | number }) => { return (
) }