Files
snappymail/dev/View/Admin/Login.js
2021-02-10 17:16:46 +01:00

92 lines
1.9 KiB
JavaScript

import ko from 'ko';
import { StorageResultType, Notification } from 'Common/Enums';
import { getNotification } from 'Common/Translator';
import Remote from 'Remote/Admin/Fetch';
import { command } from 'Knoin/Knoin';
import { AbstractViewCenter } from 'Knoin/AbstractViews';
class LoginAdminView extends AbstractViewCenter {
constructor() {
super('Admin/Login', 'AdminLogin');
const appSettingsGet = rl.settings.app;
this.mobile = !!appSettingsGet('mobile');
this.mobileDevice = !!appSettingsGet('mobileDevice');
this.hideSubmitButton = appSettingsGet('hideSubmitButton');
this.addObservables({
login: '',
password: '',
loginError: false,
passwordError: false,
formHidden: false,
submitRequest: false,
submitError: ''
});
this.formError = ko.observable(false).extend({ 'falseTimeout': 500 });
this.addSubscribables({
login: () => this.loginError(false),
password: () => this.passwordError(false),
loginError: v => this.formError(!!v),
passwordError: v => this.formError(!!v)
});
}
@command((self) => !self.submitRequest())
submitCommand() {
this.loginError(false);
this.passwordError(false);
this.loginError(!this.login().trim());
this.passwordError(!this.password().trim());
if (this.loginError() || this.passwordError()) {
return false;
}
this.submitRequest(true);
Remote.adminLogin(
(sResult, oData) => {
if (StorageResultType.Success === sResult && oData && 'AdminLogin' === oData.Action) {
if (oData.Result) {
rl.route.reload();
} else if (oData.ErrorCode) {
this.submitRequest(false);
this.submitError(getNotification(oData.ErrorCode));
}
} else {
this.submitRequest(false);
this.submitError(getNotification(Notification.UnknownError));
}
},
this.login(),
this.password()
);
return true;
}
onShow() {
rl.route.off();
}
submitForm() {
this.submitCommand();
}
}
export { LoginAdminView };