Files
BewlyBewly/src/composables/useDark.ts
MidnightCrowing b5f740b478 fix: notifications page shows dark colors in light mode (#907)
* fix: bilibili dark color treatment

* Update useDark.ts

* Update useDark.ts

* add comment

* fix: resolve dark mode support issue in notifications page

---------

Co-authored-by: Hakadao <a578457889743@gmail.com>
2024-07-21 22:36:06 +08:00

170 lines
6.1 KiB
TypeScript

import { usePreferredDark } from '@vueuse/core'
import { settings } from '~/logic'
import { runWhenIdle } from '~/utils/lazyLoad'
import { setCookie } from '~/utils/main'
import { executeTimes } from '~/utils/timer'
export function useDark() {
const isPreferredDark = usePreferredDark()
const currentSystemColorScheme = computed(() => isPreferredDark.value ? 'dark' : 'light')
const currentAppColorScheme = computed((): 'dark' | 'light' => {
if (settings.value.theme !== 'auto')
return settings.value.theme
else
return currentSystemColorScheme.value
})
const isDark = computed(() => currentAppColorScheme.value === 'dark')
let themeChangeTimer: NodeJS.Timeout | null = null
// Watch for changes in the 'settings.value.theme' variable and add the 'dark' class to the 'mainApp' element
// to prevent some Unocss dark-specific styles from failing to take effect
watch(
() => [settings.value.theme, isPreferredDark.value],
() => {
setAppAppearance()
},
{ immediate: true },
)
onMounted(() => {
// Because some shadow dom may not be loaded when the page has already loaded, we need to wait until the page is idle
runWhenIdle(() => {
if (isDark.value) {
setCookie('theme_style', 'dark', 365 * 10)
// TODO: find a better way implement this
themeChangeTimer = executeTimes(() => {
window.dispatchEvent(new CustomEvent('global.themeChange', { detail: 'dark' }))
}, 10, 500)
}
else {
setCookie('theme_style', 'light', 365 * 10)
themeChangeTimer = executeTimes(() => {
window.dispatchEvent(new CustomEvent('global.themeChange', { detail: 'light' }))
}, 10, 500)
}
})
})
/**
* Watch for changes in the 'settings.value.theme' variable and add the 'dark' class to the 'mainApp' element
* to prevent some Unocss dark-specific styles from failing to take effect
*/
function setAppAppearance() {
if (themeChangeTimer)
clearInterval(themeChangeTimer)
if (isDark.value) {
document.querySelector('#bewly')?.classList.add('dark')
document.documentElement.classList.add('dark')
setCookie('theme_style', 'dark', 365 * 10)
window.dispatchEvent(new CustomEvent('global.themeChange', { detail: 'dark' }))
}
else {
document.querySelector('#bewly')?.classList.remove('dark')
document.documentElement.classList.remove('dark')
setCookie('theme_style', 'light', 365 * 10)
window.dispatchEvent(new CustomEvent('global.themeChange', { detail: 'light' }))
}
// Only used as a temporary solution, which will eventually be removed
// It seems like Bilibili already supports dark mode when the `bili_dark` class is added to the `html` element
// but it's not yet fully refined.
if (currentAppColorScheme.value === 'dark') {
if (document.documentElement.classList.contains('bili_dark')) {
document.documentElement.classList.remove('bili_dark')
}
}
// else {
// if (!document.documentElement.classList.contains('bili_dark')) {
// document.documentElement.classList.add('bili_dark')
// }
// }
}
function toggleDark(e: MouseEvent) {
const updateThemeSettings = () => {
if (currentAppColorScheme.value !== currentSystemColorScheme.value)
settings.value.theme = 'auto'
else
settings.value.theme = isPreferredDark.value ? 'light' : 'dark'
}
const isAppearanceTransition = typeof document !== 'undefined'
// @ts-expect-error: Transition API
&& document.startViewTransition
&& !window.matchMedia('(prefers-reduced-motion: reduce)').matches
if (!isAppearanceTransition) {
updateThemeSettings()
}
else {
const x = e.clientX
const y = e.clientY
const endRadius = Math.hypot(
Math.max(x, innerWidth - x),
Math.max(y, innerHeight - y),
)
// https://github.com/vueuse/vueuse/pull/3129
const style = document.createElement('style')
const styleString = `
*, *::before, *::after
{-webkit-transition:none!important;-moz-transition:none!important;-o-transition:none!important;-ms-transition:none!important;transition:none!important}`
style.appendChild(document.createTextNode(styleString))
document.head.appendChild(style)
// Since the above normal dom style cannot be applied in shadow dom style
// We need to add this style again to the shadow dom
const shadowDomStyle = document.createElement('style')
const shadowDomStyleString = `
*, *::before, *::after
{-webkit-transition:none!important;-moz-transition:none!important;-o-transition:none!important;-ms-transition:none!important;transition:none!important; will-change: background}`
shadowDomStyle.appendChild(document.createTextNode(shadowDomStyleString))
const bewlyShadowRoot = document.getElementById('bewly')?.shadowRoot
const bewlyWrapper = bewlyShadowRoot?.getElementById('bewly-wrapper')
if (!bewlyWrapper)
throw new Error('mainAppRef is not found')
bewlyWrapper.appendChild(shadowDomStyle)
// @ts-expect-error: Transition API
const transition = document.startViewTransition(async () => {
updateThemeSettings()
await nextTick()
})
transition.ready.then(() => {
const clipPath = [
`circle(0px at ${x}px ${y}px)`,
`circle(${endRadius}px at ${x}px ${y}px)`,
]
const animation = document.documentElement.animate(
{
clipPath: currentAppColorScheme.value === 'dark'
? [...clipPath].reverse()
: clipPath,
},
{
duration: 300,
easing: 'ease-in-out',
pseudoElement: currentAppColorScheme.value === 'dark'
? '::view-transition-old(root)'
: '::view-transition-new(root)',
},
)
animation.addEventListener('finish', () => {
document.head.removeChild(style!)
bewlyWrapper.removeChild(shadowDomStyle!)
}, { once: true })
})
}
}
return {
isDark,
toggleDark,
}
}