Currently, when a server query or mutation from the front-end fails, the error message defined server-side is displayed in a snackbar in the front-end. These error messages usually contain technical details that don't belong to the user interface, such as "ObjectMetadataCollection not found" or "invalid ENUM value for ...". **BE** In addition to the original error message that is still needed (for the request response, debugging, sentry monitoring etc.), we add a `displayedErrorMessage` that will be used in the snackbars. It's only relevant to add it for the messages that will reach the FE (ie. not in jobs or in rest api for instance) and if it can help the user sort out / fix things (ie. we do add displayedErrorMessage for "Cannot create multiple draft versions for the same workflow" or "Cannot delete [field], please update the label identifier field first", but not "Object metadata does not exist"), even if in practice in the FE users should not be able to perform an action that will not work (ie should not be able to save creation of multiple draft versions of the same workflows). **FE** To ease the usage we replaced enqueueSnackBar with enqueueErrorSnackBar and enqueueSuccessSnackBar with an api that only requires to pass on the error. If no displayedErrorMessage is specified then the default error message is `An error occured.`
113 lines
3.7 KiB
TypeScript
113 lines
3.7 KiB
TypeScript
import { useAuth } from '@/auth/hooks/useAuth';
|
|
import { AppPath } from '@/types/AppPath';
|
|
import { useSnackBar } from '@/ui/feedback/snack-bar-manager/hooks/useSnackBar';
|
|
import { ApolloError } from '@apollo/client';
|
|
|
|
import { verifyEmailNextPathState } from '@/app/states/verifyEmailNextPathState';
|
|
import { useVerifyLogin } from '@/auth/hooks/useVerifyLogin';
|
|
import { useRedirectToWorkspaceDomain } from '@/domain-manager/hooks/useRedirectToWorkspaceDomain';
|
|
import { Modal } from '@/ui/layout/modal/components/Modal';
|
|
import { useLingui } from '@lingui/react/macro';
|
|
import { useEffect, useState } from 'react';
|
|
import { useSearchParams } from 'react-router-dom';
|
|
import { useSetRecoilState } from 'recoil';
|
|
import { isDefined } from 'twenty-shared/utils';
|
|
import { useNavigateApp } from '~/hooks/useNavigateApp';
|
|
import { getWorkspaceUrl } from '~/utils/getWorkspaceUrl';
|
|
import { EmailVerificationSent } from '../sign-in-up/components/EmailVerificationSent';
|
|
|
|
export const VerifyEmailEffect = () => {
|
|
const { getLoginTokenFromEmailVerificationToken } = useAuth();
|
|
|
|
const { enqueueErrorSnackBar, enqueueSuccessSnackBar } = useSnackBar();
|
|
|
|
const [searchParams] = useSearchParams();
|
|
const [isError, setIsError] = useState(false);
|
|
|
|
const setVerifyEmailNextPath = useSetRecoilState(verifyEmailNextPathState);
|
|
|
|
const email = searchParams.get('email');
|
|
const emailVerificationToken = searchParams.get('emailVerificationToken');
|
|
const verifyEmailNextPath = searchParams.get('nextPath');
|
|
|
|
const navigate = useNavigateApp();
|
|
const { redirectToWorkspaceDomain } = useRedirectToWorkspaceDomain();
|
|
const { verifyLoginToken } = useVerifyLogin();
|
|
|
|
const { t } = useLingui();
|
|
useEffect(() => {
|
|
const verifyEmailToken = async () => {
|
|
if (!email || !emailVerificationToken) {
|
|
enqueueErrorSnackBar({
|
|
message: t`Invalid email verification link.`,
|
|
options: {
|
|
dedupeKey: 'email-verification-link-dedupe-key',
|
|
},
|
|
});
|
|
return navigate(AppPath.SignInUp);
|
|
}
|
|
|
|
try {
|
|
const { loginToken, workspaceUrls } =
|
|
await getLoginTokenFromEmailVerificationToken(
|
|
emailVerificationToken,
|
|
email,
|
|
);
|
|
|
|
enqueueSuccessSnackBar({
|
|
message: t`Email verified.`,
|
|
options: {
|
|
dedupeKey: 'email-verification-dedupe-key',
|
|
},
|
|
});
|
|
|
|
const workspaceUrl = getWorkspaceUrl(workspaceUrls);
|
|
if (workspaceUrl.slice(0, -1) !== window.location.origin) {
|
|
return await redirectToWorkspaceDomain(workspaceUrl, AppPath.Verify, {
|
|
loginToken: loginToken.token,
|
|
});
|
|
}
|
|
|
|
if (isDefined(verifyEmailNextPath)) {
|
|
setVerifyEmailNextPath(verifyEmailNextPath);
|
|
}
|
|
|
|
verifyLoginToken(loginToken.token);
|
|
} catch (error) {
|
|
enqueueErrorSnackBar({
|
|
...(error instanceof ApolloError
|
|
? { apolloError: error }
|
|
: { message: t`Email verification failed` }),
|
|
options: {
|
|
dedupeKey: 'email-verification-error-dedupe-key',
|
|
},
|
|
});
|
|
if (
|
|
error instanceof ApolloError &&
|
|
error.graphQLErrors[0].extensions?.subCode ===
|
|
'EMAIL_ALREADY_VERIFIED'
|
|
) {
|
|
navigate(AppPath.SignInUp);
|
|
}
|
|
|
|
setIsError(true);
|
|
}
|
|
};
|
|
|
|
verifyEmailToken();
|
|
|
|
// Verify email only needs to run once at mount
|
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
}, []);
|
|
|
|
if (isError) {
|
|
return (
|
|
<Modal.Content isVerticalCentered isHorizontalCentered>
|
|
<EmailVerificationSent email={email} isError={true} />
|
|
</Modal.Content>
|
|
);
|
|
}
|
|
|
|
return <></>;
|
|
};
|