mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-03 23:00:14 -05:00
f8b498d6e7
no issue 🎨 Switch themes API to use config.availableThemes - this gets rid of the only places where settings.availableThemes are used 🔥 Get rid of settings.availableThemes - this is no longer used anywhere - also get rid of every related call to updateSettingsCache 🔥 Replace config.availableThemes with theme cache - Creates a tailor-made in-memory cache for themes inside the theme module - Add methods for getting & setting items on the cache - Move all references to config.availableThemes to use the new cache - This can be abstracted later to support other kinds of caches? 🎨 Start improving theme lib's API Still TODO: simplifying/clarifying: - what is the structure of the internal list - what is the difference between a package list, and a theme list? - what is the difference between reading a theme and loading it? - how do we update the theme list (add/remove) - how do we refresh the theme list? (hot reload?!) - how do we get from an internal list, to one that is sent as part of the API? - how are we going to handle theme storage: read/write, such that the path is configurable 🎨 Use themeList consistently 🎨 Update list after storage
36 lines
817 B
JavaScript
36 lines
817 B
JavaScript
/**
|
|
* Store themes after loading them from the file system
|
|
*/
|
|
var _ = require('lodash'),
|
|
themeListCache = {};
|
|
|
|
module.exports = {
|
|
get: function get(key) {
|
|
return themeListCache[key];
|
|
},
|
|
|
|
getAll: function getAll() {
|
|
return themeListCache;
|
|
},
|
|
|
|
set: function set(key, theme) {
|
|
themeListCache[key] = _.cloneDeep(theme);
|
|
return themeListCache[key];
|
|
},
|
|
|
|
del: function del(key) {
|
|
delete themeListCache[key];
|
|
},
|
|
|
|
init: function init(themes) {
|
|
var self = this;
|
|
// First, reset the cache
|
|
themeListCache = {};
|
|
// For each theme, call set. Allows us to do processing on set later.
|
|
_.each(themes, function (theme, key) {
|
|
self.set(key, theme);
|
|
});
|
|
|
|
return themeListCache;
|
|
}
|
|
};
|