@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.
132 lines (129 loc) • 5.26 kB
JavaScript
'use client';
import * as React from 'react';
import { useStableCallback } from '@base-ui-components/utils/useStableCallback';
import { useScrollLock } from '@base-ui-components/utils/useScrollLock';
import { useDismiss, useInteractions, useRole, useSyncedFloatingRootContext } from "../../floating-ui-react/index.js";
import { contains, getTarget } from "../../floating-ui-react/utils.js";
import { useOpenInteractionType } from "../../utils/useOpenInteractionType.js";
import { createChangeEventDetails } from "../../utils/createBaseUIEventDetails.js";
import { REASONS } from "../../utils/reasons.js";
import { useImplicitActiveTrigger, useOpenStateTransitions } from "../../utils/popups/index.js";
export function useDialogRoot(params) {
const {
store,
parentContext,
actionsRef
} = params;
const open = store.useState('open');
const disablePointerDismissal = store.useState('disablePointerDismissal');
const modal = store.useState('modal');
const popupElement = store.useState('popupElement');
const {
openMethod,
triggerProps,
reset: resetOpenInteractionType
} = useOpenInteractionType(open);
useImplicitActiveTrigger(store);
const {
forceUnmount
} = useOpenStateTransitions(open, store, () => {
resetOpenInteractionType();
});
const createDialogEventDetails = useStableCallback(reason => {
const details = createChangeEventDetails(reason);
details.preventUnmountOnClose = () => {
store.set('preventUnmountingOnClose', true);
};
return details;
});
const handleImperativeClose = React.useCallback(() => {
store.setOpen(false, createDialogEventDetails(REASONS.imperativeAction));
}, [store, createDialogEventDetails]);
React.useImperativeHandle(actionsRef, () => ({
unmount: forceUnmount,
close: handleImperativeClose
}), [forceUnmount, handleImperativeClose]);
const floatingRootContext = useSyncedFloatingRootContext({
popupStore: store,
onOpenChange: store.setOpen,
treatPopupAsFloatingElement: true,
noEmit: true
});
const [ownNestedOpenDialogs, setOwnNestedOpenDialogs] = React.useState(0);
const isTopmost = ownNestedOpenDialogs === 0;
const role = useRole(floatingRootContext);
const dismiss = useDismiss(floatingRootContext, {
outsidePressEvent() {
if (store.context.internalBackdropRef.current || store.context.backdropRef.current) {
return 'intentional';
}
// Ensure `aria-hidden` on outside elements is removed immediately
// on outside press when trapping focus.
return {
mouse: modal === 'trap-focus' ? 'sloppy' : 'intentional',
touch: 'sloppy'
};
},
outsidePress(event) {
// For mouse events, only accept left button (button 0)
// For touch events, a single touch is equivalent to left button
if ('button' in event && event.button !== 0) {
return false;
}
if ('touches' in event && event.touches.length !== 1) {
return false;
}
const target = getTarget(event);
if (isTopmost && !disablePointerDismissal) {
const eventTarget = target;
// Only close if the click occurred on the dialog's owning backdrop.
// This supports multiple modal dialogs that aren't nested in the React tree:
// https://github.com/mui/base-ui/issues/1320
if (modal) {
return store.context.internalBackdropRef.current || store.context.backdropRef.current ? store.context.internalBackdropRef.current === eventTarget || store.context.backdropRef.current === eventTarget || contains(eventTarget, popupElement) && !eventTarget?.hasAttribute('data-base-ui-portal') : true;
}
return true;
}
return false;
},
escapeKey: isTopmost
});
useScrollLock(open && modal === true, popupElement);
const {
getReferenceProps,
getFloatingProps,
getTriggerProps
} = useInteractions([role, dismiss]);
// Listen for nested open/close events on this store to maintain the count
store.useContextCallback('onNestedDialogOpen', ownChildrenCount => {
setOwnNestedOpenDialogs(ownChildrenCount + 1);
});
store.useContextCallback('onNestedDialogClose', () => {
setOwnNestedOpenDialogs(0);
});
// Notify parent of our open/close state using parent callbacks, if any
React.useEffect(() => {
if (parentContext?.onNestedDialogOpen && open) {
parentContext.onNestedDialogOpen(ownNestedOpenDialogs);
}
if (parentContext?.onNestedDialogClose && !open) {
parentContext.onNestedDialogClose();
}
return () => {
if (parentContext?.onNestedDialogClose && open) {
parentContext.onNestedDialogClose();
}
};
}, [open, parentContext, ownNestedOpenDialogs]);
const activeTriggerProps = React.useMemo(() => getReferenceProps(triggerProps), [getReferenceProps, triggerProps]);
const inactiveTriggerProps = React.useMemo(() => getTriggerProps(triggerProps), [getTriggerProps, triggerProps]);
const popupProps = React.useMemo(() => getFloatingProps(), [getFloatingProps]);
store.useSyncedValues({
openMethod,
activeTriggerProps,
inactiveTriggerProps,
popupProps,
floatingRootContext,
nestedOpenDialogCount: ownNestedOpenDialogs
});
}