1
0
Fork 0
discourse-custom-wizard-unl.../assets/javascripts/wizard/lib/load-script.js.es6

108 Zeilen
2,5 KiB
Text

import { ajax } from "wizard/lib/ajax";
2020-07-06 21:05:15 +02:00
import getURL from "discourse-common/lib/get-url";
2018-02-08 05:30:55 +01:00
const _loaded = {};
const _loading = {};
function loadWithTag(path, cb) {
const head = document.getElementsByTagName("head")[0];
2018-02-08 05:30:55 +01:00
let finished = false;
let s = document.createElement("script");
2018-02-08 05:30:55 +01:00
s.src = path;
if (Ember.Test) {
Ember.Test.registerWaiter(() => finished);
}
head.appendChild(s);
s.onload = s.onreadystatechange = function (_, abort) {
2018-02-08 05:30:55 +01:00
finished = true;
if (
abort ||
!s.readyState ||
s.readyState === "loaded" ||
s.readyState === "complete"
) {
2018-02-08 05:30:55 +01:00
s = s.onload = s.onreadystatechange = null;
if (!abort) {
Ember.run(null, cb);
}
}
};
}
export function loadCSS(url) {
return loadScript(url, { css: true });
}
export default function loadScript(url, opts) {
// TODO: Remove this once plugins have been updated not to use it:
if (url === "defer/html-sanitizer-bundle") {
return Ember.RSVP.Promise.resolve();
}
2018-02-08 05:30:55 +01:00
opts = opts || {};
$("script").each((i, tag) => {
const src = tag.getAttribute("src");
2018-02-08 05:30:55 +01:00
if (src && (opts.scriptTag || src !== url)) {
_loaded[tag.getAttribute("src")] = true;
2018-02-08 05:30:55 +01:00
}
});
return new Ember.RSVP.Promise(function (resolve) {
2020-07-06 21:05:15 +02:00
url = getURL(url);
2018-02-08 05:30:55 +01:00
// If we already loaded this url
if (_loaded[url]) {
return resolve();
}
if (_loading[url]) {
return _loading[url].then(resolve);
}
2018-02-08 05:30:55 +01:00
let done;
_loading[url] = new Ember.RSVP.Promise(function (_done) {
2018-02-08 05:30:55 +01:00
done = _done;
});
_loading[url].then(function () {
2018-02-08 05:30:55 +01:00
delete _loading[url];
});
const cb = function (data) {
2018-02-08 05:30:55 +01:00
if (opts && opts.css) {
$("head").append("<style>" + data + "</style>");
}
done();
resolve();
_loaded[url] = true;
};
let cdnUrl = url;
// Scripts should always load from CDN
// CSS is type text, to accept it from a CDN we would need to handle CORS
if (!opts.css && Discourse.CDN && url[0] === "/" && url[1] !== "/") {
cdnUrl = Discourse.CDN.replace(/\/$/, "") + url;
2018-02-08 05:30:55 +01:00
}
// Some javascript depends on the path of where it is loaded (ace editor)
// to dynamically load more JS. In that case, add the `scriptTag: true`
// option.
if (opts.scriptTag) {
if (Ember.testing) {
throw `In test mode scripts cannot be loaded async ${cdnUrl}`;
}
loadWithTag(cdnUrl, cb);
} else {
ajax({
url: cdnUrl,
dataType: opts.css ? "text" : "script",
cache: true,
}).then(cb);
2018-02-08 05:30:55 +01:00
}
});
}