import React, { useEffect, useState } from 'react'; import { FormattedMessage, useIntl } from 'react-intl'; import FormContainer from '../layout/form-container'; import Header from '../layout/header'; import Footer from '../layout/footer'; import { Link as RouterLink } from 'react-router-dom'; import Typography from '@mui/material/Typography'; import Button from '@mui/material/Button'; import ReactGA from 'react-ga4'; import Client, { Oauth2CallbackResult } from '../../classes/client'; import { useSelector } from 'react-redux'; import { activeInstance } from '../../redux/clientSlice'; import { useNavigate } from 'react-router-dom'; import { CircularProgress } from '@mui/material'; import GlobalError from '../form/global-error'; import { buttonsStyle } from './style'; const RegistrationCallbackPage = (): React.ReactElement => { const intl = useIntl(); const client: Client = useSelector(activeInstance); const [showError, setShowError] = useState(false); const [callbackResult, setCallbackResult] = useState(undefined); const navigate = useNavigate(); useEffect(() => { document.title = intl.formatMessage({ id: 'registation.success-title', defaultMessage: 'Registation Success | WiseMapping', }); ReactGA.send({ hitType: 'pageview', page: window.location.pathname, title: 'Registration:Success', }); }); useEffect(() => { const googleOauthCode = new URLSearchParams(window.location.search).get('code'); client .processGoogleCallback(googleOauthCode) .then((result) => { if (result.googleSync) { // if service reports that user already has sync accounts, go to maps page navigate('/c/maps/'); } setCallbackResult(result); }) .catch((error) => { console.log('ERROR', error); setShowError(true); window.newrelic?.noticeError(error); }); }, []); const confirmAccountSynching = () => { client .confirmAccountSync(callbackResult.email, callbackResult.syncCode) .then(() => { navigate('/c/maps/'); }) .catch((error) => { console.log('ERROR', error); window.newrelic?.noticeError(error); }); }; // if service reports that user doesnt sync accounts yet, we need to show the options const needConfirmLinking = !showError && callbackResult?.email && !callbackResult?.googleSync; return (
{needConfirmLinking ? ( ) : ( )} {needConfirmLinking ? ( ) : ( )} {showError && ( <> )} {!needConfirmLinking && !showError && } {needConfirmLinking && ( <> )}
); }; export default RegistrationCallbackPage;