2022-03-22 23:06:15 -04:00
|
|
|
import useTheme from "@lib/hooks/use-theme"
|
2022-03-09 17:57:44 -05:00
|
|
|
import { memo, useEffect, useState } from "react"
|
2022-03-22 23:16:24 -04:00
|
|
|
import styles from './preview.module.css'
|
2022-03-06 19:46:59 -05:00
|
|
|
|
2022-03-09 17:57:44 -05:00
|
|
|
type Props = {
|
|
|
|
height?: number | string
|
2022-03-22 23:06:15 -04:00
|
|
|
fileId?: string
|
|
|
|
content?: string
|
|
|
|
title?: string
|
2022-03-09 17:57:44 -05:00
|
|
|
// file extensions we can highlight
|
|
|
|
}
|
|
|
|
|
2022-03-22 23:06:15 -04:00
|
|
|
const MarkdownPreview = ({ height = 500, fileId, content, title }: Props) => {
|
|
|
|
const [preview, setPreview] = useState<string>(content || "")
|
|
|
|
const [isLoading, setIsLoading] = useState<boolean>(true)
|
|
|
|
const { theme } = useTheme()
|
2022-03-09 17:57:44 -05:00
|
|
|
useEffect(() => {
|
2022-03-22 23:06:15 -04:00
|
|
|
async function fetchPost() {
|
|
|
|
if (fileId) {
|
|
|
|
const resp = await fetch(`/api/markdown/${fileId}`, {
|
|
|
|
method: "GET",
|
|
|
|
})
|
|
|
|
if (resp.ok) {
|
|
|
|
const res = await resp.text()
|
|
|
|
setPreview(res)
|
|
|
|
setIsLoading(false)
|
|
|
|
}
|
2022-03-22 23:16:24 -04:00
|
|
|
} else if (content) {
|
2022-03-22 23:06:15 -04:00
|
|
|
const resp = await fetch(`/api/render-markdown`, {
|
|
|
|
method: "POST",
|
|
|
|
headers: {
|
|
|
|
"Content-Type": "application/json",
|
|
|
|
},
|
|
|
|
body: JSON.stringify({
|
|
|
|
title,
|
|
|
|
content,
|
|
|
|
}),
|
|
|
|
})
|
|
|
|
if (resp.ok) {
|
|
|
|
const res = await resp.text()
|
|
|
|
setPreview(res)
|
|
|
|
setIsLoading(false)
|
|
|
|
}
|
|
|
|
}
|
2022-03-22 23:16:24 -04:00
|
|
|
setIsLoading(false)
|
2022-03-09 17:57:44 -05:00
|
|
|
}
|
2022-03-22 23:06:15 -04:00
|
|
|
fetchPost()
|
|
|
|
}, [content, fileId, title])
|
|
|
|
return (<>
|
2022-03-22 23:16:24 -04:00
|
|
|
{isLoading ? <div>Loading...</div> : <div data-theme={theme} className={styles.markdownPreview} dangerouslySetInnerHTML={{ __html: preview }} style={{
|
2022-03-22 23:06:15 -04:00
|
|
|
height
|
|
|
|
}} />}
|
|
|
|
</>)
|
|
|
|
|
2022-03-06 19:46:59 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
export default memo(MarkdownPreview)
|