-
Notifications
You must be signed in to change notification settings - Fork 0
/
color-theme.js
92 lines (74 loc) · 3.04 KB
/
color-theme.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
var html = document.querySelector('html');
var colorMode = localStorage.getItem('color-mode');
var prefersDark = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)');
var button = document.querySelector('.toggle-theme');
var icon = document.querySelector('.toggle-theme__icon');
function enableDarkTheme() {
html.classList.add("color-theme_name_dark");
icon.innerText = "☀️";
refreshMetaThemeColor();
}
function disableDarkTheme() {
html.classList.remove("color-theme_name_dark");
icon.innerText = "🌛";
refreshMetaThemeColor();
}
function isThemeDefault() {
return !html.getAttribute('class').match(/color-theme_name_[^ ]/);
}
function isDarkThemeEnabled() {
return html.classList.contains("color-theme_name_dark");
}
function getColorMode() {
let name = 'color-mode';
let matches = document.cookie.match(new RegExp(
"(?:^|; )" + name.replace(/([\.$?*|{}\(\)\[\]\\\/\+^])/g, '\\$1') + "=([^;]*)"
));
return matches ? matches[1] : undefined;
}
function setColorMode(colorMode) {
document.cookie = 'color-mode=' + colorMode + '; max-age=34560000; path=/';
}
// Цвет панели в мобильном Хроме
function refreshMetaThemeColor() {
// Если тема по умолчанию, то ставим акцентный цвет,
// иначе ставим --background-2
let color;
if (isThemeDefault()) {
color = getComputedStyle(document.documentElement).getPropertyValue('--accent');
} else {
color = getComputedStyle(document.documentElement).getPropertyValue('--background-2');
}
document.querySelector('meta[name="theme-color"]').setAttribute('content', color.trim());
}
// -----------------------------------------------------------------------------
document.addEventListener('DOMContentLoaded', function () {
// Устанавливаем цвет панели в Хроме
refreshMetaThemeColor();
// Если сервер добавил класс тёмной темы, то надо также обновить иконку
// на кнопке переключения темы и обновить meta-тег theme-color.
if (isDarkThemeEnabled()) enableDarkTheme();
// Если кука color-mode не установлена, то устанавливаем её
// и меняем тему, если надо. А надо, если пользователь предпочитает тёмную
// тему и сейчас используется дефолтная (белая).
if (!getColorMode()) {
if (prefersDark) {
setColorMode('darkAndColors');
if (isThemeDefault()) enableDarkTheme();
}
else
setColorMode('light');
}
});
// Обработчик клика по кнопке смены темы.
// При клике сменяется не значение colorMode, а меняется фактическая тема.
button.addEventListener('click', function() {
if (isDarkThemeEnabled()) {
disableDarkTheme();
setColorMode('light');
}
else {
enableDarkTheme();
setColorMode('dark');
}
});