UNPKG

redux-signal

Version:

A scalable solution for modals using React and Redux

103 lines (82 loc) 4.26 kB
var _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; }; 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; }; }(); 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; } import React from 'react'; import PropTypes from 'prop-types'; import { connect } from 'react-redux'; import { createModal, destroyModal, hideModal, setModalBusy } from './actions'; import { getModal } from './selectors'; export var isModalPropTypes = { instanceId: PropTypes.string.isRequired, close: PropTypes.func.isRequired, setBusy: PropTypes.func.isRequired, modal: PropTypes.object.isRequired }; var isModal = function isModal(WrappedComponent) { var _class, _temp; var Component = (_temp = _class = function (_React$Component) { _inherits(Component, _React$Component); function Component() { _classCallCheck(this, Component); return _possibleConstructorReturn(this, (Component.__proto__ || Object.getPrototypeOf(Component)).apply(this, arguments)); } _createClass(Component, [{ key: 'componentWillMount', value: function componentWillMount() { this.props.create(); } }, { key: 'componentWillUnmount', value: function componentWillUnmount() { this.props.destroy(); } }, { key: 'render', value: function render() { var _props = this.props, instanceId = _props.instanceId, close = _props.close, setBusy = _props.setBusy, modal = _props.modal; var componentProps = { instanceId: instanceId, close: close, setBusy: setBusy, modal: modal }; return React.createElement(WrappedComponent, componentProps); } }]); return Component; }(React.Component), _class.propTypes = _extends({}, isModalPropTypes, { create: PropTypes.func.isRequired, destroy: PropTypes.func.isRequired }), _temp); var mapStateToProps = function mapStateToProps(state, _ref) { var instanceId = _ref.instanceId; return { modal: getModal(instanceId)(state) }; }; var mapDispatchToProps = function mapDispatchToProps(dispatch, _ref2) { var instanceId = _ref2.instanceId; return { create: function create() { return dispatch(createModal(instanceId)); }, destroy: function destroy() { return dispatch(destroyModal(instanceId)); }, close: function close() { return dispatch(hideModal(instanceId)); }, setBusy: function setBusy(isBusy) { return dispatch(setModalBusy(instanceId, isBusy)); } }; }; return connect(mapStateToProps, mapDispatchToProps)(Component); }; export default isModal;