mirror of https://github.com/gorhill/uBlock.git
Fix race condition when looking up current auto/light/dark theme
Related feedback:
- e2dd008388 (commitcomment-104105757)
This commit is contained in:
parent
3da9fe08e1
commit
caeb848c56
|
@ -26,6 +26,7 @@
|
||||||
/******************************************************************************/
|
/******************************************************************************/
|
||||||
|
|
||||||
import { dom, qs$ } from './dom.js';
|
import { dom, qs$ } from './dom.js';
|
||||||
|
import { getActualTheme } from './theme.js';
|
||||||
|
|
||||||
/******************************************************************************/
|
/******************************************************************************/
|
||||||
|
|
||||||
|
@ -45,10 +46,14 @@ const cmEditor = new CodeMirror(qs$('#content'), {
|
||||||
});
|
});
|
||||||
|
|
||||||
uBlockDashboard.patchCodeMirrorEditor(cmEditor);
|
uBlockDashboard.patchCodeMirrorEditor(cmEditor);
|
||||||
if ( dom.cl.has(dom.html, 'dark') ) {
|
|
||||||
|
vAPI.messaging.send('dom', { what: 'uiStyles' }).then(response => {
|
||||||
|
if ( typeof response !== 'object' || response === null ) { return; }
|
||||||
|
if ( getActualTheme(response.uiTheme) === 'dark' ) {
|
||||||
dom.cl.add('#content .cm-s-default', 'cm-s-night');
|
dom.cl.add('#content .cm-s-default', 'cm-s-night');
|
||||||
dom.cl.remove('#content .cm-s-default', 'cm-s-default');
|
dom.cl.remove('#content .cm-s-default', 'cm-s-default');
|
||||||
}
|
}
|
||||||
|
});
|
||||||
|
|
||||||
// Convert resource URLs into clickable links to code viewer
|
// Convert resource URLs into clickable links to code viewer
|
||||||
cmEditor.addOverlay({
|
cmEditor.addOverlay({
|
||||||
|
|
|
@ -21,8 +21,9 @@
|
||||||
|
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
function setTheme(theme, propagate = false) {
|
function getActualTheme(nominalTheme) {
|
||||||
if ( theme === 'auto' ) {
|
let theme = nominalTheme || 'light';
|
||||||
|
if ( nominalTheme === 'auto' ) {
|
||||||
if ( typeof self.matchMedia === 'function' ) {
|
if ( typeof self.matchMedia === 'function' ) {
|
||||||
const mql = self.matchMedia('(prefers-color-scheme: dark)');
|
const mql = self.matchMedia('(prefers-color-scheme: dark)');
|
||||||
theme = mql instanceof Object && mql.matches === true
|
theme = mql instanceof Object && mql.matches === true
|
||||||
|
@ -32,6 +33,11 @@ function setTheme(theme, propagate = false) {
|
||||||
theme = 'light';
|
theme = 'light';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
return theme;
|
||||||
|
}
|
||||||
|
|
||||||
|
function setTheme(theme, propagate = false) {
|
||||||
|
theme = getActualTheme(theme);
|
||||||
let w = self;
|
let w = self;
|
||||||
for (;;) {
|
for (;;) {
|
||||||
const rootcl = w.document.documentElement.classList;
|
const rootcl = w.document.documentElement.classList;
|
||||||
|
@ -139,6 +145,7 @@ function setAccentColor(
|
||||||
}
|
}
|
||||||
|
|
||||||
export {
|
export {
|
||||||
|
getActualTheme,
|
||||||
setTheme,
|
setTheme,
|
||||||
setAccentColor,
|
setAccentColor,
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue