feat: update playground components to support number prop

This commit is contained in:
p-sw 2024-08-04 14:58:42 +09:00
parent cf77c6908b
commit da1a53ba29
3 changed files with 4 additions and 3 deletions

View File

@ -31,7 +31,7 @@ export const GITHUB_STORY = (componentName: string, storyName: string) =>
export type TEMPLATE = Record<
string,
Record<string, string | boolean | undefined>
Record<string, string | boolean | number | undefined>
>;
const TEMPLATE_REMOVE_REGEX = /\/\*\s*remove\s*\*\/(.|\n)*?\/\*\s*end\s*\*\//g;

View File

@ -19,7 +19,7 @@ export function usePgProps<T extends TEMPLATE>(
for (const [propKey, propMeta] of Object.entries(prop)) {
pre[propKey] = {
...propMeta,
onChange(value: string | boolean) {
onChange(value: string | number | boolean) {
console.log(`mutating ${componentName}/${propKey}`);
mutate((state) => {
state[componentName][propKey].value = value;

View File

@ -15,6 +15,7 @@ export type Template = Record<
| { type: "boolean"; value: boolean; disabled?: boolean }
| { type: "select"; options: string[]; value: string; disabled?: boolean }
| { type: "string"; value: string; disabled?: boolean }
| { type: "number"; value: number; disabled?: boolean }
>
>;
@ -76,7 +77,7 @@ export function PlaygroundControl<T extends ControlTemplate>(props: {
{Object.entries(propEntries).map(([propName, propMeta]) => (
<div
key={componentName + propName}
className="flex flex-row justify-between items-center w-full gap-2"
className="flex flex-col md:flex-row justify-between md:items-center w-full *:w-full md:*:w-auto gap-2"
>
<Label
direction="horizontal"