UNPKG

@bootstrap-styled/v4

Version:

twbs/bootstrap V4 UI Components made with bootstrap-styled. Work with css-in-js, react, styled-components, and Bootstrap Styled utilities.

212 lines (152 loc) 8.67 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = exports.propTypes = exports.defaultProps = void 0; var _react = _interopRequireDefault(require("react")); var _propTypes = _interopRequireDefault(require("prop-types")); var _reactDom = _interopRequireDefault(require("react-dom")); var _tetherFix = _interopRequireDefault(require("tether-fix")); var _lodash = _interopRequireDefault(require("lodash.isfunction")); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); } function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; } function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; } function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; } function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } return _assertThisInitialized(self); } function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); } function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; } function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); } function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); } function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; } var defaultProps = { isOpen: false, tetherRef: null }; exports.defaultProps = defaultProps; var propTypes = { /** * @ignore */ className: _propTypes.default.string, /** Specified node element will be passed as children of `<TetherContent />` component. */ children: _propTypes.default.node, /** Toggles opened CSS display. */ isOpen: _propTypes.default.bool, /** Toggles disabled CSS display. */ disabled: _propTypes.default.bool, /** Call specified function when toggle action is triggered. */ toggle: _propTypes.default.func.isRequired, /** Tether object. Please consult [Tether documentation](http://tether.io/) for more information. */ tether: _propTypes.default.object.isRequired, /** Tether reference. Please consult [Tether documentation](http://tether.io/) for more information. */ tetherRef: _propTypes.default.func, /** Tether style. Please consult [Tether documentation](http://tether.io/) for more information. */ style: _propTypes.default.node }; exports.propTypes = propTypes; var TetherContent = /*#__PURE__*/ function (_React$Component) { _inherits(TetherContent, _React$Component); // eslint-disable-line react/prefer-stateless-function function TetherContent(props) { var _this; _classCallCheck(this, TetherContent); _this = _possibleConstructorReturn(this, _getPrototypeOf(TetherContent).call(this, props)); _defineProperty(_assertThisInitialized(_this), "componentDidMount", function () { _this.handleProps(); }); _defineProperty(_assertThisInitialized(_this), "componentDidUpdate", function (prevProps) { if (_this.props.isOpen !== prevProps.isOpen) { _this.handleProps(); } }); _defineProperty(_assertThisInitialized(_this), "componentWillUnmount", function () { _this.hide(); }); _defineProperty(_assertThisInitialized(_this), "getTarget", function () { var target = _this.props.tether.target; // eslint-disable-line prefer-destructuring if ((0, _lodash.default)(target)) { return target(); } return target; }); _defineProperty(_assertThisInitialized(_this), "getTetherConfig", function () { var config = _objectSpread({}, _this.props.tether); config.element = _this.element; config.target = _this.getTarget(); return config; }); _defineProperty(_assertThisInitialized(_this), "handleDocumentClick", function (e) { var container = _this.element; if (e.target === container || !container.contains(e.target)) { _this.toggle(); } }); _defineProperty(_assertThisInitialized(_this), "handleProps", function () { if (_this.props.isOpen) { _this.show(); } else { _this.hide(); } }); _defineProperty(_assertThisInitialized(_this), "hide", function () { document.removeEventListener('click', _this.handleDocumentClick, true); if (_this.element.parentElement === document.body) { document.body.removeChild(_this.element); } if (_this.tether) { _this.tether.destroy(); _this.tether = null; if (_this.props.tetherRef) { _this.props.tetherRef(_this.tether); } } }); _defineProperty(_assertThisInitialized(_this), "show", function () { document.addEventListener('click', _this.handleDocumentClick, true); _this.element.className = _this.props.className; document.body.appendChild(_this.element); _this.tether = new _tetherFix.default(_this.getTetherConfig()); if (_this.props.tetherRef) { _this.props.tetherRef(_this.tether); } _this.tether.position(); }); _defineProperty(_assertThisInitialized(_this), "toggle", function (e) { if (_this.props.disabled) { return e && e.preventDefault(); } return _this.props.toggle(); }); _defineProperty(_assertThisInitialized(_this), "renderChildren", function () { var _this$props = _this.props, children = _this$props.children, style = _this$props.style; return _react.default.cloneElement(children, { style: style }); }); _this.element = document.createElement('div'); return _this; } _createClass(TetherContent, [{ key: "render", value: function render() { if (!this.props.isOpen) { return null; } return _reactDom.default.createPortal(this.renderChildren(), this.element); } }]); return TetherContent; }(_react.default.Component); _defineProperty(TetherContent, "propTypes", propTypes); _defineProperty(TetherContent, "defaultProps", defaultProps); TetherContent.defaultProps = defaultProps; TetherContent.propTypes = propTypes; var _default = TetherContent; exports.default = _default;