@talend/react-bootstrap
Version:
Bootstrap 3 components built with React
92 lines • 2.58 kB
JavaScript
import classNames from 'classnames';
import React from 'react';
import PropTypes from 'prop-types';
import isRequiredForA11y from 'prop-types-extra/lib/isRequiredForA11y';
import { bsClass, getClassSet, prefix, splitBsProps } from './utils/bootstrapUtils';
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
const propTypes = {
/**
* An html id attribute, necessary for accessibility
* @type {string}
* @required
*/
id: isRequiredForA11y(PropTypes.oneOfType([PropTypes.string, PropTypes.number])),
/**
* Sets the direction the Popover is positioned towards.
*/
placement: PropTypes.oneOf(['top', 'right', 'bottom', 'left']),
/**
* The "top" position value for the Popover.
*/
positionTop: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
/**
* The "left" position value for the Popover.
*/
positionLeft: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
/**
* The "top" position value for the Popover arrow.
*/
arrowOffsetTop: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
/**
* The "left" position value for the Popover arrow.
*/
arrowOffsetLeft: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
/**
* Title content
*/
title: PropTypes.node
};
const defaultProps = {
placement: 'right'
};
class Popover extends React.Component {
render() {
const {
placement,
positionTop,
positionLeft,
arrowOffsetTop,
arrowOffsetLeft,
title,
className,
style,
children,
...props
} = this.props;
const [bsProps, elementProps] = splitBsProps(props);
const classes = {
...getClassSet(bsProps),
[placement]: true
};
const outerStyle = {
display: 'block',
top: positionTop,
left: positionLeft,
...style
};
const arrowStyle = {
top: arrowOffsetTop,
left: arrowOffsetLeft
};
return /*#__PURE__*/_jsxs("div", {
...elementProps,
role: "tooltip",
className: classNames(className, classes),
style: outerStyle,
children: [/*#__PURE__*/_jsx("div", {
className: "arrow",
style: arrowStyle
}), title && /*#__PURE__*/_jsx("h3", {
className: prefix(bsProps, 'title'),
children: title
}), /*#__PURE__*/_jsx("div", {
className: prefix(bsProps, 'content'),
children: children
})]
});
}
}
Popover.propTypes = propTypes;
Popover.defaultProps = defaultProps;
export default bsClass('popover', Popover);
//# sourceMappingURL=Popover.js.map