box-ui-elements-mlh
Version:
19 lines (17 loc) • 1.14 kB
JavaScript
function _extends() { _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; }; return _extends.apply(this, arguments); }
import * as React from 'react';
import { Route } from 'react-router-dom'; // Basically a workaround for the fact that react-router's withRouter cannot forward ref's through
// functional components. Use this instead to gain the benefits of withRouter but also ref forwarding
export default function withRouterAndRef(Wrapped) {
var WithRouterAndRef = /*#__PURE__*/React.forwardRef(function (props, ref) {
return /*#__PURE__*/React.createElement(Route, null, function (routeProps) {
return /*#__PURE__*/React.createElement(Wrapped, _extends({
ref: ref
}, routeProps, props));
});
});
var name = Wrapped.displayName || Wrapped.name || 'Component';
WithRouterAndRef.displayName = "withRouterAndRef(".concat(name, ")");
return WithRouterAndRef;
}
//# sourceMappingURL=withRouterAndRef.js.map