UNPKG

lucid-ui

Version:

A UI component library from AppNexus.

225 lines (169 loc) 12 kB
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); } import _every from "lodash/every"; import _keys from "lodash/keys"; import _has from "lodash/has"; import _get from "lodash/get"; import _map from "lodash/map"; function _toConsumableArray(arr) { return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _unsupportedIterableToArray(arr) || _nonIterableSpread(); } function _nonIterableSpread() { throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } function _arrayWithoutHoles(arr) { if (Array.isArray(arr)) return _arrayLikeToArray(arr); } function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); } function _toArray(arr) { return _arrayWithHoles(arr) || _iterableToArray(arr) || _unsupportedIterableToArray(arr) || _nonIterableRest(); } function _nonIterableRest() { throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); } function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; } function _iterableToArray(iter) { if (typeof Symbol !== "undefined" && Symbol.iterator in Object(iter)) return Array.from(iter); } function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; } function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; } function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = 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 _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 _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; } function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } return _assertThisInitialized(self); } function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; } function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } } function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); } 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; } import React from 'react'; import PropTypes from 'react-peek/prop-types'; import { lucidClassNames } from '../../util/style-helpers'; import { filterTypes, getFirst, omitProps } from '../../util/component-types'; import { buildModernHybridComponent } from '../../util/state-management'; import { Button } from '../Button/Button'; import { ButtonGroupDumb as ButtonGroup } from '../ButtonGroup/ButtonGroup'; import ChevronIcon from '../Icon/ChevronIcon/ChevronIcon'; import { DropMenuDumb as DropMenu } from '../DropMenu/DropMenu'; import * as reducers from './SplitButton.reducers'; var cx = lucidClassNames.bind('&-SplitButton'); var bool = PropTypes.bool, func = PropTypes.func, node = PropTypes.node, oneOf = PropTypes.oneOf, shape = PropTypes.shape, string = PropTypes.string; /** SplitButton Button Child Component */ var ButtonChild = function ButtonChild(_props) { return null; }; ButtonChild.displayName = 'SplitButton.ButtonChild'; ButtonChild.peek = { description: "\n\t\tOne of many potential `Button`s to render in this\n\t\t`SplitButton`. The first `Button` will be used as the Primary\n\t\tbutton, while all others will be rendered within the `DropMenu`\n\t\tbelow.\n\t" }; ButtonChild.propTypes = { children: node, isDisabled: bool, onClick: func }; var SplitButton = /*#__PURE__*/function (_React$Component) { _inherits(SplitButton, _React$Component); var _super = _createSuper(SplitButton); function SplitButton() { var _this; _classCallCheck(this, SplitButton); for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) { args[_key] = arguments[_key]; } _this = _super.call.apply(_super, [this].concat(args)); _defineProperty(_assertThisInitialized(_this), "handleSelect", function (optionIndex, _ref) { var event = _ref.event; var buttonChildProps = _map(filterTypes(_this.props.children, SplitButton.Button), 'props'); if (optionIndex !== null) { _this.handleButtonClick(buttonChildProps[optionIndex + 1], event); } }); _defineProperty(_assertThisInitialized(_this), "handleClick", function (_ref2) { var event = _ref2.event; var clickedButtonProps = _get(getFirst(_this.props, SplitButton.Button), 'props'); // Stop propagation to prevent this `Click` from expanding the `DropMenu` event.stopPropagation(); _this.handleButtonClick(clickedButtonProps, event); }); _defineProperty(_assertThisInitialized(_this), "handleButtonClick", function (buttonProps, event) { var onCollapse = _this.props.DropMenu.onCollapse; onCollapse && onCollapse({ props: _this.props.DropMenu, event: event }); if (_has(buttonProps, 'onClick')) { buttonProps.onClick({ event: event, props: buttonProps }); } }); return _this; } _createClass(SplitButton, [{ key: "render", value: function render() { var _this$props = this.props, className = _this$props.className, kind = _this$props.kind, direction = _this$props.direction, type = _this$props.type, size = _this$props.size, dropMenuProps = _this$props.DropMenu, passThroughs = _objectWithoutProperties(_this$props, ["className", "kind", "direction", "type", "size", "DropMenu"]); var isExpanded = dropMenuProps.isExpanded; var _map2 = _map(filterTypes(this.props.children, SplitButton.Button), 'props'), _map3 = _toArray(_map2), primaryButtonProps = _map3[0], buttonChildProps = _map3.slice(1); return /*#__PURE__*/React.createElement(DropMenu, _extends({}, dropMenuProps, omitProps(passThroughs, undefined, _keys(DropMenu.Option.propTypes)), { direction: direction, className: cx('&', className), onSelect: this.handleSelect }), /*#__PURE__*/React.createElement(DropMenu.Control, null, /*#__PURE__*/React.createElement(ButtonGroup, null, /*#__PURE__*/React.createElement(Button, _extends({}, primaryButtonProps, { className: cx('&-Button-primary', _get(primaryButtonProps, 'className')), kind: kind, type: type, size: size, onClick: this.handleClick })), /*#__PURE__*/React.createElement(Button, { className: cx('&-Button-drop'), size: size, hasOnlyIcon: true, isActive: isExpanded, kind: kind, isDisabled: _every([primaryButtonProps].concat(_toConsumableArray(buttonChildProps)), 'isDisabled') }, /*#__PURE__*/React.createElement(ChevronIcon, { className: cx('&-ChevronIcon'), direction: direction, size: 10 })))), _map(buttonChildProps, function (buttonChildProp, index) { return /*#__PURE__*/React.createElement(DropMenu.Option, _extends({}, buttonChildProp, { key: index })); })); } }]); return SplitButton; }(React.Component); _defineProperty(SplitButton, "displayName", 'SplitButton'); _defineProperty(SplitButton, "Button", ButtonChild); _defineProperty(SplitButton, "peek", { description: "\n\t\t\t`SplitButton` allow you to combine a single main `Button` together\n\t\t\twith a list of additional `Buttons` with actions which will be rendered\n\t\t\twithin a `DropMenu`.\n\t\t", categories: ['controls', 'buttons'], madeFrom: ['Button', 'DropMenu'] }); _defineProperty(SplitButton, "reducers", reducers); _defineProperty(SplitButton, "propTypes", { DropMenu: shape(DropMenu.propTypes), children: node, className: string, direction: oneOf(['up', 'down']), kind: oneOf(['primary', 'danger']), size: oneOf(['short', 'small', 'large']), type: string }); _defineProperty(SplitButton, "defaultProps", { direction: 'down', type: 'button', DropMenu: DropMenu.defaultProps }); export default buildModernHybridComponent(SplitButton, { reducers: reducers }); export { SplitButton as SplitButtonDumb };