@shakacode/recompose
Version:
A React utility belt for function components and higher-order components
49 lines (47 loc) • 2.29 kB
JavaScript
;
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
exports.__esModule = true;
exports["default"] = void 0;
var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
var _inheritsLoose2 = _interopRequireDefault(require("@babel/runtime/helpers/inheritsLoose"));
var _react = require("react");
var _setDisplayName = _interopRequireDefault(require("./setDisplayName"));
var _wrapDisplayName = _interopRequireDefault(require("./wrapDisplayName"));
var _mapValues = _interopRequireDefault(require("./utils/mapValues"));
/* eslint-disable no-console */
var withHandlers = function withHandlers(handlers) {
return function (BaseComponent) {
var WithHandlers = /*#__PURE__*/function (_Component) {
function WithHandlers() {
var _this;
for (var _len = arguments.length, _args = new Array(_len), _key = 0; _key < _len; _key++) {
_args[_key] = arguments[_key];
}
_this = _Component.call.apply(_Component, [this].concat(_args)) || this;
_this.handlers = (0, _mapValues["default"])(typeof handlers === 'function' ? handlers(_this.props) : handlers, function (createHandler) {
return function () {
var handler = createHandler(_this.props);
if (process.env.NODE_ENV !== 'production' && typeof handler !== 'function') {
console.error(
// eslint-disable-line no-console
'withHandlers(): Expected a map of higher-order functions. ' + 'Refer to the docs for more info.');
}
return handler.apply(void 0, arguments);
};
});
return _this;
}
(0, _inheritsLoose2["default"])(WithHandlers, _Component);
var _proto = WithHandlers.prototype;
_proto.render = function render() {
return /*#__PURE__*/(0, _react.createElement)(BaseComponent, (0, _extends2["default"])({}, this.props, this.handlers));
};
return WithHandlers;
}(_react.Component);
if (process.env.NODE_ENV !== 'production') {
return (0, _setDisplayName["default"])((0, _wrapDisplayName["default"])(BaseComponent, 'withHandlers'))(WithHandlers);
}
return WithHandlers;
};
};
var _default = exports["default"] = withHandlers;