This feature introduces the concept of themes. Themes are an evolution
of site customizations.
Themes introduce two very big conceptual changes:
- A theme may include other "child themes", children can include grand
children and so on.
- A theme may specify a color scheme
The change does away with the idea of "enabled" color schemes.
It also adds a bunch of big niceties like
- You can source a theme from a git repo
- History for themes is much improved
- You can only have a single enabled theme. Themes can be selected by
users, if you opt for it.
On a technical level this change comes with a whole bunch of goodies
- All CSS is now compiled using a custom pipeline that uses libsass
see /lib/stylesheet
- There is a single pipeline for css compilation (in the past we used
one for customizations and another one for the rest of the app
- The stylesheet pipeline is now divorced of sprockets, there is no
reliance on sprockets for CSS bundling
- CSS is generated with source maps everywhere (including themes) this
makes debugging much easier
- Our "live reloader" is smarter and avoid a flash of unstyled content
we run a file watcher in "puma" in dev so you no longer need to run
rake autospec to watch for CSS changes
80 lines
2.0 KiB
JavaScript
80 lines
2.0 KiB
JavaScript
import { ajax } from 'discourse/lib/ajax';
|
|
const _loaded = {};
|
|
const _loading = {};
|
|
|
|
function loadWithTag(path, cb) {
|
|
const head = document.getElementsByTagName('head')[0];
|
|
|
|
let finished = false;
|
|
let s = document.createElement('script');
|
|
s.src = path;
|
|
if (Ember.Test) {
|
|
Ember.Test.registerWaiter(() => finished);
|
|
}
|
|
head.appendChild(s);
|
|
|
|
s.onload = s.onreadystatechange = function(_, abort) {
|
|
finished = true;
|
|
if (abort || !s.readyState || s.readyState === "loaded" || s.readyState === "complete") {
|
|
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(); }
|
|
|
|
opts = opts || {};
|
|
|
|
return new Ember.RSVP.Promise(function(resolve) {
|
|
url = Discourse.getURL(url);
|
|
|
|
// If we already loaded this url
|
|
if (_loaded[url]) { return resolve(); }
|
|
if (_loading[url]) { return _loading[url].then(resolve);}
|
|
|
|
var done;
|
|
_loading[url] = new Ember.RSVP.Promise(function(_done){
|
|
done = _done;
|
|
});
|
|
|
|
_loading[url].then(function(){
|
|
delete _loading[url];
|
|
});
|
|
|
|
const cb = function(data) {
|
|
_loaded[url] = true;
|
|
if (opts && opts.css) {
|
|
$("head").append("<style>" + data + "</style>");
|
|
}
|
|
done();
|
|
resolve();
|
|
};
|
|
|
|
var cdnUrl = url;
|
|
|
|
// Scripts should always load from CDN
|
|
if (Discourse.CDN && url[0] === "/" && url[1] !== "/") {
|
|
cdnUrl = Discourse.CDN.replace(/\/$/,"") + url;
|
|
}
|
|
|
|
// 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) {
|
|
loadWithTag(cdnUrl, cb);
|
|
} else {
|
|
ajax({url: cdnUrl, dataType: opts.css ? "text": "script", cache: true}).then(cb);
|
|
}
|
|
});
|
|
}
|