mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-28 22:43:30 +03:00
fd20f90cca
- The original intention of the proxy was to collect up all the requires in our helpers into one place - This has since been expanded and used in more places, in more ways - In hindsight there are now multiple different types of requires in the proxy: - One: true frontend rendering framework requires (stuff from deep inside theme-engine) - Two: data manipulation/sdk stuff, belongs to the frontend, ways to process API data - Three: actual core stuff from Ghost, that we wish wasn't here / needs to be passed in a controlled way - This commit pulls out One into a new rendering service, so at least that stuff is managed independently - This draws the lines clearly between what's internal to the frontend and what isn't - It also highlights that the theme-engine needs to be divided up / refactored so that we don't have these deep requires
59 lines
1.7 KiB
JavaScript
59 lines
1.7 KiB
JavaScript
// # Content Helper
|
|
// Usage: `{{content}}`, `{{content words="20"}}`, `{{content characters="256"}}`
|
|
//
|
|
// Turns content html into a safestring so that the user doesn't have to
|
|
// escape it or tell handlebars to leave it alone with a triple-brace.
|
|
//
|
|
// Shows default or custom CTA when trying to see content without access
|
|
//
|
|
// Enables tag-safe truncation of content by characters or words.
|
|
//
|
|
// Dev flag feature: In case of restricted content access for member-only posts, shows CTA box
|
|
|
|
const {templates, hbs, SafeString} = require('../services/rendering');
|
|
const downsize = require('downsize');
|
|
const _ = require('lodash');
|
|
const createFrame = hbs.handlebars.createFrame;
|
|
|
|
function restrictedCta(options) {
|
|
options = options || {};
|
|
options.data = options.data || {};
|
|
_.merge(this, {
|
|
accentColor: (options.data.site && options.data.site.accent_color)
|
|
});
|
|
const data = createFrame(options.data);
|
|
return templates.execute('content-cta', this, {data});
|
|
}
|
|
|
|
module.exports = function content(options = {}) {
|
|
let self = this;
|
|
let args = arguments;
|
|
|
|
const hash = options.hash || {};
|
|
const truncateOptions = {};
|
|
let runTruncate = false;
|
|
|
|
for (const key of ['words', 'characters']) {
|
|
if (Object.prototype.hasOwnProperty.call(hash, key)) {
|
|
runTruncate = true;
|
|
truncateOptions[key] = parseInt(hash[key], 10);
|
|
}
|
|
}
|
|
|
|
if (this.html === null) {
|
|
this.html = '';
|
|
}
|
|
|
|
if (!_.isUndefined(this.access) && !this.access) {
|
|
return restrictedCta.apply(self, args);
|
|
}
|
|
|
|
if (runTruncate) {
|
|
return new SafeString(
|
|
downsize(this.html, truncateOptions)
|
|
);
|
|
}
|
|
|
|
return new SafeString(this.html);
|
|
};
|