mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-29 07:09:48 +03:00
1f11bd9012
- The underlying package-json package has had i18n ripped out using the new tpl utility instead - It's also then been refactored to not be a class that needs instantiating - This means it can be required directly and its public interface methods used where needed - This is a much nicer, neater pattern for what is a mature utility library :)
49 lines
1.6 KiB
JavaScript
49 lines
1.6 KiB
JavaScript
const _ = require('lodash');
|
|
const themeList = require('./list');
|
|
const bridge = require('../../../bridge');
|
|
const packageJSON = require('@tryghost/package-json');
|
|
const settingsCache = require('../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};
|
|
};
|