## Summary Add support for multi-workspace feature and adjust configurations and states accordingly. - Introduced new state isMultiWorkspaceEnabledState. - Updated ClientConfigProviderEffect component to handle multi-workspace. - Modified GraphQL schema and queries to include multi-workspace related configurations. - Adjusted server environment variables and their respective documentation to support multi-workspace toggle. - Updated server-side logic to handle new multi-workspace configurations and conditions.
253 lines
7.8 KiB
TypeScript
253 lines
7.8 KiB
TypeScript
import { SKELETON_LOADER_HEIGHT_SIZES } from '@/activities/components/SkeletonLoader';
|
|
import { Logo } from '@/auth/components/Logo';
|
|
import { Title } from '@/auth/components/Title';
|
|
import { useAuth } from '@/auth/hooks/useAuth';
|
|
import { useIsLogged } from '@/auth/hooks/useIsLogged';
|
|
import { PASSWORD_REGEX } from '@/auth/utils/passwordRegex';
|
|
import { useReadCaptchaToken } from '@/captcha/hooks/useReadCaptchaToken';
|
|
import { AppPath } from '@/types/AppPath';
|
|
import { SnackBarVariant } from '@/ui/feedback/snack-bar-manager/components/SnackBar';
|
|
import { useSnackBar } from '@/ui/feedback/snack-bar-manager/hooks/useSnackBar';
|
|
import { TextInputV2 } from '@/ui/input/components/TextInputV2';
|
|
import { isDefaultLayoutAuthModalVisibleState } from '@/ui/layout/states/isDefaultLayoutAuthModalVisibleState';
|
|
import { useTheme } from '@emotion/react';
|
|
import styled from '@emotion/styled';
|
|
import { zodResolver } from '@hookform/resolvers/zod';
|
|
import { isNonEmptyString } from '@sniptt/guards';
|
|
import { motion } from 'framer-motion';
|
|
import { useState } from 'react';
|
|
import { Controller, useForm } from 'react-hook-form';
|
|
import Skeleton, { SkeletonTheme } from 'react-loading-skeleton';
|
|
import { useNavigate, useParams } from 'react-router-dom';
|
|
import { useSetRecoilState, useRecoilValue } from 'recoil';
|
|
import { AnimatedEaseIn, MainButton } from 'twenty-ui';
|
|
import { z } from 'zod';
|
|
import {
|
|
useUpdatePasswordViaResetTokenMutation,
|
|
useValidatePasswordResetTokenQuery,
|
|
} from '~/generated/graphql';
|
|
import { logError } from '~/utils/logError';
|
|
import { workspacePublicDataState } from '@/auth/states/workspacePublicDataState';
|
|
|
|
const validationSchema = z
|
|
.object({
|
|
passwordResetToken: z.string(),
|
|
newPassword: z
|
|
.string()
|
|
.regex(PASSWORD_REGEX, 'Password must contain at least 8 characters'),
|
|
})
|
|
.required();
|
|
|
|
type Form = z.infer<typeof validationSchema>;
|
|
|
|
const StyledMainContainer = styled.div`
|
|
display: flex;
|
|
justify-content: flex-start;
|
|
align-items: center;
|
|
flex-direction: column;
|
|
width: 100%;
|
|
`;
|
|
|
|
const StyledContentContainer = styled.div`
|
|
margin-bottom: ${({ theme }) => theme.spacing(8)};
|
|
margin-top: ${({ theme }) => theme.spacing(4)};
|
|
width: 200px;
|
|
`;
|
|
|
|
const StyledForm = styled.form`
|
|
align-items: center;
|
|
display: flex;
|
|
flex-direction: column;
|
|
width: 100%;
|
|
`;
|
|
|
|
const StyledFullWidthMotionDiv = styled(motion.div)`
|
|
width: 100%;
|
|
`;
|
|
|
|
const StyledInputContainer = styled.div`
|
|
margin-bottom: ${({ theme }) => theme.spacing(3)};
|
|
`;
|
|
|
|
export const PasswordReset = () => {
|
|
const { enqueueSnackBar } = useSnackBar();
|
|
|
|
const workspacePublicData = useRecoilValue(workspacePublicDataState);
|
|
|
|
const navigate = useNavigate();
|
|
|
|
const [email, setEmail] = useState('');
|
|
const [isTokenValid, setIsTokenValid] = useState(false);
|
|
|
|
const theme = useTheme();
|
|
|
|
const passwordResetToken = useParams().passwordResetToken;
|
|
|
|
const isLoggedIn = useIsLogged();
|
|
|
|
const setIsDefaultLayoutAuthModalVisibleState = useSetRecoilState(
|
|
isDefaultLayoutAuthModalVisibleState,
|
|
);
|
|
const { control, handleSubmit } = useForm<Form>({
|
|
mode: 'onChange',
|
|
defaultValues: {
|
|
passwordResetToken: passwordResetToken ?? '',
|
|
newPassword: '',
|
|
},
|
|
resolver: zodResolver(validationSchema),
|
|
});
|
|
|
|
useValidatePasswordResetTokenQuery({
|
|
variables: {
|
|
token: passwordResetToken ?? '',
|
|
},
|
|
skip: !passwordResetToken,
|
|
onError: (error) => {
|
|
enqueueSnackBar(error?.message ?? 'Token Invalid', {
|
|
variant: SnackBarVariant.Error,
|
|
});
|
|
navigate(AppPath.Index);
|
|
},
|
|
onCompleted: (data) => {
|
|
setIsTokenValid(true);
|
|
setIsDefaultLayoutAuthModalVisibleState(true);
|
|
if (isNonEmptyString(data?.validatePasswordResetToken?.email)) {
|
|
setEmail(data.validatePasswordResetToken.email);
|
|
}
|
|
},
|
|
});
|
|
|
|
const [updatePasswordViaToken, { loading: isUpdatingPassword }] =
|
|
useUpdatePasswordViaResetTokenMutation();
|
|
|
|
const { signInWithCredentials } = useAuth();
|
|
const { readCaptchaToken } = useReadCaptchaToken();
|
|
|
|
const onSubmit = async (formData: Form) => {
|
|
try {
|
|
const { data } = await updatePasswordViaToken({
|
|
variables: {
|
|
token: formData.passwordResetToken,
|
|
newPassword: formData.newPassword,
|
|
},
|
|
});
|
|
|
|
if (!data?.updatePasswordViaResetToken.success) {
|
|
enqueueSnackBar('There was an error while updating password.', {
|
|
variant: SnackBarVariant.Error,
|
|
});
|
|
return;
|
|
}
|
|
|
|
if (isLoggedIn) {
|
|
enqueueSnackBar('Password has been updated', {
|
|
variant: SnackBarVariant.Success,
|
|
});
|
|
navigate(AppPath.Index);
|
|
return;
|
|
}
|
|
|
|
const token = await readCaptchaToken();
|
|
|
|
await signInWithCredentials(email || '', formData.newPassword, token);
|
|
navigate(AppPath.Index);
|
|
} catch (err) {
|
|
logError(err);
|
|
enqueueSnackBar(
|
|
(err as Error)?.message || 'An error occurred while updating password',
|
|
{
|
|
variant: SnackBarVariant.Error,
|
|
},
|
|
);
|
|
}
|
|
};
|
|
|
|
return (
|
|
isTokenValid && (
|
|
<StyledMainContainer>
|
|
<AnimatedEaseIn>
|
|
<Logo secondaryLogo={workspacePublicData?.logo} />
|
|
</AnimatedEaseIn>
|
|
<Title animate>Reset Password</Title>
|
|
<StyledContentContainer>
|
|
{!email ? (
|
|
<SkeletonTheme
|
|
baseColor={theme.background.quaternary}
|
|
highlightColor={theme.background.secondary}
|
|
>
|
|
<Skeleton
|
|
height={SKELETON_LOADER_HEIGHT_SIZES.standard.m}
|
|
count={2}
|
|
style={{
|
|
marginBottom: theme.spacing(2),
|
|
}}
|
|
/>
|
|
</SkeletonTheme>
|
|
) : (
|
|
<StyledForm onSubmit={handleSubmit(onSubmit)}>
|
|
<StyledFullWidthMotionDiv
|
|
initial={{ opacity: 0, height: 0 }}
|
|
animate={{ opacity: 1, height: 'auto' }}
|
|
transition={{
|
|
type: 'spring',
|
|
stiffness: 800,
|
|
damping: 35,
|
|
}}
|
|
>
|
|
<StyledInputContainer>
|
|
<TextInputV2
|
|
autoFocus
|
|
value={email}
|
|
placeholder="Email"
|
|
fullWidth
|
|
disabled
|
|
/>
|
|
</StyledInputContainer>
|
|
</StyledFullWidthMotionDiv>
|
|
<StyledFullWidthMotionDiv
|
|
initial={{ opacity: 0, height: 0 }}
|
|
animate={{ opacity: 1, height: 'auto' }}
|
|
transition={{
|
|
type: 'spring',
|
|
stiffness: 800,
|
|
damping: 35,
|
|
}}
|
|
>
|
|
<Controller
|
|
name="newPassword"
|
|
control={control}
|
|
render={({
|
|
field: { onChange, onBlur, value },
|
|
fieldState: { error },
|
|
}) => (
|
|
<StyledInputContainer>
|
|
<TextInputV2
|
|
autoFocus
|
|
value={value}
|
|
type="password"
|
|
placeholder="New Password"
|
|
onBlur={onBlur}
|
|
onChange={onChange}
|
|
error={error?.message}
|
|
fullWidth
|
|
/>
|
|
</StyledInputContainer>
|
|
)}
|
|
/>
|
|
</StyledFullWidthMotionDiv>
|
|
|
|
<MainButton
|
|
variant="secondary"
|
|
title="Change Password"
|
|
type="submit"
|
|
fullWidth
|
|
disabled={isUpdatingPassword}
|
|
/>
|
|
</StyledForm>
|
|
)}
|
|
</StyledContentContainer>
|
|
</StyledMainContainer>
|
|
)
|
|
);
|
|
};
|