snappymail/dev/Settings/Admin/About.js

100 lines
2.2 KiB
JavaScript
Raw Normal View History

2014-08-21 23:08:34 +08:00
2014-09-05 06:49:03 +08:00
(function () {
2014-08-21 23:08:34 +08:00
2014-08-25 23:49:01 +08:00
'use strict';
2014-08-21 23:08:34 +08:00
var
ko = require('ko'),
2015-03-28 06:06:56 +08:00
Translator = require('Common/Translator'),
Settings = require('Storage/Settings'),
2015-05-03 04:22:32 +08:00
CoreStore = require('Stores/Admin/Core'),
AppStore = require('Stores/Admin/App')
2014-08-21 23:08:34 +08:00
;
/**
* @constructor
*/
function AboutAdminSettings()
2014-08-21 23:08:34 +08:00
{
2014-08-27 23:59:44 +08:00
this.version = ko.observable(Settings.settingsGet('Version'));
this.access = ko.observable(!!Settings.settingsGet('CoreAccess'));
2014-08-21 23:08:34 +08:00
this.errorDesc = ko.observable('');
this.coreReal = CoreStore.coreReal;
this.coreChannel = CoreStore.coreChannel;
this.coreType = CoreStore.coreType;
this.coreUpdatable = CoreStore.coreUpdatable;
this.coreAccess = CoreStore.coreAccess;
this.coreChecking = CoreStore.coreChecking;
this.coreUpdating = CoreStore.coreUpdating;
2015-02-16 22:42:24 +08:00
this.coreWarning = CoreStore.coreWarning;
this.coreVersion = CoreStore.coreVersion;
this.coreRemoteVersion = CoreStore.coreRemoteVersion;
this.coreRemoteRelease = CoreStore.coreRemoteRelease;
this.coreVersionCompare = CoreStore.coreVersionCompare;
2014-08-21 23:08:34 +08:00
2015-05-03 04:22:32 +08:00
this.community = RL_COMMUNITY || AppStore.community();
2015-03-28 06:06:56 +08:00
this.coreRemoteVersionHtmlDesc = ko.computed(function () {
Translator.trigger();
2015-03-28 06:06:56 +08:00
return Translator.i18n('TAB_ABOUT/HTML_NEW_VERSION', {'VERSION': this.coreRemoteVersion()});
}, this);
2014-08-21 23:08:34 +08:00
this.statusType = ko.computed(function () {
var
sType = '',
iVersionCompare = this.coreVersionCompare(),
bChecking = this.coreChecking(),
bUpdating = this.coreUpdating(),
bReal = this.coreReal()
;
if (bChecking)
{
sType = 'checking';
}
else if (bUpdating)
{
sType = 'updating';
}
else if (bReal && 0 === iVersionCompare)
{
sType = 'up-to-date';
}
else if (bReal && -1 === iVersionCompare)
{
sType = 'available';
}
else if (!bReal)
{
sType = 'error';
this.errorDesc('Cannot access the repository at the moment.');
}
return sType;
}, this);
}
AboutAdminSettings.prototype.onBuild = function ()
2014-08-21 23:08:34 +08:00
{
2015-05-03 04:22:32 +08:00
if (this.access() && !this.community)
2014-08-21 23:08:34 +08:00
{
require('App/Admin').reloadCoreData();
2014-08-21 23:08:34 +08:00
}
};
AboutAdminSettings.prototype.updateCoreData = function ()
2014-08-21 23:08:34 +08:00
{
2015-05-03 04:22:32 +08:00
if (!this.coreUpdating() && !this.community)
2014-08-21 23:08:34 +08:00
{
require('App/Admin').updateCoreData();
2014-08-21 23:08:34 +08:00
}
};
module.exports = AboutAdminSettings;
2014-08-21 23:08:34 +08:00
2014-09-05 06:49:03 +08:00
}());