diff --git a/packages/react/src/docs/components/Dialog.mdx b/packages/react/src/docs/components/Dialog.mdx index 52d83d8..8e7f3e9 100644 --- a/packages/react/src/docs/components/Dialog.mdx +++ b/packages/react/src/docs/components/Dialog.mdx @@ -1,7 +1,7 @@ import { TabProvider, TabTrigger, TabContent, TabList } from "@components/Tabs"; import { Button } from "@components/Button"; import { Story } from "@/components/Story"; -import { LoadedCode } from "@/components/LoadedCode"; +import { LoadedCode, GITHUB } from "@/components/LoadedCode"; import { DialogClose, DialogContent, @@ -19,7 +19,8 @@ import { import { useToast, } from "@components/Toast"; - +import { DialogDemo } from "./DialogBlocks/Preview"; +import Examples from "./DialogBlocks/Examples"; # Dialog A modal window that prompts the user to take an action or provides critical information. @@ -31,74 +32,11 @@ A modal window that prompts the user to take an action or provides critical info - - - - - - - - Dialog Title - Dialog Subtitle - - Laborum non adipisicing enim enim culpa esse anim esse consequat Lorem incididunt. - Enim mollit laborum sunt cillum voluptate est officia nostrud non consequat adipisicing - cupidatat aliquip magna. Voluptate nisi cupidatat qui nisi in pariatur. Sint consequat - labore pariatur mollit sint nostrud tempor commodo pariatur ea laboris. - - - - - - - - + - ```tsx - import { - DialogRoot, - DialogTrigger, - DialogOverlay, - DialogContent, - DialogHeader, - DialogTitle, - DialogSubtitle, - DialogFooter, - DialogClose, - } from "@components/Dialog"; - import { Button } from "@components/Button"; - - export function DialogDemo() { - return ( - - - - - - - - Dialog Title - Dialog Subtitle - -

- Laborum non adipisicing enim enim culpa esse anim esse consequat Lorem incididunt. - Enim mollit laborum sunt cillum voluptate est officia nostrud non consequat adipisicing - cupidatat aliquip magna. Voluptate nisi cupidatat qui nisi in pariatur. Sint consequat - labore pariatur mollit sint nostrud tempor commodo pariatur ea laboris. -

- - - - - -
-
-
- ) - } - ``` +
@@ -107,7 +45,7 @@ A modal window that prompts the user to take an action or provides critical info 1. Create a new file `Dialog.tsx` in your component folder. 2. Copy and paste the following code into the file. - + ## Usage @@ -230,67 +168,11 @@ import { - - - - - - - - Dialog Title - Dialog Subtitle - - This is a dialog. You can put the information you want to show. - - - - - - - - + - ```tsx - import { - DialogRoot, - DialogTrigger, - DialogOverlay, - DialogContent, - DialogHeader, - DialogTitle, - DialogSubtitle, - DialogFooter, - DialogClose, - } from "@components/Dialog"; - - export function DialogDemo() { - return ( - - - - - - - - Dialog Title - Dialog Subtitle - -

- This is a dialog. You can put the information you want to show. -

- - - - - -
-
-
- ); - } - ``` +
@@ -303,152 +185,11 @@ import { - - - - - - - - Delete Item - Are you sure you want to delete this item? - -
-
    -
  • This action will delete the item, and related data
  • -
  • This action cannot be undone
  • -
-
- - {(() => { - const {toast} = useToast(); - return ( - <> - - - - - - - - ) - })()} - -
-
-
+
- ```tsx - import { - DialogRoot, - DialogTrigger, - DialogOverlay, - DialogContent, - DialogHeader, - DialogTitle, - DialogSubtitle, - DialogFooter, - DialogClose, - } from "@components/Dialog"; - import { Button } from "@components/Button"; - import { useToast } from "@components/Toast"; - - function DialogDemo() { - const { toast } = useToast(); - - return ( - - - - - - - - Delete Item - Are you sure you want to delete this item? - -
-
    -
  • This action will delete the item, and related data
  • -
  • This action cannot be undone
  • -
-
- - - - - - - - -
-
-
- ) - } - ``` +
diff --git a/packages/react/src/docs/components/DialogBlocks/Examples/BasicInformationalDialog.tsx b/packages/react/src/docs/components/DialogBlocks/Examples/BasicInformationalDialog.tsx new file mode 100644 index 0000000..5051e08 --- /dev/null +++ b/packages/react/src/docs/components/DialogBlocks/Examples/BasicInformationalDialog.tsx @@ -0,0 +1,36 @@ +import { Button } from "@components/Button"; +import { + DialogRoot, + DialogTrigger, + DialogOverlay, + DialogContent, + DialogHeader, + DialogTitle, + DialogSubtitle, + DialogFooter, + DialogClose, +} from "@components/Dialog"; + +export function BasicInformationalDialog() { + return ( + + + + + + + + Dialog Title + Dialog Subtitle + +

This is a dialog. You can put the information you want to show.

+ + + + + +
+
+
+ ); +} diff --git a/packages/react/src/docs/components/DialogBlocks/Examples/DeletingItem.tsx b/packages/react/src/docs/components/DialogBlocks/Examples/DeletingItem.tsx new file mode 100644 index 0000000..1c58385 --- /dev/null +++ b/packages/react/src/docs/components/DialogBlocks/Examples/DeletingItem.tsx @@ -0,0 +1,79 @@ +import { + DialogRoot, + DialogTrigger, + DialogOverlay, + DialogContent, + DialogHeader, + DialogTitle, + DialogSubtitle, + DialogFooter, + DialogClose, +} from "@components/Dialog"; +import { Button } from "@components/Button"; +import { useToast } from "@components/Toast"; + +export function DeletingItem() { + const { toast } = useToast(); + + return ( + + + + + + + + Delete Item + + Are you sure you want to delete this item? + + +
+
    +
  • This action will delete the item, and related data
  • +
  • This action cannot be undone
  • +
+
+ + + + + + + + +
+
+
+ ); +} diff --git a/packages/react/src/docs/components/DialogBlocks/Examples/index.ts b/packages/react/src/docs/components/DialogBlocks/Examples/index.ts new file mode 100644 index 0000000..1422de3 --- /dev/null +++ b/packages/react/src/docs/components/DialogBlocks/Examples/index.ts @@ -0,0 +1,8 @@ +import { BasicInformationalDialog } from "./BasicInformationalDialog"; +import { DeletingItem } from "./DeletingItem"; + +export default { + BasicInformationalDialog, + DeletingItem, +} + diff --git a/packages/react/src/docs/components/DialogBlocks/Preview.tsx b/packages/react/src/docs/components/DialogBlocks/Preview.tsx new file mode 100644 index 0000000..3392a50 --- /dev/null +++ b/packages/react/src/docs/components/DialogBlocks/Preview.tsx @@ -0,0 +1,42 @@ +import { + DialogRoot, + DialogTrigger, + DialogOverlay, + DialogContent, + DialogHeader, + DialogTitle, + DialogSubtitle, + DialogFooter, + DialogClose, +} from "@components/Dialog"; +import { Button } from "@components/Button"; + +export function DialogDemo() { + return ( + + + + + + + + Dialog Title + Dialog Subtitle + +

+ Laborum non adipisicing enim enim culpa esse anim esse consequat + Lorem incididunt. Enim mollit laborum sunt cillum voluptate est + officia nostrud non consequat adipisicing cupidatat aliquip magna. + Voluptate nisi cupidatat qui nisi in pariatur. Sint consequat labore + pariatur mollit sint nostrud tempor commodo pariatur ea laboris. +

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