2013-11-28 06:45:01 +04:00
|
|
|
// ## Template utils
|
2020-03-30 23:23:02 +03:00
|
|
|
const templates = {};
|
|
|
|
const _ = require('lodash');
|
|
|
|
const errors = require('@tryghost/errors');
|
2020-04-08 21:02:31 +03:00
|
|
|
const hbs = require('../engine');
|
2020-11-25 15:33:44 +03:00
|
|
|
const {i18n} = require('../../proxy');
|
2013-11-28 06:45:01 +04:00
|
|
|
|
2013-12-02 03:31:55 +04:00
|
|
|
// Execute a template helper
|
|
|
|
// All template helpers are register as partial view.
|
2019-03-09 22:35:19 +03:00
|
|
|
templates.execute = function execute(name, context, data) {
|
2020-04-29 18:44:27 +03:00
|
|
|
const partial = hbs.handlebars.partials[name];
|
2013-11-28 06:45:01 +04:00
|
|
|
|
2013-12-02 03:31:55 +04:00
|
|
|
if (partial === undefined) {
|
2020-03-30 23:23:02 +03:00
|
|
|
throw new errors.IncorrectUsageError({
|
|
|
|
message: i18n.t('warnings.helpers.template.templateNotFound', {name: name})
|
2016-10-06 15:27:35 +03:00
|
|
|
});
|
2013-12-02 03:31:55 +04:00
|
|
|
}
|
2013-11-28 06:45:01 +04:00
|
|
|
|
2013-12-02 03:31:55 +04:00
|
|
|
// If the partial view is not compiled, it compiles and saves in handlebars
|
|
|
|
if (typeof partial === 'string') {
|
2014-01-23 20:22:25 +04:00
|
|
|
hbs.registerPartial(partial);
|
2013-12-02 03:31:55 +04:00
|
|
|
}
|
2013-11-28 06:45:01 +04:00
|
|
|
|
2019-03-09 22:35:19 +03:00
|
|
|
return new hbs.SafeString(partial(context, data));
|
2013-11-28 06:45:01 +04:00
|
|
|
};
|
|
|
|
|
2017-04-04 19:07:35 +03:00
|
|
|
templates.asset = _.template('<%= source %>?v=<%= version %>');
|
|
|
|
templates.link = _.template('<a href="<%= url %>"><%= text %></a>');
|
|
|
|
templates.script = _.template('<script src="<%= source %>?v=<%= version %>"></script>');
|
|
|
|
templates.input = _.template('<input class="<%= className %>" type="<%= type %>" name="<%= name %>" <%= extras %> />');
|
|
|
|
|
2014-09-10 08:06:24 +04:00
|
|
|
module.exports = templates;
|