mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-12-20 23:40:38 +01:00
merge
This commit is contained in:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user