refactoring seed modal

pull/1846/head
Warrick Corfe-Tan 4 years ago
parent af298936d9
commit 1783c706b5

@ -1,4 +1,4 @@
import React from 'react'; import React, { useState } from 'react';
import { SessionButton } from '../session/SessionButton'; import { SessionButton } from '../session/SessionButton';
import { ToastUtils, UserUtils } from '../../session/utils'; import { ToastUtils, UserUtils } from '../../session/utils';
@ -9,73 +9,34 @@ import { QRCode } from 'react-qr-svg';
import { mn_decode } from '../../session/crypto/mnemonic'; import { mn_decode } from '../../session/crypto/mnemonic';
import { SessionWrapperModal } from '../session/SessionWrapperModal'; import { SessionWrapperModal } from '../session/SessionWrapperModal';
import { SpacerLG, SpacerSM, SpacerXS } from '../basic/Text'; import { SpacerLG, SpacerSM, SpacerXS } from '../basic/Text';
import autoBind from 'auto-bind';
import { recoveryPhraseModal } from '../../state/ducks/modalDialog'; import { recoveryPhraseModal } from '../../state/ducks/modalDialog';
import { useEffect } from 'react';
interface State { interface Props {
error: string; onClickOk?: () => any;
loadingPassword: boolean;
loadingSeed: boolean;
recoveryPhrase: string;
hasPassword: boolean | null;
passwordHash: string;
passwordValid: boolean;
} }
class SessionSeedModalInner extends React.Component<{}, State> { const SessionSeedModalInner = (props: Props) => {
constructor(props: any) { const [error, setError] = useState('');
super(props); const [loadingPassword, setLoadingPassword] = useState(true);
const [loadingSeed, setLoadingSeed] = useState(true);
this.state = { const [recoveryPhrase, setRecoveryPhrase] = useState('');
error: '', const [hasPassword, setHasPassword] = useState<null | boolean>(null);
loadingPassword: true, const [passwordHash, setPasswordHash] = useState('');
loadingSeed: true, const [passwordValid, setPasswordValid] = useState(false);
recoveryPhrase: '',
hasPassword: null,
passwordHash: '',
passwordValid: false,
};
autoBind(this);
}
public componentDidMount() { useEffect(() => {
setTimeout(() => ($('#seed-input-password') as any).focus(), 100); setTimeout(() => ($('#seed-input-password') as any).focus(), 100);
void checkHasPassword();
void getRecoveryPhrase();
}, []);
void this.checkHasPassword();
void this.getRecoveryPhrase();
}
public render() { const i18n = window.i18n;
const i18n = window.i18n;
const { hasPassword, passwordValid } = this.state; const onClose = () => window.inboxStore?.dispatch(recoveryPhraseModal(null));
const loading = this.state.loadingPassword || this.state.loadingSeed;
const onClose = () => window.inboxStore?.dispatch(recoveryPhraseModal(null));
return ( const renderPasswordView = () => {
<>
{!loading && (
<SessionWrapperModal
title={i18n('showRecoveryPhrase')}
onClose={onClose}
showExitIcon={true}
>
<SpacerSM />
{hasPassword && !passwordValid ? (
<>{this.renderPasswordView()}</>
) : (
<>{this.renderSeedView()}</>
)}
</SessionWrapperModal>
)}
</>
);
}
private renderPasswordView() {
const error = this.state.error;
const i18n = window.i18n; const i18n = window.i18n;
const onClose = () => window.inboxStore?.dispatch(recoveryPhraseModal(null)); const onClose = () => window.inboxStore?.dispatch(recoveryPhraseModal(null));
@ -87,7 +48,7 @@ class SessionSeedModalInner extends React.Component<{}, State> {
type="password" type="password"
id="seed-input-password" id="seed-input-password"
placeholder={i18n('password')} placeholder={i18n('password')}
onKeyUp={this.onEnter} onKeyUp={onEnter}
/> />
{error && ( {error && (
@ -100,7 +61,7 @@ class SessionSeedModalInner extends React.Component<{}, State> {
<SpacerLG /> <SpacerLG />
<div className="session-modal__button-group"> <div className="session-modal__button-group">
<SessionButton text={i18n('ok')} onClick={this.confirmPassword} /> <SessionButton text={i18n('ok')} onClick={confirmPassword} />
<SessionButton text={i18n('cancel')} onClick={onClose} /> <SessionButton text={i18n('cancel')} onClick={onClose} />
</div> </div>
@ -108,12 +69,12 @@ class SessionSeedModalInner extends React.Component<{}, State> {
); );
} }
private renderSeedView() { const renderSeedView = () => {
const i18n = window.i18n; const i18n = window.i18n;
const bgColor = '#FFFFFF'; const bgColor = '#FFFFFF';
const fgColor = '#1B1B1B'; const fgColor = '#1B1B1B';
const hexEncodedSeed = mn_decode(this.state.recoveryPhrase, 'english'); const hexEncodedSeed = mn_decode(recoveryPhrase, 'english');
return ( return (
<> <>
@ -121,7 +82,7 @@ class SessionSeedModalInner extends React.Component<{}, State> {
<p className="session-modal__description">{i18n('recoveryPhraseSavePromptMain')}</p> <p className="session-modal__description">{i18n('recoveryPhraseSavePromptMain')}</p>
<SpacerXS /> <SpacerXS />
<i className="session-modal__text-highlight">{this.state.recoveryPhrase}</i> <i className="session-modal__text-highlight">{recoveryPhrase}</i>
</div> </div>
<SpacerLG /> <SpacerLG />
<div className="qr-image"> <div className="qr-image">
@ -132,7 +93,7 @@ class SessionSeedModalInner extends React.Component<{}, State> {
<SessionButton <SessionButton
text={i18n('copy')} text={i18n('copy')}
onClick={() => { onClick={() => {
this.copyRecoveryPhrase(this.state.recoveryPhrase); copyRecoveryPhrase(recoveryPhrase);
}} }}
/> />
</div> </div>
@ -140,77 +101,88 @@ class SessionSeedModalInner extends React.Component<{}, State> {
); );
} }
private confirmPassword() { const confirmPassword = () => {
const passwordHash = this.state.passwordHash;
const passwordValue = jQuery('#seed-input-password').val(); const passwordValue = jQuery('#seed-input-password').val();
const isPasswordValid = PasswordUtil.matchesHash(passwordValue as string, passwordHash); const isPasswordValid = PasswordUtil.matchesHash(passwordValue as string, passwordHash);
if (!passwordValue) { if (!passwordValue) {
this.setState({ setError('noGivenPassword');
error: window.i18n('noGivenPassword'),
});
return false; return false;
} }
if (passwordHash && !isPasswordValid) { if (passwordHash && !isPasswordValid) {
this.setState({ setError('invalidPassword');
error: window.i18n('invalidPassword'),
});
return false; return false;
} }
this.setState({ setPasswordValid(true);
passwordValid: true, setError('');
error: '',
});
window.removeEventListener('keyup', this.onEnter);
window.removeEventListener('keyup', onEnter);
return true; return true;
} }
private async checkHasPassword() { const checkHasPassword = async () => {
if (!this.state.loadingPassword) { if (!loadingPassword) {
return; return;
} }
const hash = await getPasswordHash(); const hash = await getPasswordHash();
this.setState({ setHasPassword(!!hash);
hasPassword: !!hash, setPasswordHash(hash || '');
passwordHash: hash || '', setLoadingPassword(false);
loadingPassword: false,
});
} }
private async getRecoveryPhrase() { const getRecoveryPhrase = async () => {
if (this.state.recoveryPhrase) { if (recoveryPhrase) {
return false; return false;
} }
const newRecoveryPhrase = UserUtils.getCurrentRecoveryPhrase();
const recoveryPhrase = UserUtils.getCurrentRecoveryPhrase(); setRecoveryPhrase(newRecoveryPhrase);
setLoadingSeed(false);
this.setState({
recoveryPhrase,
loadingSeed: false,
});
return true; return true;
} }
private copyRecoveryPhrase(recoveryPhrase: string) { const copyRecoveryPhrase = (recoveryPhrase: string) => {
window.clipboard.writeText(recoveryPhrase); window.clipboard.writeText(recoveryPhrase);
ToastUtils.pushCopiedToClipBoard(); ToastUtils.pushCopiedToClipBoard();
window.inboxStore?.dispatch(recoveryPhraseModal(null)); window.inboxStore?.dispatch(recoveryPhraseModal(null));
} }
private onEnter(event: any) { const onEnter = (event: any) => {
if (event.key === 'Enter') { if (event.key === 'Enter') {
this.confirmPassword(); confirmPassword();
} }
} }
if (Math.random() > 0.5) {
return null;
}
return (
<>
{!loadingSeed && (
<SessionWrapperModal
title={i18n('showRecoveryPhrase')}
onClose={onClose}
showExitIcon={true}
>
<SpacerSM />
{hasPassword && !passwordValid ? (
<>{renderPasswordView()}</>
) : (
<>{renderSeedView()}</>
)}
</SessionWrapperModal>
)}
:
</>
);
} }
export const SessionSeedModal = withTheme(SessionSeedModalInner); // withTheme(SessionSeedModalInner)
// export const SessionSeedModal = withTheme(SessionSeedModalInner);
export const SessionSeedModal = SessionSeedModalInner;

Loading…
Cancel
Save