hedera-web/forms/admin/connections/connections.js

54 lines
861 B
JavaScript
Raw Normal View History

2015-12-10 23:24:14 +00:00
2016-09-26 09:28:47 +00:00
Hedera.Connections = new Class
2015-12-10 23:24:14 +00:00
({
2016-09-26 09:28:47 +00:00
Extends: Hedera.Form
2015-12-10 23:24:14 +00:00
,_timeoutId: null
,onModelStatusChange: function (model, status)
2015-12-10 23:24:14 +00:00
{
if (!model.ready)
return;
if (this._timeoutId)
clearTimeout (this._timeoutId);
this._timeoutId = setTimeout (this.onRefreshClick.bind (this), 60000);
2015-12-10 23:24:14 +00:00
}
,deactivate: function ()
{
clearTimeout (this._timeoutId);
2015-12-10 23:24:14 +00:00
}
,onRefreshClick: function ()
{
this.$('sessions').refresh ();
}
,onAccessLogClick: function (button, form)
{
this.hash.set ({
'form': 'admin/access-log'
,'user': form.get ('user_id')
});
}
,onChangeUserClick: function (button, form)
{
2016-10-04 15:27:49 +00:00
this.gui.supplantUser (form.get ('user'),
this._onUserSupplant.bind (this));
2015-12-10 23:24:14 +00:00
}
2016-10-04 15:27:49 +00:00
,_onUserSupplant: function (userName)
2015-12-10 23:24:14 +00:00
{
this.hash.set ({'form': 'ecomerce/orders'});
}
,sessionsFunc: function ()
{
return 1;
}
});