feat(docs): apply playground to Dialog
This commit is contained in:
parent
24260fe375
commit
14a7487c2e
@ -8,25 +8,13 @@ import {
|
|||||||
} from "@/components/LoadedCode";
|
} from "@/components/LoadedCode";
|
||||||
import { DialogDemo } from "./DialogBlocks/Preview";
|
import { DialogDemo } from "./DialogBlocks/Preview";
|
||||||
import Examples from "./DialogBlocks/Examples";
|
import Examples from "./DialogBlocks/Examples";
|
||||||
|
import Playground from "./DialogBlocks/Playground";
|
||||||
|
|
||||||
# Dialog
|
# Dialog
|
||||||
|
|
||||||
A modal window that prompts the user to take an action or provides critical information.
|
A modal window that prompts the user to take an action or provides critical information.
|
||||||
|
|
||||||
<TabProvider defaultName="preview">
|
<Playground />
|
||||||
<TabList>
|
|
||||||
<TabTrigger name="preview">Preview</TabTrigger>
|
|
||||||
<TabTrigger name="code">Code</TabTrigger>
|
|
||||||
</TabList>
|
|
||||||
<TabContent name="preview">
|
|
||||||
<Story layout="centered">
|
|
||||||
<DialogDemo />
|
|
||||||
</Story>
|
|
||||||
</TabContent>
|
|
||||||
<TabContent name="code">
|
|
||||||
<LoadedCode from={GITHUB_COMP_PREVIEW("Dialog")} />
|
|
||||||
</TabContent>
|
|
||||||
</TabProvider>
|
|
||||||
|
|
||||||
## Installation
|
## Installation
|
||||||
|
|
||||||
|
27
src/docs/components/DialogBlocks/Playground.tsx
Normal file
27
src/docs/components/DialogBlocks/Playground.tsx
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
import type { TEMPLATE } from "@/components/LoadedCode";
|
||||||
|
import { usePgProps } from "@/components/PgHooks";
|
||||||
|
import { PlaygroundLayout } from "@/components/Playground";
|
||||||
|
import { DialogDemo, type DialogDemoPlaygroundProps } from "./Preview";
|
||||||
|
|
||||||
|
interface TemplateProps extends TEMPLATE, DialogDemoPlaygroundProps {}
|
||||||
|
|
||||||
|
export default function DialogPlayground() {
|
||||||
|
const [props, control] = usePgProps<TemplateProps>({
|
||||||
|
DialogOverlayProps: {
|
||||||
|
closeOnClick: {
|
||||||
|
type: "boolean",
|
||||||
|
value: false,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
return (
|
||||||
|
<PlaygroundLayout
|
||||||
|
compName="Dialog"
|
||||||
|
control={control}
|
||||||
|
props={props}
|
||||||
|
>
|
||||||
|
<DialogDemo {...props} />
|
||||||
|
</PlaygroundLayout>
|
||||||
|
);
|
||||||
|
}
|
@ -10,15 +10,25 @@ import {
|
|||||||
DialogTitle,
|
DialogTitle,
|
||||||
DialogTrigger,
|
DialogTrigger,
|
||||||
} from "@pswui/Dialog";
|
} from "@pswui/Dialog";
|
||||||
|
/* remove */
|
||||||
|
export interface DialogDemoPlaygroundProps {
|
||||||
|
DialogOverlayProps: {
|
||||||
|
closeOnClick: boolean;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
/* end */
|
||||||
|
/* replace */
|
||||||
|
export function DialogDemo({ DialogOverlayProps }: DialogDemoPlaygroundProps) {
|
||||||
|
/* with
|
||||||
export function DialogDemo() {
|
export function DialogDemo() {
|
||||||
|
*/
|
||||||
return (
|
return (
|
||||||
<DialogRoot>
|
<DialogRoot>
|
||||||
<DialogTrigger>
|
<DialogTrigger>
|
||||||
<Button preset="default">Open Dialog</Button>
|
<Button preset="default">Open Dialog</Button>
|
||||||
</DialogTrigger>
|
</DialogTrigger>
|
||||||
<DialogOverlay>
|
<DialogOverlay closeOnClick={DialogOverlayProps.closeOnClick}>
|
||||||
<DialogContent size={"fullMd"}>
|
<DialogContent>
|
||||||
<DialogHeader>
|
<DialogHeader>
|
||||||
<DialogTitle>Dialog Title</DialogTitle>
|
<DialogTitle>Dialog Title</DialogTitle>
|
||||||
<DialogSubtitle>Dialog Subtitle</DialogSubtitle>
|
<DialogSubtitle>Dialog Subtitle</DialogSubtitle>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user