Ghost/core/server/helpers/body_class.js
Fabien O'Carroll cebcf27b6b 🐛 Fixed 500 template error occurring in place of a 404 for missing pages/assets (#10660)
no issue

- when the page is missing the context can be undefined, this defaults it to an empty array so that later `context.includes()` calls don't error
2019-04-04 14:41:56 +01:00

47 lines
1.4 KiB
JavaScript

// # Body Class Helper
// Usage: `{{body_class}}`
//
// Output classes for the body element
const {SafeString} = require('./proxy');
// We use the name body_class to match the helper for consistency
module.exports = function body_class(options) { // eslint-disable-line camelcase
let classes = [];
const context = options.data.root.context || [];
const obj = this.post || this.page;
const tags = obj && obj.tags ? obj.tags : [];
const isPage = !!(obj && obj.page);
if (context.includes('home')) {
classes.push('home-template');
} else if (context.includes('post') && obj) {
classes.push('post-template');
} else if (context.includes('page') && obj && isPage) {
classes.push('page-template');
classes.push(`page-${obj.slug}`);
} else if (context.includes('tag') && this.tag) {
classes.push('tag-template');
classes.push(`tag-${this.tag.slug}`);
} else if (context.includes('author') && this.author) {
classes.push('author-template');
classes.push(`author-${this.author.slug}`);
} else if (context.includes('private')) {
classes.push('private-template');
}
if (tags) {
classes = classes.concat(
tags.map(({slug}) => `tag-${slug}`)
);
}
if (context.includes('paged')) {
classes.push('paged');
}
classes = classes.join(' ').trim();
return new SafeString(classes);
};