@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.
61 lines (60 loc) • 2.06 kB
JavaScript
'use client';
import * as React from 'react';
import { useRefWithInit } from '@base-ui-components/utils/useRefWithInit';
import { useDialogRoot } from "../../dialog/root/useDialogRoot.js";
import { DialogRootContext, useDialogRootContext } from "../../dialog/root/DialogRootContext.js";
import { DialogStore } from "../../dialog/store/DialogStore.js";
import { jsx as _jsx } from "react/jsx-runtime";
/**
* Groups all parts of the alert dialog.
* Doesn’t render its own HTML element.
*
* Documentation: [Base UI Alert Dialog](https://base-ui.com/react/components/alert-dialog)
*/
export function AlertDialogRoot(props) {
const {
children,
open: openProp,
defaultOpen = false,
onOpenChange,
onOpenChangeComplete,
actionsRef,
handle,
triggerId: triggerIdProp,
defaultTriggerId: defaultTriggerIdProp = null
} = props;
const parentDialogRootContext = useDialogRootContext();
const nested = Boolean(parentDialogRootContext);
const store = useRefWithInit(() => {
return handle?.store ?? new DialogStore({
open: openProp ?? defaultOpen,
activeTriggerId: triggerIdProp !== undefined ? triggerIdProp : defaultTriggerIdProp,
modal: true,
disablePointerDismissal: true,
nested,
role: 'alertdialog'
});
}).current;
store.useControlledProp('open', openProp, defaultOpen);
store.useControlledProp('activeTriggerId', triggerIdProp, defaultTriggerIdProp);
store.useSyncedValue('nested', nested);
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
});
}