diff --git a/src/components/LoadedCode.tsx b/src/components/LoadedCode.tsx index 46fa1df..66e547a 100644 --- a/src/components/LoadedCode.tsx +++ b/src/components/LoadedCode.tsx @@ -16,7 +16,10 @@ export const GITHUB_COMP_PREVIEW = (componentName: string) => export const GITHUB_STORY = (componentName: string, storyName: string) => `${GITHUB_DOCS}/src/docs/components/${componentName}Blocks/Examples/${storyName}.tsx`; -export type TEMPLATE = Record>; +export type TEMPLATE = Record< + string, + Record +>; const TEMPLATE_REMOVE_REGEX = /\/\*\s*remove\s*\*\/(.|\n)*?\/\*\s*end\s*\*\//g; const TEMPLATE_REPLACE_REGEX = @@ -54,13 +57,15 @@ export const LoadedCode = forwardRef< componentTemplateProps, )) { const regex = new RegExp( - `(<${componentName.slice(0, componentName.length - 5)}\\b[^>]*)\\s${propName}={${componentName}.${propName}}`, + `(<${componentName.slice(0, componentName.length - 5)}\\b[^>]*?)(\n?\\s+)${propName}={${componentName}.${propName}}`, ); templatedCode = templatedCode.replace( regex, - typeof propValue === "string" - ? `\$1 ${propName}="${propValue}"` - : `$1 ${propName}={${propValue}}`, + typeof propValue === "undefined" + ? "$1" + : typeof propValue === "string" + ? `\$1$2 ${propName}="${propValue}"` + : `$1$2 ${propName}={${propValue}}`, ); } } diff --git a/src/components/PgHooks.tsx b/src/components/PgHooks.tsx index 85e1a35..01577ad 100644 --- a/src/components/PgHooks.tsx +++ b/src/components/PgHooks.tsx @@ -25,8 +25,14 @@ export function usePgProps( state[componentName][propKey].value = value; }); }, + onToggle(v: boolean) { + console.log(`toggling ${componentName}/${propKey}`); + mutate((state) => { + state[componentName][propKey].disabled = v; + }); + }, }; - vals[propKey] = propMeta.value; + vals[propKey] = propMeta.disabled ? undefined : propMeta.value; } controlTemplate[componentName] = pre; diff --git a/src/components/Playground.tsx b/src/components/Playground.tsx index fbccfe1..05603c3 100644 --- a/src/components/Playground.tsx +++ b/src/components/Playground.tsx @@ -9,9 +9,9 @@ export type Template = Record< string, Record< string, - | { type: "boolean"; value: boolean } - | { type: "select"; options: string[]; value: string } - | { type: "string"; value: string } + | { type: "boolean"; value: boolean; disabled?: boolean } + | { type: "select"; options: string[]; value: string; disabled?: boolean } + | { type: "string"; value: string; disabled?: boolean } > >; @@ -22,15 +22,25 @@ export type ControlTemplate = Record< | { type: "boolean"; value: boolean; + disabled?: boolean; onChange: (value: boolean) => void; + onToggle: (v: boolean) => void; } | { type: "select"; options: string[]; value: string; + disabled?: boolean; onChange: (value: string) => void; + onToggle: (v: boolean) => void; + } + | { + type: "string"; + value: string; + disabled?: boolean; + onChange: (value: string) => void; + onToggle: (v: boolean) => void; } - | { type: "string"; value: string; onChange: (value: string) => void } > >; @@ -52,12 +62,26 @@ export function PlaygroundControl(props: { > <{componentName.slice(0, componentName.length - 5)}> {Object.entries(propEntries).map(([propName, propMeta]) => ( - + ))} ))}