mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-20 17:32:15 +03:00
bd597db829
- This is part of the quest to separate the frontend and server & get rid of all the places where there are cross-requires - At the moment the settings cache is one big shared cache used by the frontend and server liberally - This change doesn't really solve the fundamental problems, as we still depend on events, and requires from inside frontend - However it allows us to control the misuse slightly better by getting rid of restricted requires and turning on that eslint ruleset
49 lines
1.7 KiB
JavaScript
49 lines
1.7 KiB
JavaScript
const _ = require('lodash');
|
|
const themeList = require('./list');
|
|
const bridge = require('../../../bridge');
|
|
const packageJSON = require('@tryghost/package-json');
|
|
const settingsCache = require('../../../shared/settings-cache');
|
|
|
|
/**
|
|
*
|
|
* Provides a JSON object which can be returned via the API.
|
|
* You can either request all themes or a specific theme if you pass the `name` argument.
|
|
* Furthermore, you can pass a gscan result to filter warnings/errors.
|
|
*
|
|
* @TODO: settingsCache.get('active_theme') vs. active.get().name
|
|
*
|
|
* @param {string} [name] - the theme to output
|
|
* @param {object} [checkedTheme] - a theme result from gscan
|
|
* @return {}
|
|
*/
|
|
module.exports = function toJSON(name, checkedTheme) {
|
|
let themeResult;
|
|
let toFilter;
|
|
|
|
if (!name) {
|
|
toFilter = themeList.getAll();
|
|
themeResult = packageJSON.filter(toFilter, settingsCache.get('active_theme'));
|
|
} else {
|
|
toFilter = {
|
|
[name]: themeList.get(name)
|
|
};
|
|
|
|
themeResult = packageJSON.filter(toFilter, settingsCache.get('active_theme'));
|
|
|
|
if (checkedTheme && checkedTheme.results.warning.length > 0) {
|
|
themeResult[0].warnings = _.cloneDeep(checkedTheme.results.warning);
|
|
}
|
|
|
|
if (checkedTheme && checkedTheme.results.error.length > 0) {
|
|
themeResult[0].errors = _.cloneDeep(checkedTheme.results.error);
|
|
}
|
|
}
|
|
|
|
// CASE: if you want a JSON response for a single theme, which is not active.
|
|
if (_.find(themeResult, {active: true}) && bridge.getActiveTheme()) {
|
|
_.find(themeResult, {active: true}).templates = bridge.getActiveTheme().customTemplates;
|
|
}
|
|
|
|
return {themes: themeResult};
|
|
};
|