* applied eslint * add locales and lint the project * removed error boundary * updated locales * fix min files * fix locales
89 lines
2.5 KiB
TypeScript
89 lines
2.5 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 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';
|
|
import SignupForm from './SignupForm';
|
|
|
|
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.authStore;
|
|
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);
|
|
try {
|
|
const { healthMap } = await getHealthRequest(true);
|
|
setHealthStatus(healthMap);
|
|
} catch (e) {
|
|
console.error(e);
|
|
} finally {
|
|
setHealthStatusLoading(false);
|
|
}
|
|
};
|
|
|
|
useEffect(() => {
|
|
if (!authDetails) return;
|
|
if (authDetails) {
|
|
if (authDetails.tenants) {
|
|
history.push(LOGIN_ROUTE);
|
|
} else {
|
|
void getHealth();
|
|
}
|
|
}
|
|
}, [authDetails]);
|
|
|
|
if (authDetails && !healthModalPassed && !authDetails.tenants) {
|
|
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)),
|
|
);
|