// This file is auto-generated by "@aria-ui/cli". Do not edit this file directly. import { registerBlockHandlePositionerElement, type BlockHandlePositionerElement, type BlockHandlePositionerProps as BlockHandlePositionerElementProps } from '@prosekit/web/block-handle'; import { createElement, forwardRef, useCallback, useRef, type ForwardedRef, type ForwardRefExoticComponent, type HTMLAttributes, type RefAttributes, useLayoutEffect } from 'react'; /** Props for the {@link BlockHandlePositioner} React component. */ export interface BlockHandlePositionerProps { /** * The placement of the popover, relative to the hovered block. * * @default "left" */ placement?: BlockHandlePositionerElementProps['placement']; /** * Whether to use the browser [Popover API](https://developer.mozilla.org/en-US/docs/Web/API/Popover_API) * to place the floating element on top of other page content. * * @default false */ hoist?: BlockHandlePositionerElementProps['hoist']; /** * @default false * @hidden */ flip?: BlockHandlePositionerElementProps['flip']; /** * @default false * @hidden */ shift?: BlockHandlePositionerElementProps['shift']; /** * @default true * @hidden */ hide?: BlockHandlePositionerElementProps['hide']; /** * The strategy to use for positioning * * @default "absolute" */ strategy?: BlockHandlePositionerElementProps['strategy']; /** * Options to activate auto-update listeners * * @see https://floating-ui.com/docs/autoUpdate * * @default true */ autoUpdate?: BlockHandlePositionerElementProps['autoUpdate']; /** * The distance between the reference and floating element. * * @default 6 */ offset?: BlockHandlePositionerElementProps['offset']; /** * Whether the floating element can overlap the reference element to keep it * in view. * * @default false */ overlap?: BlockHandlePositionerElementProps['overlap']; /** * Whether to constrain the floating element's width and height to not exceed * the viewport. * * @default false */ fitViewport?: BlockHandlePositionerElementProps['fitViewport']; /** * Whether to constrain the floating element's width so that it matches the * reference element. * * @default false */ sameWidth?: BlockHandlePositionerElementProps['sameWidth']; /** * Whether to constrain the floating element's height so that it matches the * reference element. * * @default false */ sameHeight?: BlockHandlePositionerElementProps['sameHeight']; /** * Whether to improve positioning for inline reference elements that span over * multiple lines. * * @default false */ inline?: BlockHandlePositionerElementProps['inline']; /** * Describes the clipping element(s) or area that overflow will be checked relative to. * Please see https://floating-ui.com/docs/detectoverflow#boundary for more information. * * @default 'clippingAncestors' */ boundary?: BlockHandlePositionerElementProps['boundary']; /** * Describes the root boundary that the element will be checked for overflow relative to. * Please see https://floating-ui.com/docs/detectoverflow#rootboundary for more information. * * @default 'viewport' */ rootBoundary?: BlockHandlePositionerElementProps['rootBoundary']; /** * Describes the virtual padding around the boundary to check for overflow. * Please see https://floating-ui.com/docs/detectoverflow#padding for more information. * * @default 4 */ overflowPadding?: BlockHandlePositionerElementProps['overflowPadding']; /** * The element that will be used to check for overflow. Please see * https://floating-ui.com/docs/detectoverflow#elementcontext for more * information. * * @default 'floating' */ elementContext?: BlockHandlePositionerElementProps['elementContext']; /** * Whether to check the alternate elementContext's boundary. Please see * https://floating-ui.com/docs/detectoverflow#altboundary for more * information. * * @default false */ altBoundary?: BlockHandlePositionerElementProps['altBoundary']; } function BlockHandlePositionerComponent(props: BlockHandlePositionerProps, forwardedRef: ForwardedRef) { registerBlockHandlePositionerElement(); const elementRef = useRef(null); const { altBoundary: p0, autoUpdate: p1, boundary: p2, elementContext: p3, fitViewport: p4, flip: p5, hide: p6, hoist: p7, inline: p8, offset: p9, overflowPadding: p10, overlap: p11, placement: p12, rootBoundary: p13, sameHeight: p14, sameWidth: p15, shift: p16, strategy: p17, ...restProps } = props; useLayoutEffect(() => { const element = elementRef.current as Record | null; if (!element) return; Object.assign(element, { altBoundary: p0, autoUpdate: p1, boundary: p2, elementContext: p3, fitViewport: p4, flip: p5, hide: p6, hoist: p7, inline: p8, offset: p9, overflowPadding: p10, overlap: p11, placement: p12, rootBoundary: p13, sameHeight: p14, sameWidth: p15, shift: p16, strategy: p17 }); }); const mergedRef = useCallback( (element: BlockHandlePositionerElement | null) => { elementRef.current = element; if (typeof forwardedRef === 'function') { forwardedRef(element); } else if (forwardedRef) { forwardedRef.current = element; } }, [forwardedRef], ); return createElement('prosekit-block-handle-positioner', { ...restProps, ref: mergedRef, suppressHydrationWarning: true }); } /** A React component that renders an `prosekit-block-handle-positioner` custom element. */ export const BlockHandlePositioner: ForwardRefExoticComponent & RefAttributes> = /* @__PURE__ */ forwardRef(BlockHandlePositionerComponent);