57 lines
1.8 KiB
JavaScript
Executable File
57 lines
1.8 KiB
JavaScript
Executable File
"use client";
|
|
|
|
import classNames from 'classnames';
|
|
import * as React from 'react';
|
|
import { useBootstrapPrefix, useIsRTL } from './ThemeProvider';
|
|
import PopoverHeader from './PopoverHeader';
|
|
import PopoverBody from './PopoverBody';
|
|
import { getOverlayDirection } from './helpers';
|
|
import getInitialPopperStyles from './getInitialPopperStyles';
|
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
import { jsxs as _jsxs } from "react/jsx-runtime";
|
|
const Popover = /*#__PURE__*/React.forwardRef(({
|
|
bsPrefix,
|
|
placement = 'right',
|
|
className,
|
|
style,
|
|
children,
|
|
body,
|
|
arrowProps,
|
|
hasDoneInitialMeasure,
|
|
popper,
|
|
show,
|
|
...props
|
|
}, ref) => {
|
|
const decoratedBsPrefix = useBootstrapPrefix(bsPrefix, 'popover');
|
|
const isRTL = useIsRTL();
|
|
const [primaryPlacement] = (placement == null ? void 0 : placement.split('-')) || [];
|
|
const bsDirection = getOverlayDirection(primaryPlacement, isRTL);
|
|
let computedStyle = style;
|
|
if (show && !hasDoneInitialMeasure) {
|
|
computedStyle = {
|
|
...style,
|
|
...getInitialPopperStyles(popper == null ? void 0 : popper.strategy)
|
|
};
|
|
}
|
|
return /*#__PURE__*/_jsxs("div", {
|
|
ref: ref,
|
|
role: "tooltip",
|
|
style: computedStyle,
|
|
"x-placement": primaryPlacement,
|
|
className: classNames(className, decoratedBsPrefix, primaryPlacement && `bs-popover-${bsDirection}`),
|
|
...props,
|
|
children: [/*#__PURE__*/_jsx("div", {
|
|
className: "popover-arrow",
|
|
...arrowProps
|
|
}), body ? /*#__PURE__*/_jsx(PopoverBody, {
|
|
children: children
|
|
}) : children]
|
|
});
|
|
});
|
|
export default Object.assign(Popover, {
|
|
Header: PopoverHeader,
|
|
Body: PopoverBody,
|
|
// Default popover offset.
|
|
// https://github.com/twbs/bootstrap/blob/5c32767e0e0dbac2d934bcdee03719a65d3f1187/js/src/popover.js#L28
|
|
POPPER_OFFSET: [0, 8]
|
|
}); |