react-blips
Version:
Official React bindings for Blips
54 lines (38 loc) • 2.67 kB
JavaScript
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; };
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, { Component } from 'react';
import PropTypes from 'prop-types';
import hoistNonReactStatics from 'hoist-non-react-statics';
import invariant from 'invariant';
export function createWithClientHoc(BaseComponent) {
invariant(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 React.createElement(BaseComponent, _extends({}, this.props, { client: this.client }));
};
return WithClient;
}(Component);
WithClient.displayName = 'withClient(' + (BaseComponent.displayName || BaseComponent.name || 'Component') + ')';
WithClient.WrappedComponent = BaseComponent;
WithClient.propTypes = {
client: PropTypes.object
};
WithClient.contextTypes = {
client: PropTypes.object.isRequired
};
return hoistNonReactStatics(WithClient, BaseComponent, {});
}