77 lines
2.4 KiB
TypeScript
77 lines
2.4 KiB
TypeScript
import React, { useEffect, useState } from 'react';
|
|
import { withRouter, RouteComponentProps } from 'react-router-dom';
|
|
import { observer } from 'mobx-react-lite';
|
|
import { useStore } from 'App/mstore';
|
|
import { Icon } from 'UI';
|
|
import SignupForm from './SignupForm';
|
|
import HealthModal from 'Components/Header/HealthStatus/HealthModal/HealthModal';
|
|
import { getHealthRequest } from 'Components/Header/HealthStatus/getHealth';
|
|
import withPageTitle from 'HOCs/withPageTitle';
|
|
import { login } from 'App/routes';
|
|
import Copyright from 'Shared/Copyright';
|
|
|
|
const LOGIN_ROUTE = login();
|
|
const BulletItem: React.FC<{ text: string }> = ({ text }) => (
|
|
<div className='flex items-center mb-4'>
|
|
<div className='mr-3 h-8 w-8 rounded-full bg-white shadow flex items-center justify-center'>
|
|
<Icon name='check' size='26' />
|
|
</div>
|
|
<div>{text}</div>
|
|
</div>
|
|
);
|
|
|
|
const healthStatusCheck_key = '__or__healthStatusCheck_key';
|
|
|
|
type SignupProps = RouteComponentProps;
|
|
|
|
const Signup: React.FC<SignupProps> = ({ history }) => {
|
|
const { userStore } = useStore();
|
|
const authDetails = userStore.authDetails;
|
|
const fetchTenants = userStore.fetchTenants;
|
|
const [healthModalPassed, setHealthModalPassed] = useState<boolean>(localStorage.getItem(healthStatusCheck_key) === 'true');
|
|
const [healthStatusLoading, setHealthStatusLoading] = useState<boolean>(true);
|
|
const [healthStatus, setHealthStatus] = useState<any>(null);
|
|
|
|
const getHealth = async () => {
|
|
setHealthStatusLoading(true);
|
|
const { healthMap } = await getHealthRequest(true);
|
|
setHealthStatus(healthMap);
|
|
setHealthStatusLoading(false);
|
|
};
|
|
|
|
useEffect(() => {
|
|
if (!healthModalPassed) void getHealth();
|
|
}, []);
|
|
|
|
useEffect(() => {
|
|
if (authDetails && authDetails.tenants) {
|
|
history.push(LOGIN_ROUTE);
|
|
}
|
|
}, [authDetails]);
|
|
|
|
if (!healthModalPassed) {
|
|
return (
|
|
<HealthModal
|
|
setShowModal={() => null}
|
|
healthResponse={healthStatus}
|
|
getHealth={getHealth}
|
|
isLoading={healthStatusLoading}
|
|
setPassed={() => setHealthModalPassed(true)}
|
|
/>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<div className='flex justify-center items-center gap-6' style={{ height: '100vh' }}>
|
|
<div className='flex items-center justify-center'>
|
|
<div className=''>
|
|
<SignupForm />
|
|
</div>
|
|
</div>
|
|
|
|
<Copyright />
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default withRouter(withPageTitle('Signup - OpenReplay')(observer(Signup)));
|