fix: add wrapper outside of LoadedCode to safely add clipboard button

This commit is contained in:
p-sw 2024-06-03 14:20:54 +09:00
parent 59d6e9aaa0
commit e4ff38a653

View File

@ -31,17 +31,11 @@ export const LoadedCode = forwardRef<
}, [state]); }, [state]);
return ( return (
<pre <div className={twMerge("relative", className)}>
className={twMerge(
`relative hljs w-full h-64 rounded-lg ${!state ? "animate-pulse" : ""}`,
className
)}
ref={ref}
>
<Button <Button
preset="default" preset="default"
size="icon" size="icon"
className="sticky float-right top-0 text-black dark:text-white" className="absolute top-4 right-4 text-black dark:text-white z-10"
onClick={() => { onClick={() => {
navigator.clipboard.writeText(state ?? ""); navigator.clipboard.writeText(state ?? "");
toast({ toast({
@ -63,9 +57,16 @@ export const LoadedCode = forwardRef<
/> />
</svg> </svg>
</Button> </Button>
<pre
className={`relative hljs w-full h-64 rounded-lg ${
!state ? "animate-pulse" : ""
}`}
ref={ref}
>
<code className="language-tsx" ref={outRef}> <code className="language-tsx" ref={outRef}>
{state ?? null} {state ?? null}
</code> </code>
</pre> </pre>
</div>
); );
}); });