2014-09-06 05:44:29 +08:00
|
|
|
|
2016-06-30 08:02:45 +08:00
|
|
|
var
|
|
|
|
_ = require('_'),
|
|
|
|
ko = require('ko'),
|
|
|
|
|
|
|
|
Settings = require('Storage/Settings'),
|
|
|
|
Remote = require('Remote/Admin/Ajax'),
|
|
|
|
|
|
|
|
kn = require('Knoin/Knoin'),
|
|
|
|
AbstractView = require('Knoin/AbstractView');
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @constructor
|
|
|
|
* @extends AbstractView
|
|
|
|
*/
|
|
|
|
function PaneSettingsAdminView()
|
|
|
|
{
|
|
|
|
AbstractView.call(this, 'Right', 'AdminPane');
|
|
|
|
|
|
|
|
this.adminDomain = ko.observable(Settings.settingsGet('AdminDomain'));
|
|
|
|
this.version = ko.observable(Settings.appSettingsGet('version'));
|
|
|
|
|
|
|
|
this.capa = !!Settings.settingsGet('PremType');
|
|
|
|
this.community = RL_COMMUNITY;
|
|
|
|
|
|
|
|
this.adminManLoading = ko.computed(function() {
|
|
|
|
return '000' !== [
|
|
|
|
require('Stores/Admin/Domain').domains.loading() ? '1' : '0',
|
|
|
|
require('Stores/Admin/Plugin').plugins.loading() ? '1' : '0',
|
|
|
|
require('Stores/Admin/Package').packages.loading() ? '1' : '0'
|
|
|
|
].join('');
|
|
|
|
}, this);
|
|
|
|
|
|
|
|
this.adminManLoadingVisibility = ko.computed(function() {
|
|
|
|
return this.adminManLoading() ? 'visible' : 'hidden';
|
|
|
|
}, this).extend({'rateLimit': 300});
|
|
|
|
|
|
|
|
kn.constructorEnd(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
kn.extendAsViewModel(['View/Admin/Settings/Pane', 'AdminSettingsPaneViewModel'], PaneSettingsAdminView);
|
|
|
|
_.extend(PaneSettingsAdminView.prototype, AbstractView.prototype);
|
|
|
|
|
|
|
|
PaneSettingsAdminView.prototype.logoutClick = function()
|
|
|
|
{
|
|
|
|
Remote.adminLogout(function() {
|
|
|
|
require('App/Admin').default.loginAndLogoutReload(true, true);
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
module.exports = PaneSettingsAdminView;
|