DocSpace-client/packages/common/components/PrivateRoute/index.js

222 lines
5.0 KiB
JavaScript

/* eslint-disable react/prop-types */
import React from "react";
import { Navigate, Route, useLocation } from "react-router-dom";
import { inject, observer } from "mobx-react";
import AppLoader from "../AppLoader";
import combineUrl from "../../utils/combineUrl";
import { TenantStatus } from "../../constants";
const PrivateRoute = ({ children, ...rest }) => {
const {
isAdmin,
isAuthenticated,
isLoaded,
restricted,
user,
wizardCompleted,
tenantStatus,
isNotPaidPeriod,
withManager,
withCollaborator,
isLogout,
standalone,
isCommunity,
isEnterprise,
} = rest;
const location = useLocation();
const renderComponent = () => {
if (!user && isAuthenticated) return null;
const isPortalUrl = location.pathname === "/preparation-portal";
const isPaymentsUrl =
location.pathname === "/portal-settings/payments/portal-payments";
const isBackupUrl =
location.pathname === "/portal-settings/backup/data-backup";
const isPortalUnavailableUrl = location.pathname === "/portal-unavailable";
const isPortalDeletionUrl =
location.pathname === "/portal-settings/delete-data/deletion" ||
location.pathname === "/portal-settings/delete-data/deactivation";
const isBonusPage = location.pathname === "/portal-settings/bonus";
if (isLoaded && !isAuthenticated) {
// console.log("PrivateRoute render Redirect to login", rest);x
const redirectPath = wizardCompleted ? "/login" : "/wizard";
if (location.pathname === redirectPath) return null;
const isHomeUrl = location.pathname === "/";
if (wizardCompleted && !isHomeUrl && !isLogout) {
sessionStorage.setItem("referenceUrl", window.location.href);
}
window.location.replace(
combineUrl(window.DocSpaceConfig?.proxy?.url, redirectPath)
);
return null;
}
if (
isLoaded &&
((!isNotPaidPeriod && isPortalUnavailableUrl) ||
(!user.isOwner && isPortalDeletionUrl) ||
(standalone && isPortalDeletionUrl) ||
(isCommunity && isPaymentsUrl) ||
(isEnterprise && isBonusPage))
) {
return <Navigate replace to={"/"} />;
}
if (
isLoaded &&
isAuthenticated &&
tenantStatus === TenantStatus.PortalRestore &&
!isPortalUrl
) {
return (
<Navigate
replace
to={combineUrl(
window.DocSpaceConfig?.proxy?.url,
"/preparation-portal"
)}
/>
);
}
if (
isNotPaidPeriod &&
isLoaded &&
(user.isOwner || user.isAdmin) &&
!isPaymentsUrl &&
!isBackupUrl &&
!isPortalDeletionUrl
) {
return (
<Navigate
replace
to={combineUrl(
window.DocSpaceConfig?.proxy?.url,
"/portal-settings/payments/portal-payments"
)}
/>
);
}
if (
isNotPaidPeriod &&
isLoaded &&
!user.isOwner &&
!user.isAdmin &&
!isPortalUnavailableUrl
) {
return (
<Navigate
replace
to={combineUrl(
window.DocSpaceConfig?.proxy?.url,
"/portal-unavailable"
)}
/>
);
}
// if (!isLoaded) {
// return <AppLoader />;
if (tenantStatus === TenantStatus.PortalDeactivate) {
return (
<Navigate
to={combineUrl(window.DocSpaceConfig?.proxy?.url, "/unavailable")}
state={{ from: location }}
/>
);
}
if (!isLoaded) {
return <AppLoader />;
}
// const userLoaded = !isEmpty(user);
// if (!userLoaded) {
// return <Component {...props} />;
// }
// if (!userLoaded) {
// console.log("PrivateRoute render Loader", rest);
// return (
// <Section>
// <Section.SectionBody>
// <Loader className="pageLoader" type="rombs" size="40px" />
// </Section.SectionBody>
// </Section>
// );
// }
if (
!restricted ||
isAdmin ||
(withManager && !user.isVisitor && !user.isCollaborator) ||
(withCollaborator && !user.isVisitor)
) {
return children;
}
if (restricted) {
return <Navigate replace to={"/error401"} />;
}
return <Navigate replace to={"/error404"} />;
};
const component = renderComponent();
return component;
};
export default inject(({ auth }) => {
const {
userStore,
isAuthenticated,
isLoaded,
isAdmin,
settingsStore,
currentTariffStatusStore,
isLogout,
isCommunity,
isEnterprise,
} = auth;
const { isNotPaidPeriod } = currentTariffStatusStore;
const { user } = userStore;
const { setModuleInfo, wizardCompleted, personal, tenantStatus, standalone } =
settingsStore;
return {
isCommunity,
isNotPaidPeriod,
user,
isAuthenticated,
isAdmin,
isLoaded,
wizardCompleted,
tenantStatus,
isLogout,
standalone,
isEnterprise,
};
})(observer(PrivateRoute));