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
31 lines
1004 B
JavaScript
31 lines
1004 B
JavaScript
// # Reading Time Helper
|
|
//
|
|
// Usage: `{{reading_time}}`
|
|
// or for translatable themes, with (t) translation helper's subexpressions:
|
|
// `{{reading_time seconds=(t "< 1 min read") minute=(t "1 min read") minutes=(t "% min read")}}`
|
|
// and in the theme translation file, for example Spanish es.json:
|
|
// "< 1 min read": "< 1 min de lectura",
|
|
// "1 min read": "1 min de lectura",
|
|
// "% min read": "% min de lectura",
|
|
//
|
|
// Returns estimated reading time for post
|
|
|
|
const {checks} = require('../services/proxy');
|
|
const {SafeString} = require('../services/rendering');
|
|
|
|
const {readingTime: calculateReadingTime} = require('@tryghost/helpers');
|
|
|
|
module.exports = function reading_time(options) {// eslint-disable-line camelcase
|
|
options = options || {};
|
|
options.hash = options.hash || {};
|
|
|
|
// only calculate reading time for posts
|
|
if (!checks.isPost(this)) {
|
|
return null;
|
|
}
|
|
|
|
let readingTime = calculateReadingTime(this, options.hash);
|
|
|
|
return new SafeString(readingTime);
|
|
};
|