2c6d43a0c0
no issue - Split theme helpers into individual files for each - Do the same for tests - Have utils to share some things between them - Move assetHash onto config
39 lines
1.3 KiB
JavaScript
39 lines
1.3 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.
|
|
//
|
|
// Enables tag-safe truncation of content by characters or words.
|
|
|
|
var hbs = require('express-hbs'),
|
|
_ = require('lodash'),
|
|
downsize = require('downsize'),
|
|
downzero = require('../utils/downzero'),
|
|
content;
|
|
|
|
content = function (options) {
|
|
var truncateOptions = (options || {}).hash || {};
|
|
truncateOptions = _.pick(truncateOptions, ['words', 'characters']);
|
|
_.keys(truncateOptions).map(function (key) {
|
|
truncateOptions[key] = parseInt(truncateOptions[key], 10);
|
|
});
|
|
|
|
if (truncateOptions.hasOwnProperty('words') || truncateOptions.hasOwnProperty('characters')) {
|
|
// Legacy function: {{content words="0"}} should return leading tags.
|
|
if (truncateOptions.hasOwnProperty('words') && truncateOptions.words === 0) {
|
|
return new hbs.handlebars.SafeString(
|
|
downzero(this.html)
|
|
);
|
|
}
|
|
|
|
return new hbs.handlebars.SafeString(
|
|
downsize(this.html, truncateOptions)
|
|
);
|
|
}
|
|
|
|
return new hbs.handlebars.SafeString(this.html);
|
|
};
|
|
|
|
module.exports = content;
|