diff --git a/packages/react/src/components/LoadedCode.tsx b/packages/react/src/components/LoadedCode.tsx index de7db09..cb429aa 100644 --- a/packages/react/src/components/LoadedCode.tsx +++ b/packages/react/src/components/LoadedCode.tsx @@ -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(); - 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( + ({ from }, outRef) => { + const [state, setState] = useState(); + 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 ( -
-      
-      {state ?? null}
-    
- ); -} + + + + + + {state ?? null} + + + ); + } +);