From 46430bec41b610487c4a6b22ec88db37ecf64c77 Mon Sep 17 00:00:00 2001 From: p-sw Date: Fri, 12 Jul 2024 00:56:36 +0900 Subject: [PATCH] feat(dialog): add dialog controller --- .../react/components/Dialog/Component.tsx | 30 ++++++++++++++++++- 1 file changed, 29 insertions(+), 1 deletion(-) diff --git a/packages/react/components/Dialog/Component.tsx b/packages/react/components/Dialog/Component.tsx index 6332b62..c2825e9 100644 --- a/packages/react/components/Dialog/Component.tsx +++ b/packages/react/components/Dialog/Component.tsx @@ -1,5 +1,5 @@ import { Slot, type VariantProps, vcn } from "@pswui-lib"; -import React, { useState } from "react"; +import React, { type ReactNode, useState } from "react"; import ReactDOM from "react-dom"; import { @@ -402,6 +402,33 @@ const DialogFooter = React.forwardRef( }, ); +interface DialogControllers { + context: IDialogContext; + + setContext: React.Dispatch>; + close: () => void; +} + +interface DialogControllerProps { + children: (controllers: DialogControllers) => ReactNode; +} + +const DialogController = (props: DialogControllerProps) => { + return ( + + {([context, setContext]) => + props.children({ + context, + setContext, + close() { + setContext((p) => ({ ...p, opened: false })); + }, + }) + } + + ); +}; + export { DialogRoot, DialogTrigger, @@ -412,4 +439,5 @@ export { DialogTitle, DialogSubtitle, DialogFooter, + DialogController, };