securityos/components/apps/Marked/useMarked.ts

78 lines
2.2 KiB
TypeScript
Raw Permalink Normal View History

2024-09-06 15:32:35 +00:00
import useTitle from "components/system/Window/useTitle";
import { useFileSystem } from "contexts/fileSystem";
import { useProcesses } from "contexts/process";
import { basename } from "path";
import { useCallback, useEffect } from "react";
import { haltEvent, isYouTubeUrl, loadFiles } from "utils/functions";
type MarkedOptions = {
headerIds?: boolean;
};
declare global {
interface Window {
DOMPurify: {
sanitize: (text: string) => string;
};
marked: {
parse: (markdownString: string, options: MarkedOptions) => string;
};
}
}
const useMarked = (
id: string,
url: string,
containerRef: React.MutableRefObject<HTMLDivElement | null>,
setLoading: React.Dispatch<React.SetStateAction<boolean>>,
loading: boolean
): void => {
const { readFile } = useFileSystem();
const { prependFileToTitle } = useTitle(id);
const { open, processes: { [id]: { libs = [] } = {} } = {} } = useProcesses();
const loadFile = useCallback(async () => {
const markdownFile = await readFile(url);
const container = containerRef.current?.querySelector(
"article"
) as HTMLElement;
if (container instanceof HTMLElement) {
container.innerHTML = window.DOMPurify.sanitize(
window.marked.parse(markdownFile.toString(), {
headerIds: false,
})
);
container.querySelectorAll("a").forEach((link) =>
link.addEventListener("click", (event) => {
haltEvent(event);
if (isYouTubeUrl(link.href)) {
open("VideoPlayer", { url: link.href });
} else {
window.open(link.href, "_blank", "noopener, noreferrer");
}
})
);
container.scrollTop = 0;
}
prependFileToTitle(basename(url));
}, [containerRef, open, prependFileToTitle, readFile, url]);
useEffect(() => {
if (loading) {
loadFiles(libs).then(() => {
if (window.marked) {
setLoading(false);
}
});
}
}, [libs, loading, setLoading]);
useEffect(() => {
if (!loading && url) loadFile();
}, [loadFile, loading, url]);
};
export default useMarked;