mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-05 09:50:34 +03:00
983110d931
no issue - add eslint-plugin-ember, configure no-old-shims rule - run `eslint --fix` on `app`, `lib`, `mirage`, and `tests` to move imports to the new module imports - further cleanup of Ember globals usage - remove event-dispatcher initializer now that `canDispatchToEventManager` is deprecated
70 lines
2.0 KiB
JavaScript
70 lines
2.0 KiB
JavaScript
import $ from 'jquery';
|
|
import Ember from 'ember';
|
|
import RSVP from 'rsvp';
|
|
import Service from '@ember/service';
|
|
import {inject as injectService} from '@ember/service';
|
|
|
|
const {testing} = Ember;
|
|
|
|
export default Service.extend({
|
|
ajax: injectService(),
|
|
ghostPaths: injectService(),
|
|
|
|
// This is needed so we can disable it in unit tests
|
|
testing,
|
|
|
|
scriptPromises: {},
|
|
|
|
loadScript(key, url) {
|
|
if (this.get('testing')) {
|
|
return RSVP.resolve();
|
|
}
|
|
|
|
if (this.get(`scriptPromises.${key}`)) {
|
|
// Script is already loaded/in the process of being loaded,
|
|
// so return that promise
|
|
return this.get(`scriptPromises.${key}`);
|
|
}
|
|
|
|
let ajax = this.get('ajax');
|
|
let adminRoot = this.get('ghostPaths.adminRoot');
|
|
|
|
let scriptPromise = ajax.request(`${adminRoot}${url}`, {
|
|
dataType: 'script',
|
|
cache: true
|
|
});
|
|
|
|
this.set(`scriptPromises.${key}`, scriptPromise);
|
|
|
|
return scriptPromise;
|
|
},
|
|
|
|
loadStyle(key, url, alternate = false) {
|
|
if (this.get('testing') || $(`#${key}-styles`).length) {
|
|
return RSVP.resolve();
|
|
}
|
|
|
|
return new RSVP.Promise((resolve, reject) => {
|
|
let link = document.createElement('link');
|
|
link.id = `${key}-styles`;
|
|
link.rel = alternate ? 'alternate stylesheet' : 'stylesheet';
|
|
link.href = `${this.get('ghostPaths.adminRoot')}${url}`;
|
|
link.onload = () => {
|
|
if (alternate) {
|
|
// If stylesheet is alternate and we disable the stylesheet before injecting into the DOM,
|
|
// the onload handler never gets called. Thus, we should disable the link after it has finished loading
|
|
link.disabled = true;
|
|
}
|
|
resolve();
|
|
};
|
|
link.onerror = reject;
|
|
|
|
if (alternate) {
|
|
link.title = key;
|
|
}
|
|
|
|
$('head').append($(link));
|
|
});
|
|
}
|
|
});
|