-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathcolor-mode-picker.js
More file actions
101 lines (84 loc) · 3.08 KB
/
color-mode-picker.js
File metadata and controls
101 lines (84 loc) · 3.08 KB
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
93
94
95
96
97
98
99
100
101
/*!
* Color mode toggler for Bootstrap's docs (https://getbootstrap.com/)
* Copyright 2011-2023 The Bootstrap Authors
* Licensed under the Creative Commons Attribution 3.0 Unported License.
* Taken from https://getbootstrap.com/docs/5.3/customize/color-modes/#javascript
*/
function getStoredTheme(){
return localStorage.getItem('theme')
}
function setStoredTheme(theme) {
localStorage.setItem('theme', theme)
}
function getPreferredTheme() {
const storedTheme = getStoredTheme()
if (storedTheme) {
return storedTheme
}
return window.matchMedia('(prefers-color-scheme: dark)').matches ? 'dark' : 'light'
}
function setTheme(theme) {
let currentTheme = theme || 'auto';
if (theme === 'auto') {
if (window.matchMedia('(prefers-color-scheme: dark)').matches) {
currentTheme = 'dark'
} else {
currentTheme = 'light'
}
}
const event = new CustomEvent('theme:change', {
bubbles: true,
cancelable: false,
detail: {
preferredTheme: theme,
currentTheme: currentTheme,
}
})
document.dispatchEvent(event)
document.documentElement.setAttribute('data-bs-theme', currentTheme)
return currentTheme;
}
window.getCurrentTheme = () => {
return document.documentElement.getAttribute('data-bs-theme') || setTheme(getPreferredTheme());
}
function showActiveTheme(theme, focus = false) {
const themeSwitcher = document.querySelector('#bd-theme')
if (!themeSwitcher) {
return
}
const themeSwitcherText = document.querySelector('#bd-theme-text')
const activeThemeIcon = document.querySelector('.theme-icon-active use')
const btnToActive = document.querySelector(`[data-bs-theme-value="${theme}"]`)
const svgOfActiveBtn = btnToActive.querySelector('svg use').getAttribute('href')
document.querySelectorAll('[data-bs-theme-value]').forEach(element => {
element.classList.remove('active')
element.setAttribute('aria-pressed', 'false')
})
btnToActive.classList.add('active')
btnToActive.setAttribute('aria-pressed', 'true')
activeThemeIcon.setAttribute('href', svgOfActiveBtn)
const themeSwitcherLabel = `${themeSwitcherText.textContent} (${btnToActive.dataset.bsThemeValue})`
themeSwitcher.setAttribute('aria-label', themeSwitcherLabel)
if (focus) {
themeSwitcher.focus()
}
}
$(document).on('turbo-migration:load', function() {
setTheme(getPreferredTheme())
showActiveTheme(getPreferredTheme())
document.querySelectorAll('[data-bs-theme-value]')
.forEach(toggle => {
toggle.addEventListener('click', () => {
const theme = toggle.getAttribute('data-bs-theme-value')
setStoredTheme(theme)
setTheme(theme)
showActiveTheme(theme, true)
})
})
})
window.matchMedia('(prefers-color-scheme: dark)').addEventListener('change', () => {
const storedTheme = getStoredTheme()
if (storedTheme !== 'light' && storedTheme !== 'dark') {
setTheme(getPreferredTheme())
}
})