mirror of
				https://github.com/iv-org/invidious.git
				synced 2025-11-04 06:08:31 -06:00 
			
		
		
		
	Changed the default value for the preference `dark-mode` from "light" to "", to reflect the fact that `dark-mode` is tri-state and that the default (no preference set) may be the dark theme (depending on `prefers-color-scheme`).
		
			
				
	
	
		
			53 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			53 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
var toggle_theme = document.getElementById('toggle_theme');
 | 
						|
toggle_theme.href = 'javascript:void(0);';
 | 
						|
 | 
						|
toggle_theme.addEventListener('click', function () {
 | 
						|
    var dark_mode = document.getElementById('dark_theme').media == 'none';
 | 
						|
 | 
						|
    var url = '/toggle_theme?redirect=false';
 | 
						|
    var xhr = new XMLHttpRequest();
 | 
						|
    xhr.responseType = 'json';
 | 
						|
    xhr.timeout = 10000;
 | 
						|
    xhr.open('GET', url, true);
 | 
						|
 | 
						|
    set_mode(dark_mode);
 | 
						|
    localStorage.setItem('dark_mode', dark_mode ? 'dark' : 'light');
 | 
						|
 | 
						|
    xhr.send();
 | 
						|
});
 | 
						|
 | 
						|
window.addEventListener('storage', function (e) {
 | 
						|
    if (e.key === 'dark_mode') {
 | 
						|
        update_mode(e.newValue);
 | 
						|
    }
 | 
						|
});
 | 
						|
 | 
						|
window.addEventListener('load', function () {
 | 
						|
    update_mode(window.localStorage.dark_mode);
 | 
						|
});
 | 
						|
 | 
						|
function set_mode (bool) {
 | 
						|
    document.getElementById('dark_theme').media = !bool ? 'none' : '';
 | 
						|
    document.getElementById('light_theme').media = bool ? 'none' : '';
 | 
						|
 | 
						|
    if (bool) {
 | 
						|
        toggle_theme.children[0].setAttribute('class', 'icon ion-ios-sunny');
 | 
						|
    } else {
 | 
						|
        toggle_theme.children[0].setAttribute('class', 'icon ion-ios-moon');
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
function update_mode (mode) {
 | 
						|
    if (mode === 'true' /* for backwards compatibility */ || mode === 'dark') {
 | 
						|
        // If dark mode preference set
 | 
						|
        set_mode(true);
 | 
						|
    }
 | 
						|
    else if (mode !== 'light' && window.matchMedia('(prefers-color-scheme: dark)').matches) {
 | 
						|
        // If no preference set, but the browser tells us that the operating system has a dark theme
 | 
						|
        set_mode(true);
 | 
						|
    }
 | 
						|
    else set_mode(false);
 | 
						|
}
 | 
						|
 | 
						|
 |