175 lines
5.5 KiB
TypeScript
175 lines
5.5 KiB
TypeScript
import { STRING_NON_MATCHING_PASSWORDS } from '@/strings';
|
|
import { WebApplication } from '@/ui_models/application';
|
|
import { AppState } from '@/ui_models/app_state';
|
|
import { observer } from 'mobx-react-lite';
|
|
import { FunctionComponent } from 'preact';
|
|
import { useEffect, useRef, useState } from 'preact/hooks';
|
|
import { AccountMenuPane } from '.';
|
|
import { Button } from '../Button';
|
|
import { Checkbox } from '../Checkbox';
|
|
import { IconButton } from '../IconButton';
|
|
import { InputWithIcon } from '../InputWithIcon';
|
|
import { AdvancedOptions } from './AdvancedOptions';
|
|
|
|
type Props = {
|
|
appState: AppState;
|
|
application: WebApplication;
|
|
setMenuPane: (pane: AccountMenuPane) => void;
|
|
email: string;
|
|
password: string;
|
|
};
|
|
|
|
export const ConfirmPassword: FunctionComponent<Props> = observer(
|
|
({ application, appState, setMenuPane, email, password }) => {
|
|
const { notesAndTagsCount } = appState.accountMenu;
|
|
const [confirmPassword, setConfirmPassword] = useState('');
|
|
const [showPassword, setShowPassword] = useState(false);
|
|
const [isRegistering, setIsRegistering] = useState(false);
|
|
const [isEphemeral, setIsEphemeral] = useState(false);
|
|
const [shouldMergeLocal, setShouldMergeLocal] = useState(true);
|
|
const [error, setError] = useState('');
|
|
|
|
const passwordInputRef = useRef<HTMLInputElement>(null);
|
|
|
|
useEffect(() => {
|
|
passwordInputRef.current?.focus();
|
|
}, []);
|
|
|
|
const handlePasswordChange = (e: Event) => {
|
|
if (e.target instanceof HTMLInputElement) {
|
|
setConfirmPassword(e.target.value);
|
|
}
|
|
};
|
|
|
|
const handleEphemeralChange = () => {
|
|
setIsEphemeral(!isEphemeral);
|
|
};
|
|
|
|
const handleShouldMergeChange = () => {
|
|
setShouldMergeLocal(!shouldMergeLocal);
|
|
};
|
|
|
|
const handleKeyDown = (e: KeyboardEvent) => {
|
|
if (error.length) {
|
|
setError('');
|
|
}
|
|
if (e.key === 'Enter') {
|
|
handleConfirmFormSubmit(e);
|
|
}
|
|
};
|
|
|
|
const handleConfirmFormSubmit = (e: Event) => {
|
|
e.preventDefault();
|
|
|
|
if (!password) {
|
|
passwordInputRef.current?.focus();
|
|
return;
|
|
}
|
|
|
|
if (password === confirmPassword) {
|
|
setIsRegistering(true);
|
|
application
|
|
.register(email, password, isEphemeral, shouldMergeLocal)
|
|
.then((res) => {
|
|
if (res.error) {
|
|
throw new Error(res.error.message);
|
|
}
|
|
appState.accountMenu.closeAccountMenu();
|
|
appState.accountMenu.setCurrentPane(AccountMenuPane.GeneralMenu);
|
|
})
|
|
.catch((err) => {
|
|
console.error(err);
|
|
setError(err.message);
|
|
})
|
|
.finally(() => {
|
|
setIsRegistering(false);
|
|
});
|
|
} else {
|
|
setError(STRING_NON_MATCHING_PASSWORDS);
|
|
setConfirmPassword('');
|
|
passwordInputRef.current?.focus();
|
|
}
|
|
};
|
|
|
|
const handleGoBack = () => {
|
|
setMenuPane(AccountMenuPane.Register);
|
|
};
|
|
|
|
return (
|
|
<>
|
|
<div className="flex items-center px-3 mt-1 mb-3">
|
|
<IconButton
|
|
icon="arrow-left"
|
|
title="Go back"
|
|
className="flex mr-2 color-neutral"
|
|
onClick={handleGoBack}
|
|
focusable={true}
|
|
disabled={isRegistering}
|
|
/>
|
|
<div className="sn-account-menu-headline">Confirm password</div>
|
|
</div>
|
|
<div className="px-3 mb-3 text-sm">
|
|
Because your notes are encrypted using your password,{' '}
|
|
<span className="color-dark-red">
|
|
Standard Notes does not have a password reset option
|
|
</span>
|
|
. If you forget your password, you will permanently lose access to
|
|
your data.
|
|
</div>
|
|
<form onSubmit={handleConfirmFormSubmit} className="px-3 mb-1">
|
|
<InputWithIcon
|
|
className="mb-2"
|
|
icon="password"
|
|
inputType={showPassword ? 'text' : 'password'}
|
|
placeholder="Confirm password"
|
|
value={confirmPassword}
|
|
onChange={handlePasswordChange}
|
|
onKeyDown={handleKeyDown}
|
|
toggle={{
|
|
toggleOnIcon: 'eye-off',
|
|
toggleOffIcon: 'eye',
|
|
title: 'Show password',
|
|
toggled: showPassword,
|
|
onClick: setShowPassword,
|
|
}}
|
|
ref={passwordInputRef}
|
|
disabled={isRegistering}
|
|
/>
|
|
{error ? <div className="color-dark-red my-2">{error}</div> : null}
|
|
<Button
|
|
className="btn-w-full mt-1 mb-3"
|
|
label={
|
|
isRegistering ? 'Creating account...' : 'Create account & sign in'
|
|
}
|
|
type="primary"
|
|
onClick={handleConfirmFormSubmit}
|
|
disabled={isRegistering}
|
|
/>
|
|
<Checkbox
|
|
name="is-ephemeral"
|
|
label="Stay signed in"
|
|
checked={!isEphemeral}
|
|
onChange={handleEphemeralChange}
|
|
disabled={isRegistering}
|
|
/>
|
|
{notesAndTagsCount > 0 ? (
|
|
<Checkbox
|
|
name="should-merge-local"
|
|
label={`Merge local data (${notesAndTagsCount} notes and tags)`}
|
|
checked={shouldMergeLocal}
|
|
onChange={handleShouldMergeChange}
|
|
disabled={isRegistering}
|
|
/>
|
|
) : null}
|
|
</form>
|
|
<div className="h-1px my-2 bg-border"></div>
|
|
<AdvancedOptions
|
|
appState={appState}
|
|
application={application}
|
|
disabled={isRegistering}
|
|
/>
|
|
</>
|
|
);
|
|
}
|
|
);
|