FezVrasta/popper.js

View on GitHub
packages/vue/src/arrow.ts

Summary

Maintainability
A
0 mins
Test Coverage
import type {Middleware} from '@floating-ui/dom';
import {arrow as apply} from '@floating-ui/dom';
import {unref} from 'vue-demi';

import type {ArrowOptions} from './types';
import {unwrapElement} from './utils/unwrapElement';

/**
 * Positions an inner element of the floating element such that it is centered to the reference element.
 * @param options The arrow options.
 * @see https://floating-ui.com/docs/arrow
 */
export function arrow(options: ArrowOptions): Middleware {
  return {
    name: 'arrow',
    options,
    fn(args) {
      const element = unwrapElement(unref(options.element));

      if (element == null) {
        return {};
      }

      return apply({element, padding: options.padding}).fn(args);
    },
  };
}