mirror of
https://github.com/discourse/discourse.git
synced 2025-04-03 05:39:41 +08:00
A couple important Ember CLI fixes (#12345)
* FIX: Error related to sending headers twice * FIX: Insert correct bootstrap contents in test runner html and boot
This commit is contained in:
parent
3eb769d03b
commit
7036346965
app/assets/javascripts/discourse
@ -27,6 +27,15 @@
|
|||||||
<div id='offscreen-content'>
|
<div id='offscreen-content'>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
document.addEventListener("discourse-booted", (e) => {
|
||||||
|
const config = e.detail;
|
||||||
|
const app = require(`${config.modulePrefix}/app`)["default"].create(
|
||||||
|
config
|
||||||
|
);
|
||||||
|
app.start();
|
||||||
|
});
|
||||||
|
</script>
|
||||||
{{bootstrap-content-for "hidden-login-form"}}
|
{{bootstrap-content-for "hidden-login-form"}}
|
||||||
{{bootstrap-content-for "preloaded"}}
|
{{bootstrap-content-for "preloaded"}}
|
||||||
|
|
||||||
|
@ -20,6 +20,25 @@ function htmlTag(buffer, bootstrap) {
|
|||||||
buffer.push(`<html lang="${bootstrap.html_lang}"${classList}>`);
|
buffer.push(`<html lang="${bootstrap.html_lang}"${classList}>`);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function bareStylesheets(buffer, bootstrap) {
|
||||||
|
(bootstrap.stylesheets || []).forEach((s) => {
|
||||||
|
if (s.theme_id) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
let attrs = [];
|
||||||
|
if (s.media) {
|
||||||
|
attrs.push(`media="${s.media}"`);
|
||||||
|
}
|
||||||
|
if (s.target) {
|
||||||
|
attrs.push(`data-target="${s.target}"`);
|
||||||
|
}
|
||||||
|
let link = `<link rel="stylesheet" type="text/css" href="${
|
||||||
|
s.href
|
||||||
|
}" ${attrs.join(" ")}></script>\n`;
|
||||||
|
buffer.push(link);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
function head(buffer, bootstrap) {
|
function head(buffer, bootstrap) {
|
||||||
if (bootstrap.csrf_token) {
|
if (bootstrap.csrf_token) {
|
||||||
buffer.push(`<meta name="csrf-param" buffer="authenticity_token">`);
|
buffer.push(`<meta name="csrf-param" buffer="authenticity_token">`);
|
||||||
@ -72,9 +91,13 @@ function head(buffer, bootstrap) {
|
|||||||
buffer.push(bootstrap.html.before_head_close);
|
buffer.push(bootstrap.html.before_head_close);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function localeScript(buffer, bootstrap) {
|
||||||
|
buffer.push(`<script src="${bootstrap.locale_script}"></script>`);
|
||||||
|
}
|
||||||
|
|
||||||
function beforeScriptLoad(buffer, bootstrap) {
|
function beforeScriptLoad(buffer, bootstrap) {
|
||||||
buffer.push(bootstrap.html.before_script_load);
|
buffer.push(bootstrap.html.before_script_load);
|
||||||
buffer.push(`<script src="${bootstrap.locale_script}"></script>`);
|
localeScript(buffer, bootstrap);
|
||||||
(bootstrap.extra_locales || []).forEach((l) =>
|
(bootstrap.extra_locales || []).forEach((l) =>
|
||||||
buffer.push(`<script src="${l}"></script>`)
|
buffer.push(`<script src="${l}"></script>`)
|
||||||
);
|
);
|
||||||
@ -119,6 +142,8 @@ const BUILDERS = {
|
|||||||
"hidden-login-form": hiddenLoginForm,
|
"hidden-login-form": hiddenLoginForm,
|
||||||
preloaded: preloaded,
|
preloaded: preloaded,
|
||||||
"body-footer": bodyFooter,
|
"body-footer": bodyFooter,
|
||||||
|
"locale-script": localeScript,
|
||||||
|
"bare-stylesheets": bareStylesheets,
|
||||||
};
|
};
|
||||||
|
|
||||||
function replaceIn(bootstrap, template, id) {
|
function replaceIn(bootstrap, template, id) {
|
||||||
@ -136,11 +161,11 @@ function applyBootstrap(bootstrap, template) {
|
|||||||
return template;
|
return template;
|
||||||
}
|
}
|
||||||
|
|
||||||
function decorateIndex(baseUrl, headers) {
|
function decorateIndex(assetPath, baseUrl, headers) {
|
||||||
// eslint-disable-next-line
|
// eslint-disable-next-line
|
||||||
return new Promise((resolve, reject) => {
|
return new Promise((resolve, reject) => {
|
||||||
fs.readFile(
|
fs.readFile(
|
||||||
path.join(process.cwd(), "dist", "index.html"),
|
path.join(process.cwd(), "dist", assetPath),
|
||||||
"utf8",
|
"utf8",
|
||||||
(err, template) => {
|
(err, template) => {
|
||||||
getJSON(`${baseUrl}/bootstrap.json`, null, headers)
|
getJSON(`${baseUrl}/bootstrap.json`, null, headers)
|
||||||
@ -190,9 +215,13 @@ module.exports = {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (!isFile) {
|
if (!isFile) {
|
||||||
|
assetPath = "index.html";
|
||||||
|
}
|
||||||
|
|
||||||
|
if (assetPath.endsWith("index.html")) {
|
||||||
let template;
|
let template;
|
||||||
try {
|
try {
|
||||||
template = await decorateIndex(proxy, req.headers);
|
template = await decorateIndex(assetPath, proxy, req.headers);
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
template = `
|
template = `
|
||||||
<html>
|
<html>
|
||||||
@ -201,7 +230,7 @@ module.exports = {
|
|||||||
</html>
|
</html>
|
||||||
`;
|
`;
|
||||||
}
|
}
|
||||||
res.send(template);
|
return res.send(template);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} finally {
|
} finally {
|
||||||
|
@ -177,6 +177,6 @@
|
|||||||
const config = JSON.parse(
|
const config = JSON.parse(
|
||||||
decodeURIComponent(element.getAttribute("content"))
|
decodeURIComponent(element.getAttribute("content"))
|
||||||
);
|
);
|
||||||
const app = require(`${config.modulePrefix}/app`)["default"].create(config);
|
const event = new CustomEvent("discourse-booted", { detail: config });
|
||||||
app.start();
|
document.dispatchEvent(event);
|
||||||
})();
|
})();
|
||||||
|
@ -27,6 +27,8 @@
|
|||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
|
{{bootstrap-content-for "locale-script"}}
|
||||||
|
{{bootstrap-content-for "bare-stylesheets"}}
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
{{content-for "body"}}
|
{{content-for "body"}}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user