diff options
author | hackademix | 2018-08-13 01:33:40 +0200 |
---|---|---|
committer | hackademix | 2018-08-13 01:33:40 +0200 |
commit | af4ec5c169f4758cd52f0db82aaa25dca061067e (patch) | |
tree | 0197c6dd6fac9ac829f2846a55b71e139e4667bc /src/ui/ui.js | |
parent | e392a73a508c917c05a0710130eed7959c1bc145 (diff) | |
download | noscript-af4ec5c169f4758cd52f0db82aaa25dca061067e.tar.gz noscript-af4ec5c169f4758cd52f0db82aaa25dca061067e.tar.xz noscript-af4ec5c169f4758cd52f0db82aaa25dca061067e.zip |
"High contrast appearance" option to override high contrast themes auto-detection.
Diffstat (limited to 'src/ui/ui.js')
-rw-r--r-- | src/ui/ui.js | 83 |
1 files changed, 68 insertions, 15 deletions
diff --git a/src/ui/ui.js b/src/ui/ui.js index 6538ade..f721042 100644 --- a/src/ui/ui.js +++ b/src/ui/ui.js @@ -27,10 +27,10 @@ var UI = (() => { } await include(scripts); - detectHighContrast(); + let inited = new Promise(resolve => { - let listener = m => { + let listener = async m => { if (m.type === "settings") { UI.policy = new Policy(m.policy); UI.snapshot = UI.policy.snapshot; @@ -44,6 +44,7 @@ var UI = (() => { } resolve(); if (UI.onSettings) UI.onSettings(); + await HighContrast.init(); } }; browser.runtime.onMessage.addListener(listener); @@ -98,21 +99,73 @@ var UI = (() => { async openSiteInfo(domain) { let url = `/ui/siteInfo.html#${encodeURIComponent(domain)};${UI.tabId}`; browser.tabs.create({url}); - } + }, + + wireOption(name, storage = "sync", onchange) { + let input = document.querySelector(`#opt-${name}`); + if (!input) { + debug("Checkbox not found %s", name); + return; + } + if (typeof storage === "function") { + input.onchange = e => storage(input); + input.checked = storage(null); + } else { + let obj = UI[storage]; + if (!obj) log(storage); + input.checked = obj[name]; + if (onchange) onchange(input.checked); + input.onchange = async () => { + obj[name] = input.checked; + await UI.updateSettings({[storage]: obj}); + if (onchange) onchange(obj[name]); + } + } + return input; + } }; - - function detectHighContrast() { - // detect high contrast - let canary = document.createElement("input"); - canary.className="https-only"; - canary.style.display = "none"; - document.body.appendChild(canary); - if (UI.highContrast = window.getComputedStyle(canary).backgroundImage === "none") { - include("/ui/ui-hc.css"); - document.documentElement.classList.toggle("hc"); + + var HighContrast = { + css: null, + async init() { + this.widget = UI.wireOption("highContrast", "local", value => { + UI.highContrast = value; + this.toggle(); + }); + await this.toggle(); + }, + async toggle() { + let hc = "highContrast" in UI ? UI.highContrast : await this.detect(); + if (hc) { + if (this.css) { + document.documentElement.appendChild(this.css); + } else { + this.css = await include("/ui/ui-hc.css") + } + } else if (this.css) { + this.css.remove(); + } + document.documentElement.classList.toggle("hc", hc); + if (this.widget) { + this.widget.checked = hc; + } + }, + + detect() { + if ("highContrast" in UI.local) { + UI.highContrast = UI.local.highContrast; + } else { + // auto-detect + let canary = document.createElement("input"); + canary.className="https-only"; + canary.style.display = "none"; + document.body.appendChild(canary); + UI.highContrast = window.getComputedStyle(canary).backgroundImage === "none"; + canary.parentNode.removeChild(canary); + } + return UI.highContrast; } - canary.parentNode.removeChild(canary); - } + }; function fireOnChange(sitesUI, data) { if (UI.isDirty(true)) { |