2020-04-29 18:44:27 +03:00
|
|
|
const hbs = require('express-hbs');
|
2020-05-27 20:47:53 +03:00
|
|
|
const config = require('../../../shared/config');
|
2020-04-29 18:44:27 +03:00
|
|
|
const instance = hbs.create();
|
2017-04-04 19:07:35 +03:00
|
|
|
|
|
|
|
// @TODO think about a config option for this e.g. theme.devmode?
|
|
|
|
if (config.get('env') !== 'production') {
|
|
|
|
instance.handlebars.logger.level = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
instance.escapeExpression = instance.handlebars.Utils.escapeExpression;
|
|
|
|
|
|
|
|
instance.configure = function configure(partialsPath) {
|
2020-04-29 18:44:27 +03:00
|
|
|
const hbsOptions = {
|
2017-04-04 19:07:35 +03:00
|
|
|
partialsDir: [config.get('paths').helperTemplates],
|
|
|
|
onCompile: function onCompile(exhbs, source) {
|
|
|
|
return exhbs.handlebars.compile(source, {preventIndent: true});
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
if (partialsPath) {
|
|
|
|
hbsOptions.partialsDir.push(partialsPath);
|
|
|
|
}
|
|
|
|
|
|
|
|
return instance.express4(hbsOptions);
|
|
|
|
};
|
|
|
|
|
|
|
|
module.exports = instance;
|