All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.react-utils.PrivateRoute.PrivateRoute.js Maven / Gradle / Ivy

Go to download

A package encapsulating common code across neeto projects including initializers, utility functions, common components and hooks and so on.

There is a newer version: 4.12.3
Show newest version
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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy