package.react-utils.PrivateRoute.PrivateRoute.js Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of neeto-commons-frontend Show documentation
Show all versions of neeto-commons-frontend Show documentation
A package encapsulating common code across neeto projects including initializers, utility functions, common components and hooks and so on.
import _defineProperty from "@babel/runtime/helpers/defineProperty";
import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties";
var _excluded = ["condition", "redirectRoute", "errorPage", "permissions"];
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
import ErrorPage from "@bigbinary/neeto-molecules/ErrorPage";
import { __, includes } from "ramda";
import { Redirect, Route } from "react-router-dom";
import { jsx as _jsx } from "react/jsx-runtime";
var PrivateRoute = function PrivateRoute(_ref) {
var _ref$condition = _ref.condition,
condition = _ref$condition === void 0 ? globalProps.authenticated : _ref$condition,
_ref$redirectRoute = _ref.redirectRoute,
redirectRoute = _ref$redirectRoute === void 0 ? undefined : _ref$redirectRoute,
_ref$errorPage = _ref.errorPage,
errorPage = _ref$errorPage === void 0 ? undefined : _ref$errorPage,
_ref$permissions = _ref.permissions,
permissions = _ref$permissions === void 0 ? undefined : _ref$permissions,
props = _objectWithoutProperties(_ref, _excluded);
if (condition) {
if (permissions) {
return globalProps.permissions.some(includes(__, permissions)) ? /*#__PURE__*/_jsx(Route, _objectSpread({}, props)) : errorPage || /*#__PURE__*/_jsx(ErrorPage, {
status: 403
});
}
return /*#__PURE__*/_jsx(Route, _objectSpread({}, props));
}
if (redirectRoute) {
return /*#__PURE__*/_jsx(Redirect, {
to: {
pathname: redirectRoute
}
});
}
return errorPage || /*#__PURE__*/_jsx(ErrorPage, {
status: 403
});
};
export default PrivateRoute;
//# sourceMappingURL=PrivateRoute.js.map