2022-03-31 08:46:10 +00:00
|
|
|
import React from 'react';
|
|
|
|
import Alert from '@mui/material/Alert';
|
|
|
|
import AlertTitle from '@mui/material/AlertTitle';
|
2022-03-31 09:59:10 +00:00
|
|
|
import {useRouter} from 'next/router'
|
2022-04-05 04:47:41 +00:00
|
|
|
import {Transformer} from "../lib/transformer";
|
2022-03-31 08:46:10 +00:00
|
|
|
|
2022-04-05 04:47:41 +00:00
|
|
|
function MDContent({content,fileNames, handleOpenNewContent}) {
|
2022-03-31 09:59:10 +00:00
|
|
|
|
|
|
|
function handleInternalLinkClick() {
|
|
|
|
//Processing fetching
|
|
|
|
//pass result up to parent container
|
|
|
|
//TODO: handle clicking on internal link, go fetching md content from file then passing it up to parent
|
|
|
|
handleOpenNewContent(content)
|
|
|
|
}
|
|
|
|
const router = useRouter();
|
2022-03-31 08:46:10 +00:00
|
|
|
return (
|
2022-03-31 09:59:10 +00:00
|
|
|
|
2022-03-31 08:46:10 +00:00
|
|
|
<div className="markdown-rendered">
|
|
|
|
<Alert severity="info">
|
|
|
|
<AlertTitle>Want to know more?</AlertTitle>
|
|
|
|
🌱 <strong>Follow</strong> or <strong>DM</strong> me on Twitter at <span><a href="https://twitter.com/tuancm">@tuancm</a></span>
|
|
|
|
</Alert>
|
|
|
|
<div dangerouslySetInnerHTML={{__html: content}}/>
|
2022-03-31 09:59:10 +00:00
|
|
|
<button onClick={handleInternalLinkClick}>Click me </button>
|
2022-03-31 08:46:10 +00:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
export default MDContent;
|