From 9070bc34241683b1ed6fe4240050fad8d7dd3da1 Mon Sep 17 00:00:00 2001 From: p-sw Date: Fri, 12 Jul 2024 04:10:55 +0900 Subject: [PATCH] feat(docs/popover-playground): apply playground features --- .../components/PopoverBlocks/Playground.tsx | 347 +++--------------- 1 file changed, 48 insertions(+), 299 deletions(-) diff --git a/src/docs/components/PopoverBlocks/Playground.tsx b/src/docs/components/PopoverBlocks/Playground.tsx index dd299cd..9391cde 100644 --- a/src/docs/components/PopoverBlocks/Playground.tsx +++ b/src/docs/components/PopoverBlocks/Playground.tsx @@ -1,25 +1,54 @@ -import { GITHUB_COMP_PREVIEW, LoadedCode } from "@/components/LoadedCode.tsx"; +import { + GITHUB_COMP_PREVIEW, + LoadedCode, + type TEMPLATE, +} from "@/components/LoadedCode.tsx"; +import { usePgProps } from "@/components/PgHooks.tsx"; +import { PlaygroundControl } from "@/components/Playground.tsx"; import { Story } from "@/components/Story"; -import useMutable from "@/utils/useMutable.ts"; -import { Button } from "@pswui/Button.tsx"; -import { Checkbox } from "@pswui/Checkbox.tsx"; -import { Label } from "@pswui/Label.tsx"; -import { Popover, PopoverContent, PopoverTrigger } from "@pswui/Popover.tsx"; import { TabContent, TabList, TabProvider, TabTrigger } from "@pswui/Tabs"; import { type ControlledPopoverDemoProps, PopoverDemo } from "./Preview.tsx"; +interface TemplateProps extends TEMPLATE, ControlledPopoverDemoProps {} + export default function PopoverPlayground() { - const [props, mutate] = useMutable({ + const [props, control] = usePgProps({ PopoverProps: { - opened: false, + opened: { + type: "boolean", + value: false, + }, }, PopoverContentProps: { - direction: "col", - position: "end", - anchor: "middle", - align: "middle", - offset: "md", - className: "", + direction: { + type: "select", + options: ["col", "row"], + value: "col", + }, + position: { + type: "select", + options: ["start", "end"], + value: "end", + }, + anchor: { + type: "select", + options: ["start", "middle", "end"], + value: "middle", + }, + align: { + type: "select", + options: ["start", "middle", "end"], + value: "middle", + }, + offset: { + type: "select", + options: ["sm", "md", "lg"], + value: "md", + }, + className: { + type: "string", + value: "", + }, }, }); @@ -36,293 +65,13 @@ export default function PopoverPlayground() { - + -

Controls

-
- - - - - - -
+ ); }