@base-ui-components/react
Version:
Base UI is a library of headless ('unstyled') React components and low-level hooks. You gain complete control over your app's CSS and accessibility features.
66 lines (65 loc) • 2.06 kB
JavaScript
'use client';
import * as React from 'react';
import { useRefWithInit } from '@base-ui-components/utils/useRefWithInit';
import { useDialogRoot } from "./useDialogRoot.js";
import { DialogRootContext, useDialogRootContext } from "./DialogRootContext.js";
import { DialogStore } from "../store/DialogStore.js";
import { jsx as _jsx } from "react/jsx-runtime";
/**
* Groups all parts of the dialog.
* Doesn’t render its own HTML element.
*
* Documentation: [Base UI Dialog](https://base-ui.com/react/components/dialog)
*/
export function DialogRoot(props) {
const {
children,
open: openProp,
defaultOpen = false,
onOpenChange,
onOpenChangeComplete,
disablePointerDismissal = false,
modal = true,
actionsRef,
handle,
triggerId: triggerIdProp,
defaultTriggerId: defaultTriggerIdProp = null
} = props;
const parentDialogRootContext = useDialogRootContext(true);
const nested = Boolean(parentDialogRootContext);
const store = useRefWithInit(() => {
return handle?.store ?? new DialogStore({
open: openProp ?? defaultOpen,
activeTriggerId: triggerIdProp !== undefined ? triggerIdProp : defaultTriggerIdProp,
modal,
disablePointerDismissal,
nested
});
}).current;
store.useControlledProp('open', openProp, defaultOpen);
store.useControlledProp('activeTriggerId', triggerIdProp, defaultTriggerIdProp);
store.useSyncedValues({
disablePointerDismissal,
nested,
modal
});
store.useContextCallback('onOpenChange', onOpenChange);
store.useContextCallback('onOpenChangeComplete', onOpenChangeComplete);
const payload = store.useState('payload');
useDialogRoot({
store,
actionsRef,
parentContext: parentDialogRootContext?.store.context,
onOpenChange,
triggerIdProp
});
const contextValue = React.useMemo(() => ({
store
}), [store]);
return /*#__PURE__*/_jsx(DialogRootContext.Provider, {
value: contextValue,
children: typeof children === 'function' ? children({
payload
}) : children
});
}