react-blips
Version:
Official React bindings for Blips
72 lines (46 loc) • 3.16 kB
JavaScript
;
exports.__esModule = true;
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; };
exports.createWithClientHoc = createWithClientHoc;
var _react = require('react');
var _react2 = _interopRequireDefault(_react);
var _propTypes = require('prop-types');
var _propTypes2 = _interopRequireDefault(_propTypes);
var _hoistNonReactStatics = require('hoist-non-react-statics');
var _hoistNonReactStatics2 = _interopRequireDefault(_hoistNonReactStatics);
var _invariant = require('invariant');
var _invariant2 = _interopRequireDefault(_invariant);
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
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; }
function createWithClientHoc(BaseComponent) {
(0, _invariant2.default)(typeof BaseComponent === 'function', 'You must pass a component to the function returned by graphql. Instead received ' + JSON.stringify(BaseComponent));
var WithClient = function (_Component) {
_inherits(WithClient, _Component);
function WithClient(props, context) {
_classCallCheck(this, WithClient);
var _this = _possibleConstructorReturn(this, _Component.call(this, props, context));
_this.client = props.client || context.client;
return _this;
}
WithClient.prototype.componentWillReceiveProps = function componentWillReceiveProps(nextProps) {
if (nextProps.client && nextProps.client !== this.client) {
this.client = nextProps.client;
}
};
WithClient.prototype.render = function render() {
return _react2.default.createElement(BaseComponent, _extends({}, this.props, { client: this.client }));
};
return WithClient;
}(_react.Component);
WithClient.displayName = 'withClient(' + (BaseComponent.displayName || BaseComponent.name || 'Component') + ')';
WithClient.WrappedComponent = BaseComponent;
WithClient.propTypes = {
client: _propTypes2.default.object
};
WithClient.contextTypes = {
client: _propTypes2.default.object.isRequired
};
return (0, _hoistNonReactStatics2.default)(WithClient, BaseComponent, {});
}