react-augmentation
Version:
DOM augmentation operators to simplify UI code and promote data-driven DOM hierarchy
91 lines (67 loc) • 3.44 kB
JavaScript
;
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 _propTypes = require('prop-types');
var _propTypes2 = _interopRequireDefault(_propTypes);
var _react = require('react');
var _react2 = _interopRequireDefault(_react);
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; }
var Inlet = function (_React$PureComponent) {
_inherits(Inlet, _React$PureComponent);
function Inlet(props, context) {
_classCallCheck(this, Inlet);
var _this = _possibleConstructorReturn(this, (Inlet.__proto__ || Object.getPrototypeOf(Inlet)).call(this, props, context));
_this.state = {
name: props.name
};
return _this;
}
_createClass(Inlet, [{
key: 'componentDidMount',
value: function componentDidMount() {
this.context.pipe.update(this.props.name, this.props.children);
}
}, {
key: 'componentWillReceiveProps',
value: function componentWillReceiveProps(nextProps) {
var _this2 = this;
var nextName = nextProps.name;
if (nextName !== this.state.name) {
this.context.pipe.update(this.state.name, null);
this.setState(function () {
return { name: nextName };
}, function () {
_this2.context.pipe.update(nextName, nextProps.children);
});
} else if (nextProps.children !== this.props.children) {
this.context.pipe.update(nextName, nextProps.children);
}
}
}, {
key: 'componentWillUnmount',
value: function componentWillUnmount() {
this.context.pipe.update(this.state.name, null);
}
}, {
key: 'render',
value: function render() {
return false;
}
}]);
return Inlet;
}(_react2.default.PureComponent);
exports.default = Inlet;
Inlet.contextTypes = {
pipe: _propTypes2.default.shape({
update: _propTypes2.default.func
})
};
Inlet.propTypes = {
name: _propTypes2.default.string
};
//# sourceMappingURL=Inlet.js.map