triviality-react
Version:
Exposes triviality service container to react components
32 lines • 1.32 kB
JavaScript
;
var __assign = (this && this.__assign) || function () {
__assign = Object.assign || function(t) {
for (var s, i = 1, n = arguments.length; i < n; i++) {
s = arguments[i];
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
t[p] = s[p];
}
return t;
};
return __assign.apply(this, arguments);
};
var __importStar = (this && this.__importStar) || function (mod) {
if (mod && mod.__esModule) return mod;
var result = {};
if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k];
result["default"] = mod;
return result;
};
Object.defineProperty(exports, "__esModule", { value: true });
var React = __importStar(require("react"));
var ServiceContainerConsumer_1 = require("./ServiceContainerConsumer");
function withServiceContainer(Component) {
return function ServiceContainer(props) {
var Inter = Component;
return (React.createElement(ServiceContainerConsumer_1.ServiceContainerConsumer, null, function (container) {
return React.createElement(Inter, __assign({ serviceContainer: container }, props));
}));
};
}
exports.withServiceContainer = withServiceContainer;
//# sourceMappingURL=withServiceContainer.js.map