|
|
|
@ -25,6 +25,8 @@ export class SessionPasswordPrompt extends React.PureComponent<{}, State> {
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
this.onKeyUp = this.onKeyUp.bind(this);
|
|
|
|
|
this.onPaste = this.onPaste.bind(this);
|
|
|
|
|
|
|
|
|
|
this.initLogin = this.initLogin.bind(this);
|
|
|
|
|
this.initClearDataView = this.initClearDataView.bind(this);
|
|
|
|
|
}
|
|
|
|
@ -62,6 +64,7 @@ export class SessionPasswordPrompt extends React.PureComponent<{}, State> {
|
|
|
|
|
placeholder={' '}
|
|
|
|
|
onKeyUp={this.onKeyUp}
|
|
|
|
|
maxLength={window.CONSTANTS.MAX_PASSWORD_LENGTH}
|
|
|
|
|
onPaste={this.onPaste}
|
|
|
|
|
/>
|
|
|
|
|
);
|
|
|
|
|
const infoIcon = this.state.clearDataView ? (
|
|
|
|
@ -120,18 +123,31 @@ export class SessionPasswordPrompt extends React.PureComponent<{}, State> {
|
|
|
|
|
event.preventDefault();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public onPaste(event: any) {
|
|
|
|
|
const clipboard = event.clipboardData.getData('text');
|
|
|
|
|
|
|
|
|
|
if (clipboard.length > window.CONSTANTS.MAX_PASSWORD_LENGTH){
|
|
|
|
|
this.setState({
|
|
|
|
|
error: String(window.i18n('pasteLongPasswordToastTitle', window.CONSTANTS.MAX_PASSWORD_LENGTH))
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Prevent pating into input
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public async onLogin(passPhrase: string) {
|
|
|
|
|
const trimmed = passPhrase ? passPhrase.trim() : passPhrase;
|
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
await window.onLogin(trimmed);
|
|
|
|
|
} catch (e) {
|
|
|
|
|
} catch (error) {
|
|
|
|
|
// Increment the error counter and show the button if necessary
|
|
|
|
|
this.setState({
|
|
|
|
|
errorCount: this.state.errorCount + 1,
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
this.setState({ error: e });
|
|
|
|
|
this.setState({ error });
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|