UNPKG

gsy-component-library

Version:
110 lines (80 loc) 4.46 kB
'use strict'; Object.defineProperty(exports, "__esModule", { value: true }); var _createClass = 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); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }(); var _react = require('react'); var _react2 = _interopRequireDefault(_react); var _propTypes = require('prop-types'); var _propTypes2 = _interopRequireDefault(_propTypes); var _bind = require('classnames/bind'); var _bind2 = _interopRequireDefault(_bind); var _IndicatorItem = require('./IndicatorItem'); var _IndicatorItem2 = _interopRequireDefault(_IndicatorItem); var _icon_plus = require('../../images/icon_plus.svg'); var _icon_plus2 = _interopRequireDefault(_icon_plus); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } function _objectWithoutProperties(obj, keys) { var target = {}; for (var i in obj) { if (keys.indexOf(i) >= 0) continue; if (!Object.prototype.hasOwnProperty.call(obj, i)) continue; target[i] = obj[i]; } return target; } function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; } function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } require('./ProgressIndicator.' + (process.env.NODE_ENV === 'storybook' ? 'scss' : 'css')); var ProgressIndicator = function (_Component) { _inherits(ProgressIndicator, _Component); function ProgressIndicator(props) { _classCallCheck(this, ProgressIndicator); var _this = _possibleConstructorReturn(this, (ProgressIndicator.__proto__ || Object.getPrototypeOf(ProgressIndicator)).call(this, props)); _this.state = { active: _this.props.active }; return _this; } _createClass(ProgressIndicator, [{ key: 'UNSAFE_componentWillReceiveProps', value: function UNSAFE_componentWillReceiveProps(nextProps) { this.setState({ active: nextProps.active }); } }, { key: 'render', value: function render() { var _props = this.props, size = _props.size, className = _props.className, steps = _props.steps, other = _objectWithoutProperties(_props, ['size', 'className', 'steps']); var menuClasses = (0, _bind2.default)('progressIndicator', className); var stepItemList = steps.map(function (item, index) { return _react2.default.createElement(_IndicatorItem2.default, { key: 'step-' + index, state: item.state, title: item.title, callback: item.callback, iconUrl: item.iconUrl, inactive: item.inactive }); }); return _react2.default.createElement( 'nav', { className: menuClasses }, stepItemList ); } }]); return ProgressIndicator; }(_react.Component); ProgressIndicator.propTypes = { className: _propTypes2.default.string, steps: _propTypes2.default.arrayOf(_propTypes2.default.shape({ state: _propTypes2.default.oneOf(['current', 'next', 'prev']), title: _propTypes2.default.string.isRequired, callback: _propTypes2.default.func.isRequired, iconUrl: _propTypes2.default.string.isRequired, inactive: _propTypes2.default.bool })).isRequired }; ProgressIndicator.defaultProps = { className: '' }; exports.default = ProgressIndicator;