This commit is contained in:
Barış Soner Uşaklı
2021-06-18 12:36:04 -04:00
parent 9095057223
commit be01951c41

View File

@@ -17,10 +17,11 @@ module.exports = function (middleware) {
middleware.processRender = function processRender(req, res, next) {
// res.render post-processing, modified from here: https://gist.github.com/mrlannigan/5051687
const { render } = res;
async function renderMethod(template, options, fn) {
const self = this;
const req = this.req;
res.render = async function renderOverride(template, options, fn) {
const self = this;
const { req } = this;
async function renderMethod(template, options, fn) {
options = options || {};
if (typeof options === 'function') {
fn = options;
@@ -48,7 +49,7 @@ module.exports = function (middleware) {
tags: await meta.tags.parse(req, renderResult, res.locals.metaTags, res.locals.linkTags),
};
options.widgets = await widgets.render(req.uid, {
template: template + '.tpl',
template: `${template}.tpl`,
url: options.url,
templateData: options,
req: req,
@@ -71,14 +72,14 @@ module.exports = function (middleware) {
footer: renderHeaderFooter('renderFooter', req, res, options),
});
const str = results.header +
const str = `${results.header +
(res.locals.postHeader || '') +
results.content +
'<script id="ajaxify-data" type="application/json">' +
JSON.stringify(options).replace(/<\//g, '<\\/') +
'</script>' +
(res.locals.preFooter || '') +
results.footer;
results.content
}<script id="ajaxify-data" type="application/json">${
JSON.stringify(options).replace(/<\//g, '<\\/')
}</script>${
res.locals.preFooter || ''
}${results.footer}`;
if (typeof fn !== 'function') {
self.send(str);
@@ -87,7 +88,6 @@ module.exports = function (middleware) {
}
}
res.render = async function renderOverride(template, options, fn) {
try {
await renderMethod(template, options, fn);
} catch (err) {