2014-10-10 09:54:07 -05:00
|
|
|
// # Ghost Foot Helper
|
|
|
|
// Usage: `{{ghost_foot}}`
|
|
|
|
//
|
|
|
|
// Outputs scripts and other assets at the bottom of a Ghost theme
|
2021-09-28 09:06:33 -05:00
|
|
|
const {settingsCache} = require('../services/proxy');
|
|
|
|
const {SafeString} = require('../services/rendering');
|
2020-03-30 15:23:02 -05:00
|
|
|
const _ = require('lodash');
|
2014-10-10 09:54:07 -05:00
|
|
|
|
2017-11-01 08:44:54 -05:00
|
|
|
// We use the name ghost_foot to match the helper for consistency:
|
|
|
|
module.exports = function ghost_foot(options) { // eslint-disable-line camelcase
|
2020-04-29 10:44:27 -05:00
|
|
|
const foot = [];
|
|
|
|
|
2020-07-01 11:44:59 -05:00
|
|
|
const globalCodeinjection = settingsCache.get('codeinjection_foot');
|
2020-04-29 10:44:27 -05:00
|
|
|
const postCodeinjection = options.data.root && options.data.root.post ? options.data.root.post.codeinjection_foot : null;
|
2020-07-10 07:20:22 -05:00
|
|
|
const tagCodeinjection = options.data.root && options.data.root.tag ? options.data.root.tag.codeinjection_foot : null;
|
2017-03-23 14:00:58 -05:00
|
|
|
|
2017-08-02 06:06:51 -05:00
|
|
|
if (!_.isEmpty(globalCodeinjection)) {
|
|
|
|
foot.push(globalCodeinjection);
|
|
|
|
}
|
|
|
|
|
2017-08-02 04:38:19 -05:00
|
|
|
if (!_.isEmpty(postCodeinjection)) {
|
|
|
|
foot.push(postCodeinjection);
|
2017-03-23 14:00:58 -05:00
|
|
|
}
|
2014-10-10 09:54:07 -05:00
|
|
|
|
2020-07-10 07:20:22 -05:00
|
|
|
if (!_.isEmpty(tagCodeinjection)) {
|
|
|
|
foot.push(tagCodeinjection);
|
|
|
|
}
|
|
|
|
|
2019-04-15 09:15:32 -05:00
|
|
|
return new SafeString(foot.join(' ').trim());
|
2014-10-10 09:54:07 -05:00
|
|
|
};
|