DEV: add deprecation for currentThemeKey

This ensures that theme components will not explode when attempting to access this
This commit is contained in:
Sam 2018-07-12 15:36:38 +10:00
parent a201103127
commit 29eb9dda59
1 changed files with 11 additions and 0 deletions

View File

@ -1,6 +1,17 @@
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));