'use client'; import { Pressable, StyleSheet, type GestureResponderEvent } from 'react-native'; import { useMenuRootContext } from '../root/MenuRootContext'; import { useRenderElement } from '../../use-render/useRenderElement'; import type { ZestUIComponentProps } from '../../types'; import { createChangeEventDetails } from '../../utils/createChangeEventDetails'; import { REASONS } from '../../utils/reasons'; import { useStoreState } from '../../store/ReactStore'; /** * A backdrop for the menu, and the surface that dismisses it. * Renders a ``. */ export function MenuBackdrop(componentProps: MenuBackdrop.Props) { const { render, className, style, ref, ...elementProps } = componentProps; const store = useMenuRootContext(); const open = useStoreState(store, 'open'); const disablePointerDismissal = useStoreState(store, 'disablePointerDismissal'); const state: MenuBackdropState = { open }; return useRenderElement(Pressable, componentProps, { state, ref, props: [ { style: StyleSheet.absoluteFill, onPress(event: GestureResponderEvent) { if (disablePointerDismissal) { return; } store.setOpen(false, createChangeEventDetails(REASONS.outsidePress, event)); }, }, elementProps, ], }); } export interface MenuBackdropState { open: boolean; } export interface MenuBackdropProps extends ZestUIComponentProps {} export namespace MenuBackdrop { export type State = MenuBackdropState; export type Props = MenuBackdropProps; }