password screen spinner implemented

pull/2242/head
koray-eren 3 years ago
parent afd63c230e
commit c872f22014

@ -3,6 +3,7 @@
const { ipcRenderer } = require('electron');
const url = require('url');
const i18n = require('./ts/util/i18n');
const config = url.parse(window.location.toString(), true).query;
const { locale } = config;
const localeMessages = ipcRenderer.sendSync('locale-data');

@ -6,11 +6,14 @@ import { withTheme } from 'styled-components';
import autoBind from 'auto-bind';
import { SessionButton, SessionButtonColor, SessionButtonType } from './basic/SessionButton';
import { Constants } from '../session';
import { SessionSpinner } from './basic/SessionSpinner';
import { sleepFor } from '../session/utils/Promise';
interface State {
error: string;
errorCount: number;
clearDataView: boolean;
loading: boolean;
}
export const MAX_LOGIN_TRIES = 3;
@ -25,6 +28,7 @@ class SessionPasswordPromptInner extends React.PureComponent<{}, State> {
error: '',
errorCount: 0,
clearDataView: false,
loading: false,
};
autoBind(this);
@ -84,6 +88,7 @@ class SessionPasswordPromptInner extends React.PureComponent<{}, State> {
)}
</div>
);
const spinner = this.state.loading ? <SessionSpinner loading={true} /> : null;
return (
<div className={wrapperClass}>
@ -94,7 +99,7 @@ class SessionPasswordPromptInner extends React.PureComponent<{}, State> {
<h1>{infoTitle}</h1>
</div>
{featureElement}
{spinner || featureElement}
{errorSection}
{buttonGroup}
</div>
@ -125,9 +130,15 @@ class SessionPasswordPromptInner extends React.PureComponent<{}, State> {
this.setState({ error });
}
this.setState({
loading: false,
});
}
private async initLogin() {
this.setState({
loading: true,
});
const passPhrase = String((this.inputRef as HTMLInputElement).value);
await this.onLogin(passPhrase);
}

Loading…
Cancel
Save