2022-04-04 21:13:18 -04:00
|
|
|
import Cookies from "js-cookie"
|
2022-03-09 17:57:44 -05:00
|
|
|
import { memo, useEffect, useState } from "react"
|
2022-04-09 20:48:19 -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 = {
|
2022-04-09 20:48:19 -04:00
|
|
|
height?: number | string
|
|
|
|
fileId?: string
|
|
|
|
content?: string
|
|
|
|
title?: string
|
|
|
|
// file extensions we can highlight
|
2022-03-09 17:57:44 -05:00
|
|
|
}
|
|
|
|
|
2022-03-22 23:06:15 -04:00
|
|
|
const MarkdownPreview = ({ height = 500, fileId, content, title }: Props) => {
|
2022-04-09 20:48:19 -04:00
|
|
|
const [preview, setPreview] = useState<string>(content || "")
|
|
|
|
const [isLoading, setIsLoading] = useState<boolean>(true)
|
|
|
|
useEffect(() => {
|
|
|
|
async function fetchPost() {
|
|
|
|
if (fileId) {
|
|
|
|
const resp = await fetch(`/api/html/${fileId}`, {
|
|
|
|
method: "GET"
|
|
|
|
})
|
|
|
|
if (resp.ok) {
|
|
|
|
const res = await resp.text()
|
|
|
|
setPreview(res)
|
|
|
|
setIsLoading(false)
|
|
|
|
}
|
|
|
|
} else if (content) {
|
|
|
|
const resp = await fetch("/server-api/files/html", {
|
|
|
|
method: "POST",
|
|
|
|
headers: {
|
|
|
|
"Content-Type": "application/json",
|
|
|
|
Authorization: `Bearer ${Cookies.get("drift-token") || ""}`
|
|
|
|
},
|
|
|
|
body: JSON.stringify({
|
|
|
|
title,
|
|
|
|
content
|
|
|
|
})
|
|
|
|
})
|
2022-03-22 23:06:15 -04:00
|
|
|
|
2022-04-09 20:48:19 -04:00
|
|
|
if (resp.ok) {
|
|
|
|
const res = await resp.text()
|
|
|
|
setPreview(res)
|
|
|
|
setIsLoading(false)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
setIsLoading(false)
|
|
|
|
}
|
|
|
|
fetchPost()
|
|
|
|
}, [content, fileId, title])
|
|
|
|
return (
|
|
|
|
<>
|
|
|
|
{isLoading ? (
|
|
|
|
<div>Loading...</div>
|
|
|
|
) : (
|
|
|
|
<article
|
|
|
|
className={styles.markdownPreview}
|
|
|
|
dangerouslySetInnerHTML={{ __html: preview }}
|
|
|
|
style={{
|
|
|
|
height
|
|
|
|
}}
|
|
|
|
/>
|
|
|
|
)}
|
|
|
|
</>
|
|
|
|
)
|
2022-03-06 19:46:59 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
export default memo(MarkdownPreview)
|