mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-28 05:37:34 +03:00
1d8154f892
no-issue This adds support for tags codeinjection to work with the ghost_head and ghost_foot helpers
30 lines
1022 B
JavaScript
30 lines
1022 B
JavaScript
// # Ghost Foot Helper
|
|
// Usage: `{{ghost_foot}}`
|
|
//
|
|
// Outputs scripts and other assets at the bottom of a Ghost theme
|
|
const {SafeString, settingsCache} = require('../services/proxy');
|
|
const _ = require('lodash');
|
|
|
|
// We use the name ghost_foot to match the helper for consistency:
|
|
module.exports = function ghost_foot(options) { // eslint-disable-line camelcase
|
|
const foot = [];
|
|
|
|
const globalCodeinjection = settingsCache.get('codeinjection_foot');
|
|
const postCodeinjection = options.data.root && options.data.root.post ? options.data.root.post.codeinjection_foot : null;
|
|
const tagCodeinjection = options.data.root && options.data.root.tag ? options.data.root.tag.codeinjection_foot : null;
|
|
|
|
if (!_.isEmpty(globalCodeinjection)) {
|
|
foot.push(globalCodeinjection);
|
|
}
|
|
|
|
if (!_.isEmpty(postCodeinjection)) {
|
|
foot.push(postCodeinjection);
|
|
}
|
|
|
|
if (!_.isEmpty(tagCodeinjection)) {
|
|
foot.push(tagCodeinjection);
|
|
}
|
|
|
|
return new SafeString(foot.join(' ').trim());
|
|
};
|