summaryrefslogtreecommitdiffstats
path: root/devtools/client/shared/theme.js
diff options
context:
space:
mode:
authorMatt A. Tobin <mattatobin@localhost.localdomain>2018-02-02 04:16:08 -0500
committerMatt A. Tobin <mattatobin@localhost.localdomain>2018-02-02 04:16:08 -0500
commit5f8de423f190bbb79a62f804151bc24824fa32d8 (patch)
tree10027f336435511475e392454359edea8e25895d /devtools/client/shared/theme.js
parent49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff)
downloadUXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip
Add m-esr52 at 52.6.0
Diffstat (limited to 'devtools/client/shared/theme.js')
-rw-r--r--devtools/client/shared/theme.js84
1 files changed, 84 insertions, 0 deletions
diff --git a/devtools/client/shared/theme.js b/devtools/client/shared/theme.js
new file mode 100644
index 000000000..6ba956f64
--- /dev/null
+++ b/devtools/client/shared/theme.js
@@ -0,0 +1,84 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
+
+"use strict";
+
+/**
+ * Colors for themes taken from:
+ * https://developer.mozilla.org/en-US/docs/Tools/DevToolsColors
+ */
+
+const Services = require("Services");
+const { gDevTools } = require("devtools/client/framework/devtools");
+
+const variableFileContents = require("raw!devtools/client/themes/variables.css");
+
+const THEME_SELECTOR_STRINGS = {
+ light: ":root.theme-light {",
+ dark: ":root.theme-dark {",
+ firebug: ":root.theme-firebug {"
+};
+
+/**
+ * Takes a theme name and returns the contents of its variable rule block.
+ * The first time this runs fetches the variables CSS file and caches it.
+ */
+function getThemeFile(name) {
+ // If there's no theme expected for this name, use `light` as default.
+ let selector = THEME_SELECTOR_STRINGS[name] ||
+ THEME_SELECTOR_STRINGS.light;
+
+ // This is a pretty naive way to find the contents between:
+ // selector {
+ // name: val;
+ // }
+ // There is test coverage for this feature (browser_theme.js)
+ // so if an } is introduced in the variables file it will catch that.
+ let theme = variableFileContents;
+ theme = theme.substring(theme.indexOf(selector));
+ theme = theme.substring(0, theme.indexOf("}"));
+
+ return theme;
+}
+
+/**
+ * Returns the string value of the current theme,
+ * like "dark" or "light".
+ */
+const getTheme = exports.getTheme = () => {
+ return Services.prefs.getCharPref("devtools.theme");
+};
+
+/**
+ * Returns a color indicated by `type` (like "toolbar-background", or
+ * "highlight-red"), with the ability to specify a theme, or use whatever the
+ * current theme is if left unset. If theme not found, falls back to "light"
+ * theme. Returns null if the type cannot be found for the theme given.
+ */
+/* eslint-disable no-unused-vars */
+const getColor = exports.getColor = (type, theme) => {
+ let themeName = theme || getTheme();
+ let themeFile = getThemeFile(themeName);
+ let match = themeFile.match(new RegExp("--theme-" + type + ": (.*);"));
+
+ // Return the appropriate variable in the theme, or otherwise, null.
+ return match ? match[1] : null;
+};
+
+/**
+ * Mimics selecting the theme selector in the toolbox;
+ * sets the preference and emits an event on gDevTools to trigger
+ * the themeing.
+ */
+const setTheme = exports.setTheme = (newTheme) => {
+ let oldTheme = getTheme();
+
+ Services.prefs.setCharPref("devtools.theme", newTheme);
+ gDevTools.emit("pref-changed", {
+ pref: "devtools.theme",
+ newValue: newTheme,
+ oldValue: oldTheme
+ });
+};
+/* eslint-enable */