@inyourarea/aard-client-js
Version:
A JavaScript tracking library for the Aard Platform at InYourArea.co.uk. Record and track activity across the different services of the platform.
20 lines • 900 B
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);
};
import React from 'react';
import AardContext from './context';
var withAardRecorder = function (mapRecorderToProps) { return function (WrappedComponent) {
return function (props) { return (React.createElement(AardContext.Consumer, null, function (recorder) { return (React.createElement(WrappedComponent, __assign({}, props, (mapRecorderToProps && recorder
? mapRecorderToProps(recorder)
: { recorder: recorder })))); })); };
}; };
export default withAardRecorder;
//# sourceMappingURL=hoc.js.map