fix: remove re-highlight warning messages

This commit is contained in:
p-sw 2024-06-02 08:35:23 +09:00
parent af147ab0f3
commit c978a54bab

View File

@ -1,10 +1,13 @@
import { useEffect, useState } from "react"; import { useRef, useEffect, useState, forwardRef } from "react";
import hljs from "highlight.js"; import hljs from "highlight.js";
import { Button } from "@components/Button"; import { Button } from "@components/Button";
import { useToast } from "@components/Toast"; import { useToast } from "@components/Toast";
import { escapeHtml } from "@/utils/escapeHtml"; import { escapeHtml } from "@/utils/escapeHtml";
export function LoadedCode({ from }: { from: string }) { export const GITHUB = "https://raw.githubusercontent.com/p-sw/ui/main/";
export const LoadedCode = forwardRef<HTMLPreElement, { from: string }>(
({ from }, outRef) => {
const [state, setState] = useState<string | undefined | null>(); const [state, setState] = useState<string | undefined | null>();
const { toast } = useToast(); const { toast } = useToast();
@ -16,9 +19,11 @@ export function LoadedCode({ from }: { from: string }) {
})(); })();
}, [from]); }, [from]);
const ref = useRef<HTMLElement | null>(null);
useEffect(() => { useEffect(() => {
if (state) { if (ref.current && !ref.current.dataset.highlighted) {
hljs.highlightAll(); hljs.highlightElement(ref.current);
} }
}, [state]); }, [state]);
@ -27,6 +32,7 @@ export function LoadedCode({ from }: { from: string }) {
className={`relative hljs w-full h-64 rounded-lg ${ className={`relative hljs w-full h-64 rounded-lg ${
!state ? "animate-pulse" : "" !state ? "animate-pulse" : ""
}`} }`}
ref={outRef}
> >
<Button <Button
preset="default" preset="default"
@ -53,7 +59,10 @@ export function LoadedCode({ from }: { from: string }) {
/> />
</svg> </svg>
</Button> </Button>
<code className="language-tsx">{state ?? null}</code> <code className="language-tsx" ref={ref}>
{state ?? null}
</code>
</pre> </pre>
); );
} }
);