diff --git a/packages/react/components/Dialog.tsx b/packages/react/components/Dialog.tsx index b12764f..f67f1f8 100644 --- a/packages/react/components/Dialog.tsx +++ b/packages/react/components/Dialog.tsx @@ -1,10 +1,5 @@ -import React, { - Dispatch, - MouseEventHandler, - SetStateAction, - useState, -} from "react"; -import { VariantProps, vcn } from "..//shared"; +import React, { Dispatch, SetStateAction, useState } from "react"; +import { MustAsChild, Slot, VariantProps, vcn } from "../shared"; import ReactDOM from "react-dom"; /** @@ -56,20 +51,18 @@ const DialogRoot = ({ children }: DialogRootProps) => { * ========================= */ -interface DialogTriggerProps { - children: Exclude>; -} +interface DialogTriggerProps extends MustAsChild {} const DialogTrigger = ({ children }: DialogTriggerProps) => { const [_, setState] = useDialogContext(); - // const onClick = () => setState((p) => ({ ...p, opened: true })); + const onClick = () => setState((p) => ({ ...p, opened: true })); - const child = React.Children.only(children) as React.ReactElement; - const onClick: MouseEventHandler = (e) => { - child.props.onClick?.(e); - setState((p) => ({ ...p, opened: true })); + const slotProps = { + onClick, + children, }; - return <>{React.cloneElement(child, { onClick })}; + + return ; }; /** @@ -217,22 +210,18 @@ const DialogContent = React.forwardRef( * ========================= */ -interface DialogCloseProps { - children: Exclude>; -} +interface DialogCloseProps extends MustAsChild {} const DialogClose = ({ children }: DialogCloseProps) => { const [_, setState] = useDialogContext(); - // const onClick = () => setState((p) => ({ ...p, opened: false })); + const onClick = () => setState((p) => ({ ...p, opened: false })); - const child = React.Children.only(children) as React.ReactElement; - - const onClick: MouseEventHandler = (e) => { - child.props.onClick?.(e); - setState((p) => ({ ...p, opened: false })); + const slotProps = { + onClick, + children, }; - return <>{React.cloneElement(child, { onClick })}; + return ; }; /**