This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/app/assets/javascripts/discourse/lib/theme-selector.js.es6
Sam 29eb9dda59 DEV: add deprecation for currentThemeKey
This ensures that theme components will not explode when attempting to access this
2018-07-12 15:36:38 +10:00

119 lines
2.6 KiB
JavaScript

import { ajax } from "discourse/lib/ajax";
import deprecated from "discourse-common/lib/deprecated";
const keySelector = "meta[name=discourse_theme_id]";
export function currentThemeKey() {
if (console && console.warn && console.trace) {
// TODO: Remove this code Jan 2019
deprecated(
"'currentThemeKey' is is deprecated use 'currentThemeId' instead. A theme component may require updating."
);
}
}
export function currentThemeId() {
let themeId = null;
let elem = _.first($(keySelector));
if (elem) {
themeId = elem.content;
if (_.isEmpty(themeId)) {
themeId = null;
} else {
themeId = parseInt(themeId);
}
}
return themeId;
}
export function setLocalTheme(ids, themeSeq) {
if (ids && ids.length > 0) {
$.cookie("theme_ids", `${ids.join(",")}|${themeSeq}`, {
path: "/",
expires: 9999
});
} else {
$.cookie("theme_ids", null, { path: "/", expires: 1 });
}
}
export function refreshCSS(node, hash, newHref, options) {
let $orig = $(node);
if ($orig.data("reloading")) {
if (options && options.force) {
clearTimeout($orig.data("timeout"));
$orig.data("copy").remove();
} else {
return;
}
}
if (!$orig.data("orig")) {
$orig.data("orig", node.href);
}
$orig.data("reloading", true);
const orig = $(node).data("orig");
let reloaded = $orig.clone(true);
if (hash) {
reloaded[0].href =
orig + (orig.indexOf("?") >= 0 ? "&hash=" : "?hash=") + hash;
} else {
reloaded[0].href = newHref;
}
$orig.after(reloaded);
let timeout = setTimeout(() => {
$orig.remove();
reloaded.data("reloading", false);
}, 2000);
$orig.data("timeout", timeout);
$orig.data("copy", reloaded);
}
export function previewTheme(id) {
if (currentThemeId() !== id) {
Discourse.set("assetVersion", "forceRefresh");
ajax(`/themes/assets/${id ? id : "default"}`).then(results => {
let elem = _.first($(keySelector));
if (elem) {
elem.content = id;
}
results.themes.forEach(theme => {
let node = $(`link[rel=stylesheet][data-target=${theme.target}]`)[0];
if (node) {
refreshCSS(node, null, theme.url, { force: true });
}
});
});
}
}
export function listThemes(site) {
let themes = site.get("user_themes");
if (!themes) {
return null;
}
let hasDefault = !!themes.findBy("default", true);
let results = [];
if (!hasDefault) {
results.push({ name: I18n.t("themes.default_description"), id: null });
}
themes.forEach(t => {
results.push({ name: t.name, id: t.theme_id });
});
return results.length === 0 ? null : results;
}