1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-23 03:36:18 +02:00
metamask-extension/ui/pages/onboarding-flow/create-password/create-password.js

269 lines
8.6 KiB
JavaScript
Raw Normal View History

import React, { useState, useMemo, useContext } from 'react';
import PropTypes from 'prop-types';
import { useHistory } from 'react-router-dom';
2022-03-07 16:35:03 +01:00
import zxcvbn from 'zxcvbn';
import { useSelector } from 'react-redux';
import { useI18nContext } from '../../../hooks/useI18nContext';
import Button from '../../../components/ui/button';
import Typography from '../../../components/ui/typography';
import {
TEXT_ALIGN,
TYPOGRAPHY,
JUSTIFY_CONTENT,
FONT_WEIGHT,
ALIGN_ITEMS,
} from '../../../helpers/constants/design-system';
import {
ONBOARDING_COMPLETION_ROUTE,
ONBOARDING_SECURE_YOUR_WALLET_ROUTE,
} from '../../../helpers/constants/routes';
import FormField from '../../../components/ui/form-field';
import Box from '../../../components/ui/box';
import CheckBox from '../../../components/ui/check-box';
import {
ThreeStepProgressBar,
threeStepStages,
TwoStepProgressBar,
twoStepStages,
} from '../../../components/app/step-progress-bar';
2022-03-07 16:35:03 +01:00
import ZENDESK_URLS from '../../../helpers/constants/zendesk-url';
import { getFirstTimeFlowType } from '../../../selectors';
import { FIRST_TIME_FLOW_TYPES } from '../../../helpers/constants/onboarding';
import { MetaMetricsContext } from '../../../contexts/metametrics';
export default function CreatePassword({
createNewAccount,
importWithRecoveryPhrase,
secretRecoveryPhrase,
}) {
const t = useI18nContext();
const [confirmPassword, setConfirmPassword] = useState('');
const [password, setPassword] = useState('');
const [passwordError, setPasswordError] = useState('');
2022-03-07 16:35:03 +01:00
const [passwordStrength, setPasswordStrength] = useState('');
const [passwordStrengthText, setPasswordStrengthText] = useState('');
const [confirmPasswordError, setConfirmPasswordError] = useState('');
const [termsChecked, setTermsChecked] = useState(false);
const [showPassword, setShowPassword] = useState(false);
const history = useHistory();
const firstTimeFlowType = useSelector(getFirstTimeFlowType);
const trackEvent = useContext(MetaMetricsContext);
const isValid = useMemo(() => {
if (!password || !confirmPassword || password !== confirmPassword) {
return false;
}
if (password.length < 8) {
return false;
}
return !passwordError && !confirmPasswordError;
}, [password, confirmPassword, passwordError, confirmPasswordError]);
2022-03-07 16:35:03 +01:00
const getPasswordStrengthLabel = (score, translation) => {
if (score >= 4) {
return {
className: 'create-password__strong',
text: translation('strong'),
description: '',
};
} else if (score === 3) {
return {
className: 'create-password__average',
text: translation('average'),
description: t('passwordStrengthDescription'),
};
}
return {
className: 'create-password__weak',
text: translation('weak'),
description: t('passwordStrengthDescription'),
};
};
const handlePasswordChange = (passwordInput) => {
let confirmError = '';
2022-03-07 16:35:03 +01:00
const passwordEvaluation = zxcvbn(passwordInput);
const passwordStrengthLabel = getPasswordStrengthLabel(
passwordEvaluation.score,
t,
);
const passwordStrengthDescription = passwordStrengthLabel.description;
const passwordStrengthInput = t('passwordStrength', [
<span
key={passwordEvaluation.score}
className={passwordStrengthLabel.className}
>
{passwordStrengthLabel.text}
</span>,
]);
if (confirmPassword && passwordInput !== confirmPassword) {
confirmError = t('passwordsDontMatch');
}
setPassword(passwordInput);
2022-03-07 16:35:03 +01:00
setPasswordStrength(passwordStrengthInput);
setPasswordStrengthText(passwordStrengthDescription);
setConfirmPasswordError(confirmError);
};
const handleConfirmPasswordChange = (confirmPasswordInput) => {
let error = '';
if (password !== confirmPasswordInput) {
error = t('passwordsDontMatch');
}
setConfirmPassword(confirmPasswordInput);
setConfirmPasswordError(error);
};
const handleCreate = async (event) => {
event.preventDefault();
if (!isValid) {
return;
}
// If secretRecoveryPhrase is defined we are in import wallet flow
if (
secretRecoveryPhrase &&
firstTimeFlowType === FIRST_TIME_FLOW_TYPES.IMPORT
) {
await importWithRecoveryPhrase(password, secretRecoveryPhrase);
history.push(ONBOARDING_COMPLETION_ROUTE);
} else {
// Otherwise we are in create new wallet flow
try {
if (createNewAccount) {
await createNewAccount(password);
}
trackEvent({
event: 'Submit Password',
category: 'Onboarding',
});
history.push(ONBOARDING_SECURE_YOUR_WALLET_ROUTE);
} catch (error) {
setPasswordError(error.message);
}
}
};
return (
<div className="create-password__wrapper">
{secretRecoveryPhrase &&
firstTimeFlowType === FIRST_TIME_FLOW_TYPES.IMPORT ? (
<TwoStepProgressBar stage={twoStepStages.PASSWORD_CREATE} />
) : (
<ThreeStepProgressBar stage={threeStepStages.PASSWORD_CREATE} />
)}
<Typography variant={TYPOGRAPHY.H2} fontWeight={FONT_WEIGHT.BOLD}>
{t('createPassword')}
</Typography>
<Typography
variant={TYPOGRAPHY.H4}
align={TEXT_ALIGN.CENTER}
boxProps={{ margin: 5 }}
>
{t('passwordSetupDetails')}
</Typography>
<Box
justifyContent={JUSTIFY_CONTENT.CENTER}
marginTop={3}
padding={[0, 12]}
>
<form className="create-password__form" onSubmit={handleCreate}>
<FormField
dataTestId="create-password-new"
autoFocus
2022-03-07 16:35:03 +01:00
passwordStrength={passwordStrength}
passwordStrengthText={passwordStrengthText}
onChange={handlePasswordChange}
password={!showPassword}
titleText={t('newPassword')}
value={password}
titleDetail={
<button
className="create-password__form--password-button"
type="button"
onClick={(e) => {
e.preventDefault();
setShowPassword(!showPassword);
}}
>
{showPassword ? t('hide') : t('show')}
</button>
}
/>
<FormField
dataTestId="create-password-confirm"
onChange={handleConfirmPasswordChange}
password={!showPassword}
error={confirmPasswordError}
titleText={t('confirmPassword')}
value={confirmPassword}
titleDetail={
isValid && (
<div className="create-password__form--checkmark">
<i className="fas fa-check" />
</div>
)
}
/>
<Box
alignItems={ALIGN_ITEMS.CENTER}
justifyContent={JUSTIFY_CONTENT.SPACE_BETWEEN}
marginBottom={4}
>
<label className="create-password__form__terms-label">
<CheckBox
dataTestId="create-password-terms"
onClick={() => setTermsChecked(!termsChecked)}
checked={termsChecked}
/>
<Typography variant={TYPOGRAPHY.H5} boxProps={{ marginLeft: 3 }}>
{t('passwordTermsWarning', [
<a
onClick={(e) => e.stopPropagation()}
key="create-password__link-text"
href={ZENDESK_URLS.PASSWORD_ARTICLE}
target="_blank"
rel="noopener noreferrer"
>
<span className="create-password__link-text">
{t('learnMoreUpperCase')}
</span>
</a>,
])}
</Typography>
</label>
</Box>
<Button
data-testid={
secretRecoveryPhrase &&
firstTimeFlowType === FIRST_TIME_FLOW_TYPES.IMPORT
? 'create-password-import'
: 'create-password-wallet'
}
type="primary"
className="create-password__form--submit-button"
disabled={!isValid || !termsChecked}
onClick={handleCreate}
>
{secretRecoveryPhrase &&
firstTimeFlowType === FIRST_TIME_FLOW_TYPES.IMPORT
? t('importMyWallet')
: t('createNewWallet')}
</Button>
</form>
</Box>
</div>
);
}
CreatePassword.propTypes = {
createNewAccount: PropTypes.func,
importWithRecoveryPhrase: PropTypes.func,
secretRecoveryPhrase: PropTypes.string,
};