fix: remove re-highlight warning messages
This commit is contained in:
parent
af147ab0f3
commit
c978a54bab
@ -1,59 +1,68 @@
|
||||
import { useEffect, useState } from "react";
|
||||
import { useRef, useEffect, useState, forwardRef } from "react";
|
||||
import hljs from "highlight.js";
|
||||
import { Button } from "@components/Button";
|
||||
import { useToast } from "@components/Toast";
|
||||
import { escapeHtml } from "@/utils/escapeHtml";
|
||||
|
||||
export function LoadedCode({ from }: { from: string }) {
|
||||
const [state, setState] = useState<string | undefined | null>();
|
||||
const { toast } = useToast();
|
||||
export const GITHUB = "https://raw.githubusercontent.com/p-sw/ui/main/";
|
||||
|
||||
useEffect(() => {
|
||||
(async () => {
|
||||
const res = await fetch(from);
|
||||
const text = await res.text();
|
||||
setState(escapeHtml(text));
|
||||
})();
|
||||
}, [from]);
|
||||
export const LoadedCode = forwardRef<HTMLPreElement, { from: string }>(
|
||||
({ from }, outRef) => {
|
||||
const [state, setState] = useState<string | undefined | null>();
|
||||
const { toast } = useToast();
|
||||
|
||||
useEffect(() => {
|
||||
if (state) {
|
||||
hljs.highlightAll();
|
||||
}
|
||||
}, [state]);
|
||||
useEffect(() => {
|
||||
(async () => {
|
||||
const res = await fetch(from);
|
||||
const text = await res.text();
|
||||
setState(escapeHtml(text));
|
||||
})();
|
||||
}, [from]);
|
||||
|
||||
return (
|
||||
<pre
|
||||
className={`relative hljs w-full h-64 rounded-lg ${
|
||||
!state ? "animate-pulse" : ""
|
||||
}`}
|
||||
>
|
||||
<Button
|
||||
preset="default"
|
||||
size="icon"
|
||||
className="sticky float-right top-0 text-black dark:text-white"
|
||||
onClick={() => {
|
||||
navigator.clipboard.writeText(state ?? "");
|
||||
toast({
|
||||
title: "Copied",
|
||||
description: "The code has been copied to your clipboard.",
|
||||
status: "success",
|
||||
});
|
||||
}}
|
||||
const ref = useRef<HTMLElement | null>(null);
|
||||
|
||||
useEffect(() => {
|
||||
if (ref.current && !ref.current.dataset.highlighted) {
|
||||
hljs.highlightElement(ref.current);
|
||||
}
|
||||
}, [state]);
|
||||
|
||||
return (
|
||||
<pre
|
||||
className={`relative hljs w-full h-64 rounded-lg ${
|
||||
!state ? "animate-pulse" : ""
|
||||
}`}
|
||||
ref={outRef}
|
||||
>
|
||||
<svg
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
width="1.2em"
|
||||
height="1.2em"
|
||||
viewBox="0 0 24 24"
|
||||
<Button
|
||||
preset="default"
|
||||
size="icon"
|
||||
className="sticky float-right top-0 text-black dark:text-white"
|
||||
onClick={() => {
|
||||
navigator.clipboard.writeText(state ?? "");
|
||||
toast({
|
||||
title: "Copied",
|
||||
description: "The code has been copied to your clipboard.",
|
||||
status: "success",
|
||||
});
|
||||
}}
|
||||
>
|
||||
<path
|
||||
fill="currentColor"
|
||||
d="M4 7v14h14v2H4c-1.1 0-2-.9-2-2V7zm16-4c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H8c-1.1 0-2-.9-2-2V5c0-1.1.9-2 2-2h3.18C11.6 1.84 12.7 1 14 1s2.4.84 2.82 2zm-6 0c-.55 0-1 .45-1 1s.45 1 1 1s1-.45 1-1s-.45-1-1-1m-4 4V5H8v12h12V5h-2v2z"
|
||||
/>
|
||||
</svg>
|
||||
</Button>
|
||||
<code className="language-tsx">{state ?? null}</code>
|
||||
</pre>
|
||||
);
|
||||
}
|
||||
<svg
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
width="1.2em"
|
||||
height="1.2em"
|
||||
viewBox="0 0 24 24"
|
||||
>
|
||||
<path
|
||||
fill="currentColor"
|
||||
d="M4 7v14h14v2H4c-1.1 0-2-.9-2-2V7zm16-4c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H8c-1.1 0-2-.9-2-2V5c0-1.1.9-2 2-2h3.18C11.6 1.84 12.7 1 14 1s2.4.84 2.82 2zm-6 0c-.55 0-1 .45-1 1s.45 1 1 1s1-.45 1-1s-.45-1-1-1m-4 4V5H8v12h12V5h-2v2z"
|
||||
/>
|
||||
</svg>
|
||||
</Button>
|
||||
<code className="language-tsx" ref={ref}>
|
||||
{state ?? null}
|
||||
</code>
|
||||
</pre>
|
||||
);
|
||||
}
|
||||
);
|
||||
|
Loading…
x
Reference in New Issue
Block a user