mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-01-07 15:27:43 +08:00
32 lines
736 B
JavaScript
32 lines
736 B
JavaScript
|
|
var
|
|
ko = require('ko'),
|
|
|
|
Utils = require('Common/Utils'),
|
|
|
|
Settings = require('Storage/Settings');
|
|
|
|
/**
|
|
* @constructor
|
|
*/
|
|
function ThemeStore()
|
|
{
|
|
this.themes = ko.observableArray([]);
|
|
this.themeBackgroundName = ko.observable('');
|
|
this.themeBackgroundHash = ko.observable('');
|
|
|
|
this.theme = ko.observable('')
|
|
.extend({'limitedList': this.themes});
|
|
}
|
|
|
|
ThemeStore.prototype.populate = function()
|
|
{
|
|
var aThemes = Settings.appSettingsGet('themes');
|
|
|
|
this.themes(Utils.isArray(aThemes) ? aThemes : []);
|
|
this.theme(Settings.settingsGet('Theme'));
|
|
this.themeBackgroundName(Settings.settingsGet('UserBackgroundName'));
|
|
this.themeBackgroundHash(Settings.settingsGet('UserBackgroundHash'));
|
|
};
|
|
|
|
module.exports = new ThemeStore();
|