extract loadLabel logic to reuse in SessionPickerViewModel

This commit is contained in:
Bruno Windels 2020-04-22 21:53:37 +02:00
parent 067027d376
commit b2954fd774
2 changed files with 48 additions and 31 deletions

View file

@ -1,6 +1,21 @@
import {EventEmitter} from "../utils/EventEmitter.js"; import {EventEmitter} from "../utils/EventEmitter.js";
import {LoadStatus, LoginFailure} from "../matrix/SessionContainer.js"; import {LoadStatus, LoginFailure} from "../matrix/SessionContainer.js";
import {AbortError} from "../utils/error.js"; import {AbortError} from "../utils/error.js";
import {loadLabel} from "./common.js";
function loadLoginLabel(loadStatus, loadError, loginFailure, homeserver) {
if (!loadError && loadStatus && loadStatus.get() === LoadStatus.LoginFailed) {
switch (loginFailure) {
case LoginFailure.LoginFailure:
return `Your username and/or password don't seem to be correct.`;
case LoginFailure.Connection:
return `Can't connect to ${homeserver}.`;
case LoginFailure.Unknown:
return `Something went wrong while checking your login and password.`;
}
}
return loadLabel(loadStatus, loadError);
}
export class LoginViewModel extends EventEmitter { export class LoginViewModel extends EventEmitter {
constructor({sessionCallback, defaultHomeServer, createSessionContainer}) { constructor({sessionCallback, defaultHomeServer, createSessionContainer}) {
@ -22,7 +37,7 @@ export class LoginViewModel extends EventEmitter {
get loading() {return this._loading} get loading() {return this._loading}
get showLoadLabel() { get showLoadLabel() {
return this._loading || this._sessionContainer; return this._loading || this._sessionContainer || this._error;
} }
async login(username, password, homeserver) { async login(username, password, homeserver) {
@ -43,7 +58,8 @@ export class LoginViewModel extends EventEmitter {
} catch (err) { } catch (err) {
if (err instanceof AbortError) { if (err instanceof AbortError) {
// login was cancelled // login was cancelled
return; } else {
throw err;
} }
} }
this._loadWaitHandle = null; this._loadWaitHandle = null;
@ -57,7 +73,6 @@ export class LoginViewModel extends EventEmitter {
console.error(this._sessionContainer.loadError); console.error(this._sessionContainer.loadError);
} }
} }
} catch (err) { } catch (err) {
this._error = err; this._error = err;
this._loading = false; this._loading = false;
@ -67,36 +82,16 @@ export class LoginViewModel extends EventEmitter {
get loadLabel() { get loadLabel() {
if (this._error) { if (this._error) {
return `Something went wrong: ${this._error.message}.`; return loadLabel(null, this._error);
} }
if (this.showLoadLabel) { if (this.showLoadLabel) {
if (this._sessionContainer) { const sc = this._sessionContainer;
switch (this._sessionContainer.loadStatus.get()) { return loadLoginLabel(
case LoadStatus.NotLoading: sc && sc.loadStatus,
return `Preparing…`; sc && sc.loadError,
case LoadStatus.Login: sc && sc.loginFailure,
return `Checking your login and password…`; this._homeserver
case LoadStatus.LoginFailed: );
switch (this._sessionContainer.loginFailure) {
case LoginFailure.LoginFailure:
return `Your username and/or password don't seem to be correct.`;
case LoginFailure.Connection:
return `Can't connect to ${this._homeserver}.`;
case LoginFailure.Unknown:
return `Something went wrong while checking your login and password.`;
}
break;
case LoadStatus.Loading:
return `Loading your conversations…`;
case LoadStatus.FirstSync:
return `Getting your conversations from the server…`;
case LoadStatus.Error:
return `Something went wrong: ${this._sessionContainer.loadError.message}.`;
default:
return this._sessionContainer.loadStatus.get();
}
}
return `Preparing…`;
} }
return null; return null;
} }

22
src/domain/common.js Normal file
View file

@ -0,0 +1,22 @@
import {LoadStatus} from "../matrix/SessionContainer.js";
export function loadLabel(loadStatus, loadError) {
if (loadError || loadStatus.get() === LoadStatus.Error) {
return `Something went wrong: ${loadError && loadError.message}.`;
}
if (loadStatus) {
switch (loadStatus.get()) {
case LoadStatus.NotLoading:
return `Preparing…`;
case LoadStatus.Login:
return `Checking your login and password…`;
case LoadStatus.Loading:
return `Loading your conversations…`;
case LoadStatus.FirstSync:
return `Getting your conversations from the server…`;
default:
return this._sessionContainer.loadStatus.get();
}
}
return `Preparing…`;
}