diff --git a/packages/react/components/Dialog/Component.tsx b/packages/react/components/Dialog/Component.tsx index eddabaa..2695ce3 100644 --- a/packages/react/components/Dialog/Component.tsx +++ b/packages/react/components/Dialog/Component.tsx @@ -4,7 +4,7 @@ import { type VariantProps, vcn, } from "@pswui-lib"; -import React, { type ReactNode, useState } from "react"; +import React, { type ReactNode, useId, useState } from "react"; import ReactDOM from "react-dom"; import { @@ -25,7 +25,10 @@ interface DialogRootProps { } const DialogRoot = ({ children }: DialogRootProps) => { - const state = useState(initialDialogContext); + const state = useState({ + ...initialDialogContext, + ids: { dialog: useId(), title: useId(), description: useId() }, + }); return ( {children} ); @@ -42,15 +45,17 @@ interface DialogTriggerProps { } const DialogTrigger = ({ children }: DialogTriggerProps) => { - const [_, setState] = useDialogContext(); + const [{ ids }, setState] = useDialogContext(); const onClick = () => setState((p) => ({ ...p, opened: true })); - const slotProps = { - onClick, - children, - }; - - return ; + return ( + + {children} + + ); }; /** @@ -80,7 +85,7 @@ interface DialogOverlay const DialogOverlay = React.forwardRef( (props, ref) => { - const [{ opened }, setContext] = useDialogContext(); + const [{ opened, ids }, setContext] = useDialogContext(); const [variantProps, otherPropsCompressed] = resolveDialogOverlayVariant({ ...props, opened, @@ -93,6 +98,7 @@ const DialogOverlay = React.forwardRef( {ReactDOM.createPortal(
{ @@ -144,7 +150,7 @@ interface DialogContentProps const DialogContent = React.forwardRef( (props, ref) => { - const [{ opened }] = useDialogContext(); + const [{ opened, ids }] = useDialogContext(); const [variantProps, otherPropsCompressed] = resolveDialogContentVariant({ ...props, opened, @@ -154,6 +160,9 @@ const DialogContent = React.forwardRef(
{ e.stopPropagation(); @@ -240,26 +249,28 @@ interface DialogTitleProps extends React.ComponentPropsWithoutRef<"h1">, VariantProps {} -const [dialogSubtitleVariant, resolveDialogSubtitleVariant] = vcn({ +const [dialogDescriptionVariant, resolveDialogDescriptionVariant] = vcn({ base: "text-sm opacity-60 font-normal", variants: {}, defaults: {}, }); -interface DialogSubtitleProps +interface DialogDescriptionProps extends React.ComponentPropsWithoutRef<"h2">, - VariantProps {} + VariantProps {} const DialogTitle = React.forwardRef( (props, ref) => { const [variantProps, otherPropsCompressed] = resolveDialogTitleVariant(props); const { children, ...otherPropsExtracted } = otherPropsCompressed; + const [{ ids }] = useDialogContext(); return (

{children}

@@ -268,24 +279,30 @@ const DialogTitle = React.forwardRef( ); DialogTitle.displayName = "DialogTitle"; -const DialogSubtitle = React.forwardRef< +const DialogDescription = React.forwardRef< HTMLHeadingElement, - DialogSubtitleProps + DialogDescriptionProps >((props, ref) => { const [variantProps, otherPropsCompressed] = - resolveDialogSubtitleVariant(props); + resolveDialogDescriptionVariant(props); const { children, ...otherPropsExtracted } = otherPropsCompressed; + const [{ ids }] = useDialogContext(); return (

{children}

); }); -DialogSubtitle.displayName = "DialogSubtitle"; +DialogDescription.displayName = "DialogDescription"; + +// renamed DialogSubtitle -> DialogDescription +// keep DialogSubtitle for backward compatibility +const DialogSubtitle = DialogDescription; /** * ========================= @@ -309,13 +326,13 @@ const DialogFooter = React.forwardRef( resolveDialogFooterVariant(props); const { children, ...otherPropsExtracted } = otherPropsCompressed; return ( -
{children} -
+ ); }, ); @@ -357,6 +374,7 @@ export { DialogHeader, DialogTitle, DialogSubtitle, + DialogDescription, DialogFooter, DialogController, }; diff --git a/packages/react/components/Dialog/Context.ts b/packages/react/components/Dialog/Context.ts index ce48600..44e69f9 100644 --- a/packages/react/components/Dialog/Context.ts +++ b/packages/react/components/Dialog/Context.ts @@ -13,9 +13,14 @@ import { export interface IDialogContext { opened: boolean; + ids: { + dialog: string; + title: string; + description: string; + }; } -export const initialDialogContext: IDialogContext = { opened: false }; +export const initialDialogContext: IDialogContext = { opened: false, id: "" }; export const DialogContext = createContext< [IDialogContext, Dispatch>] >([