import { Button } from "@pswui/Button"; import { useToast } from "@pswui/Toast"; import { forwardRef, useEffect, useMemo, useState } from "react"; import SyntaxHighlighter from "react-syntax-highlighter"; import { gruvboxDark } from "react-syntax-highlighter/dist/cjs/styles/hljs"; import { twMerge } from "tailwind-merge"; export const GITHUB_UI = "https://raw.githubusercontent.com/pswui/ui/main"; export const GITHUB_DOCS = "https://raw.githubusercontent.com/pswui/docs/main"; export const GITHUB_COMP = (componentName: string) => `${GITHUB_UI}/packages/react/components/${componentName}.tsx`; export const GITHUB_DIR_COMP = (componentName: string, source: string) => `${GITHUB_UI}/packages/react/components/${componentName}/${source}`; export const GITHUB_COMP_PREVIEW = (componentName: string) => `${GITHUB_DOCS}/src/docs/components/${componentName}Blocks/Preview.tsx`; export const GITHUB_STORY = (componentName: string, storyName: string) => `${GITHUB_DOCS}/src/docs/components/${componentName}Blocks/Examples/${storyName}.tsx`; export type TEMPLATE = Record>; export const LoadedCode = ({ from, className, template, }: { from: string; className?: string; template?: TEMPLATE; }) => { const [state, setState] = useState(); const { toast } = useToast(); useEffect(() => { (async () => { const res = await fetch(from); const text = await res.text(); setState(text); })(); }, [from]); const postProcessedCode = useMemo(() => { if (!state) return ""; if (!template) return state; let templatedCode = state; for (const [componentName, componentTemplateProps] of Object.entries( template, )) { for (const [propName, propValue] of Object.entries( componentTemplateProps, )) { const regex = new RegExp( `(<${componentName}\s[^]*)\s${propName}=(\{(true|false|"[^"\n]*"|'[^'\n]*'|\`[^\`\n]*\`)\}|"[^"\n]*"|'[^'\n]*')`, ); templatedCode = templatedCode.replace( regex, typeof propValue === "string" ? `\$1 ${propName}="${propValue}"` : `$1 ${propName}={${propValue}}`, ); } } return templatedCode; }, [state, template]); return (
{postProcessedCode}
); }; export const Code = forwardRef< HTMLDivElement, { children: string; className?: string; language: string } >(({ children, className, language }, ref) => { const { toast } = useToast(); return (
{children}
); });