* feat: Add new icons * Revert "feat: Add new icons" This reverts commit 0acb403fe846dbb2e48fd22de35c3568c3cb4453. * feat: Add new icons for account menu * feat: Add new Icons * feat: Add "currentPane" state to prefs view * feat: Update account menu to new design * feat: Add input component with icon & toggle * fix: sync icon & function * fix: Fix eye icon * feat: Create re-usable checkbox feat: Add "merge local" option * feat: Allow using className on IconButton * feat: Add disabled state on input feat: Make toggle circle * refactor: Move checkbox to components * feat: Handle invalid email/password error * feat: Implement new design for Create Account * feat: Implement new account menu design * feat: Add disabled option to IconButton * feat: Set account menu pane from other component * feat: Add 2fa account menu pane feat: Add lock icon * feat: Remove unnecessary 2FA menu pane feat: Reset current menu pane on clickOutside * feat: Change "Log in" to "Sign in" * feat: Remove sync from footer * feat: Change "Login" to "Sign in" feat: Add spinner to "Syncing..." refactor: Use then-catch-finally for sync * feat: Use common enableCustomServer state * feat: Animate account menu closing * fix: Reset menu pane only after it's closed * feat: Add keyDown handler to InputWithIcon * feat: Handle Enter press in inputs * Update app/assets/javascripts/components/InputWithIcon.tsx Co-authored-by: Antonella Sgarlatta <antsgar@gmail.com> * Update app/assets/javascripts/components/InputWithIcon.tsx Co-authored-by: Antonella Sgarlatta <antsgar@gmail.com> * refactor: Use server state from AccountMenuState * Update app/assets/javascripts/components/AccountMenu/CreateAccount.tsx Co-authored-by: Antonella Sgarlatta <antsgar@gmail.com> * Update app/assets/javascripts/components/AccountMenu/ConfirmPassword.tsx Co-authored-by: Antonella Sgarlatta <antsgar@gmail.com> * feat: Use common AdvancedOptions * feat: Add "eye-off" icon and toggle state * feat: Allow undefined values * refactor: Remove enableCustomServer state * feat: Persist server option state * feat: Add bottom-100 and cursor-auto util classes refactor: Use bottom-100 and cursor-auto classes * refactor: Invert ternary operator * refactor: Remove unused imports * refactor: Use toggled as prop instead of state * refactor: Change "Log in/out" to "Sign in/out" * refactor: Change "Login" to "Sign in" * refactor: Remove hardcoded width/height * refactor: Use success class * feat: Remove hardcoded width & height from svg * fix: Fix chevron-down icon Co-authored-by: Antonella Sgarlatta <antsgar@gmail.com> Co-authored-by: Antonella Sgarlatta <antonella@standardnotes.org>
173 lines
5.4 KiB
TypeScript
173 lines
5.4 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 { StateUpdater, 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;
|
|
setPassword: StateUpdater<string>;
|
|
};
|
|
|
|
export const ConfirmPassword: FunctionComponent<Props> = observer(
|
|
({ application, appState, setMenuPane, email, password, setPassword }) => {
|
|
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 passwordInputRef = useRef<HTMLInputElement>();
|
|
|
|
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 (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);
|
|
application.alertService.alert(err).finally(() => {
|
|
setPassword('');
|
|
handleGoBack();
|
|
});
|
|
})
|
|
.finally(() => {
|
|
setIsRegistering(false);
|
|
});
|
|
} else {
|
|
application.alertService
|
|
.alert(STRING_NON_MATCHING_PASSWORDS)
|
|
.finally(() => {
|
|
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}
|
|
/>
|
|
<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}
|
|
/>
|
|
</>
|
|
);
|
|
}
|
|
);
|