ghost
Version:
The professional publishing platform
29 lines (27 loc) • 1.54 kB
JavaScript
const debug = require('@tryghost/debug')('themes');
const bridge = require('../../../bridge');
const customThemeSettings = require('../custom-theme-settings');
/**
* These helper methods mean that the bridge is only required in one place
* And also adds a little debug statement, which is very handy when debugging theme logic
*/
module.exports = {
activateFromBoot: async (themeName, theme, checkedTheme) => {
debug('Activating theme (method A on boot)', themeName);
// TODO: probably a better place for this to happen - after successful activation / when reloading site?
await customThemeSettings.api.activateTheme(themeName, checkedTheme);
await bridge.activateTheme(theme, checkedTheme);
},
activateFromAPI: async (themeName, theme, checkedTheme) => {
debug('Activating theme (method B on API "activate")', themeName);
// TODO: probably a better place for this to happen - after successful activation / when reloading site?
await customThemeSettings.api.activateTheme(themeName, checkedTheme);
await bridge.activateTheme(theme, checkedTheme);
},
activateFromAPIOverride: async (themeName, theme, checkedTheme) => {
debug('Activating theme (method C on API "override")', themeName);
// TODO: probably a better place for this to happen - after successful activation / when reloading site?
await customThemeSettings.api.activateTheme(themeName, checkedTheme);
await bridge.activateTheme(theme, checkedTheme);
}
};