UNPKG

react-adminlte-js

Version:
188 lines (165 loc) 7.86 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = exports.Box = void 0; var _react = _interopRequireWildcard(require("react")); var _propTypes = _interopRequireDefault(require("prop-types")); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) { var desc = Object.defineProperty && Object.getOwnPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : {}; if (desc.get || desc.set) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } } newObj.default = obj; return newObj; } } function _typeof(obj) { 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 _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 _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 _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; } var Box = /*#__PURE__*/ function (_Component) { _inherits(Box, _Component); function Box(props) { var _this; _classCallCheck(this, Box); _this = _possibleConstructorReturn(this, _getPrototypeOf(Box).call(this, props)); _this.state = { expanded: props.expanded, dismissed: false }; _this.onExpandClick = _this.onExpandClick.bind(_assertThisInitialized(_assertThisInitialized(_this))); _this.onDismiss = _this.onDismiss.bind(_assertThisInitialized(_assertThisInitialized(_this))); return _this; } _createClass(Box, [{ key: "onDismiss", value: function onDismiss() { var dismissible = this.props.dismissible; if (dismissible) { this.setState(function (prevState) { return { dismissed: !prevState.dismissed }; }); } } }, { key: "onExpandClick", value: function onExpandClick() { var expandable = this.props.expandable; if (expandable) { this.setState(function (prevState) { return { expanded: !prevState.expanded }; }); } } }, { key: "render", value: function render() { var _this$props = this.props, children = _this$props.children, solid = _this$props.solid, color = _this$props.color, title = _this$props.title, expandable = _this$props.expandable, footer = _this$props.footer, loading = _this$props.loading, badge = _this$props.badge, badgeColor = _this$props.badgeColor, badgeMessage = _this$props.badgeMessage, icon = _this$props.icon, dismissible = _this$props.dismissible; var _this$state = this.state, expanded = _this$state.expanded, dismissed = _this$state.dismissed; return !dismissed && _react.default.createElement("div", { className: "box ".concat(solid ? 'box-solid' : '', " ").concat(color ? "box-".concat(color) : '') }, _react.default.createElement("div", { className: "box-header with-border", onClick: this.onExpandClick, onKeyDown: this.onExpandClick, role: "button", tabIndex: 0 }, icon && _react.default.createElement("i", { className: "icon ".concat(icon) }), title && _react.default.createElement("h3", { className: "box-title" }, title), _react.default.createElement("div", { className: "box-tools pull-right", onClick: this.onExpandClick, onKeyDown: this.onExpandClick, role: "button", tabIndex: 0, "data-widget": "collapse" }, badge && _react.default.createElement("span", { "data-toggle": "tooltip", title: badge, className: "badge bg-".concat(badgeColor) }, badgeMessage), expandable && _react.default.createElement("button", { type: "button", className: "btn btn-box-tool", onClick: this.onExpandClick, onKeyDown: this.onExpandClick }, !expanded && _react.default.createElement("i", { className: "fa fa-plus" }), expanded && _react.default.createElement("i", { className: "fa fa-minus" })), dismissible && _react.default.createElement("button", { type: "button", className: "btn btn-box-tool", onClick: this.onDismiss, onKeyDown: this.onDismiss, "data-widget": "remove" }, _react.default.createElement("i", { className: "fa fa-times" })))), _react.default.createElement("div", { className: expanded ? 'box-body' : 'box_body hide' }, children), loading && _react.default.createElement("div", { className: "overlay" }, _react.default.createElement("i", { className: "fa fa-refresh fa-spin" })), footer && _react.default.createElement("div", { className: solid ? "box-footer box-footer-solid ".concat(color) : "box-footer ".concat(color) })); } }]); return Box; }(_react.Component); exports.Box = Box; Box.propTypes = { solid: _propTypes.default.bool, expanded: _propTypes.default.bool, expandable: _propTypes.default.bool, footer: _propTypes.default.bool, loading: _propTypes.default.bool, color: _propTypes.default.string, title: _propTypes.default.string, children: _propTypes.default.node, badge: _propTypes.default.string, badgeColor: _propTypes.default.string, badgeMessage: _propTypes.default.string, icon: _propTypes.default.string, dismissible: _propTypes.default.bool }; Box.defaultProps = { solid: false, footer: true, expanded: true, expandable: true, color: null, title: '', loading: false, children: null, badge: null, badgeColor: 'green', badgeMessage: '', icon: null, dismissible: false }; var _default = { Box: Box }; exports.default = _default;