File

packages/eui/packages/components/eui-popover/directives/eui-popover-arrow-position.directive.ts

Description

Directive that positions an arrow element for a popover relative to its origin element.

This directive calculates and applies the appropriate positioning style to ensure the arrow correctly points to the origin element regardless of the popover's position. It adjusts arrow placement dynamically based on the position strategy ('top', 'bottom', 'left', or 'right') and the dimensions and position of the origin element.

Example :
// Basic usage in an arrow element inside a popover:
<div class="popover-arrow"
     [euiPopoverArrowPosition]="positionAndRect$">
</div>
Example :
// In the component class:
// Position and rect as an Observable
positionAndRect$ = new BehaviorSubject<[EuiPopoverPosition, DOMRect]>(['bottom', originRect]);

// Update when position changes updatePosition(position: EuiPopoverPosition, rect: DOMRect) { this.positionAndRect$.next([position, rect]); }

Implements

OnInit OnDestroy

Metadata

Index

Inputs

Inputs

euiPopoverArrowPosition
Type : Observable<>

Observable that emits a tuple containing the popover position strategy and the DOMRect of the origin element.

The directive uses this information to calculate the appropriate position for the arrow element.

results matching ""

    No results matching ""