hedera-web/js/hedera/app.js

162 lines
2.8 KiB
JavaScript
Raw Normal View History

2016-09-26 09:28:47 +00:00
var Login = require ('./login');
var Gui = require ('./gui');
module.exports = new Class
({
2016-09-24 14:32:31 +00:00
Extends: Vn.Object,
Properties:
{
conn:
{
type: Db.Connection
,get: function ()
{
return this._conn;
}
}
}
2015-11-09 08:14:33 +00:00
,initialize: function ()
{
2015-12-10 13:48:43 +00:00
window.onerror = this._onWindowError.bind (this);
window.onunload = this._onWindowUnload.bind (this);
Vn.Hash.initialize ();
2016-09-24 14:32:31 +00:00
var conn = new Db.Connection ();
this.link ({_conn: conn}, {'error': this._onConnError});
}
,run: function ()
{
var login = this._login = new Login ({conn: this._conn});
login.on ('login', this._onLogin, this);
login.show ();
}
2015-12-10 13:48:43 +00:00
,_onLogin: function ()
{
2015-12-10 13:48:43 +00:00
this._freeLogin ();
2015-12-10 23:24:14 +00:00
2016-09-26 09:28:47 +00:00
var gui = this._gui = new Gui ({conn: this._conn});
2015-12-10 13:48:43 +00:00
gui.on ('logout', this._onLogout, this);
gui.show ();
}
2015-12-10 13:48:43 +00:00
,_onLogout: function (gui)
{
2016-09-24 14:32:31 +00:00
localStorage.removeItem ('hederaGuest');
this._freeGui ();
this.run ();
}
2016-07-22 20:00:27 +00:00
,_onWindowUnload: function ()
{
this.unref ();
}
2016-10-14 10:58:35 +00:00
,_onWindowError: function (message, file, line, col, err)
{
var error = new Error (message);
error.fileName = file;
error.lineNumber = line;
2015-12-10 13:48:43 +00:00
this._notifyError (error);
}
,_onConnError: function (conn, error)
{
2016-08-22 10:41:05 +00:00
if (error instanceof Vn.JsonException)
switch (error.exception)
{
case 'BadLogin':
Htk.Toast.showError (_('Invalid login'));
this._logout ();
break;
case 'SessionExpired':
Htk.Toast.showError (_('You\'ve been too idle'));
this._logout ();
break;
case 'OutdatedVersion':
this._newVersion (error);
break;
default:
Htk.Toast.showError (error.message);
}
else
{
console.error (error);
this._notifyError (error);
}
}
2016-07-22 20:00:27 +00:00
,_logout: function ()
{
if (this._gui)
this._gui.logout ();
}
,_newVersion: function (error)
{
if (this.ignoreVersion)
return;
this.ignoreVersion = true;
var dialog = new Htk.Dialog ({
message: _('New version available')
,buttons: Htk.Dialog.Button.ACCEPT
,icon: 'warning'
});
dialog.on ('response', this._onNewVersionResponse, this);
dialog.open ();
}
,_onNewVersionResponse: function ()
{
location.reload ();
}
2015-12-10 13:48:43 +00:00
,_notifyError: function (error)
{
Htk.Toast.showError (_('Something went wrong'));
var params = {
'file': error.fileName
,'line': error.lineNumber
,'message': error.message
,'stack': error.stack
};
2016-09-23 22:47:34 +00:00
this._conn.send ('core/log', params);
}
2015-12-10 13:48:43 +00:00
,_freeLogin: function ()
{
if (this._login)
{
this._login.disconnectByInstance (this);
this._login.hide ();
this._login.unref ();
this._login = null;
}
}
,_freeGui: function ()
{
if (this._gui)
{
this._gui.disconnectByInstance (this);
this._gui.hide ();
this._gui.unref ();
this._gui = null;
}
}
,_destroy: function ()
{
2015-12-10 13:48:43 +00:00
this._freeLogin ();
this._freeGui ();
this._conn.unref ();
}
});
2016-09-26 09:28:47 +00:00