mirror of
https://github.com/datahub-project/datahub.git
synced 2025-08-16 21:27:03 +00:00
52 lines
1.7 KiB
TypeScript
52 lines
1.7 KiB
TypeScript
import React from 'react';
|
|
import { Switch, Route, RouteProps } from 'react-router-dom';
|
|
import { useReactiveVar } from '@apollo/client';
|
|
import AppProviders from './AppProviders';
|
|
import { LogIn } from './auth/LogIn';
|
|
import { SignUp } from './auth/SignUp';
|
|
import { ResetCredentials } from './auth/ResetCredentials';
|
|
import { NoPageFound } from './shared/NoPageFound';
|
|
import { PageRoutes } from '../conf/Global';
|
|
import { isLoggedInVar } from './auth/checkAuthStatus';
|
|
import { useTrackPageView } from './analytics';
|
|
import { ProtectedRoutes } from './ProtectedRoutes';
|
|
|
|
const ProtectedRoute = ({
|
|
isLoggedIn,
|
|
...props
|
|
}: {
|
|
isLoggedIn: boolean;
|
|
} & RouteProps) => {
|
|
const currentPath = window.location.pathname + window.location.search;
|
|
if (!isLoggedIn) {
|
|
window.location.replace(`${PageRoutes.AUTHENTICATE}?redirect_uri=${encodeURIComponent(currentPath)}`);
|
|
return null;
|
|
}
|
|
return <Route {...props} />;
|
|
};
|
|
|
|
/**
|
|
* Container for all top-level routes.
|
|
*/
|
|
export const Routes = (): JSX.Element => {
|
|
useTrackPageView();
|
|
const isLoggedIn = useReactiveVar(isLoggedInVar);
|
|
|
|
return (
|
|
<Switch>
|
|
<Route path={PageRoutes.LOG_IN} component={LogIn} />
|
|
<Route path={PageRoutes.SIGN_UP} component={SignUp} />
|
|
<Route path={PageRoutes.RESET_CREDENTIALS} component={ResetCredentials} />
|
|
<ProtectedRoute
|
|
isLoggedIn={isLoggedIn}
|
|
render={() => (
|
|
<AppProviders>
|
|
<ProtectedRoutes />
|
|
</AppProviders>
|
|
)}
|
|
/>
|
|
<Route path="/*" component={NoPageFound} />
|
|
</Switch>
|
|
);
|
|
};
|