-
Notifications
You must be signed in to change notification settings - Fork 85
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(useIsDarkTheme): add useIsDarkTheme composable
Signed-off-by: Grigorii K. Shartsev <[email protected]>
- Loading branch information
Showing
5 changed files
with
121 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
<!-- | ||
- SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors | ||
- SPDX-License-Identifier: AGPL-3.0-or-later | ||
--> | ||
|
||
```ts static | ||
import { | ||
useIsDarkTheme, | ||
useIsDarkThemeElement, | ||
} from '@nextcloud/vue/dist/Composables/useIsDarkTheme.js' | ||
``` | ||
|
||
Same as `isDarkTheme` functions, but with reactivity. | ||
|
||
## Definition | ||
|
||
```ts static | ||
/** | ||
* Check whether the dark theme is enabled on a specific element. | ||
* If you need to check an entire page, use `useIsDarkTheme` instead for better performance. | ||
* Reacts on element attributes change and system theme change. | ||
* @param el - The element to check for the dark theme enabled on | ||
* @return - computed boolean whether the dark theme is enabled | ||
*/ | ||
declare function useIsDarkThemeElement(el: MaybeRef<HTMLElement> = document.body): DeepReadonly<Ref<boolean>> | ||
|
||
/** | ||
* Shared composable to check whether the dark theme is enabled on the page. | ||
* Reacts on body data-theme-* attributes change and system theme change. | ||
* @return - computed boolean whether the dark theme is enabled | ||
*/ | ||
declare function useIsDarkTheme(): DeepReadonly<Ref<boolean>> | ||
``` | ||
|
||
## Example | ||
|
||
```vue | ||
<template> | ||
<div> | ||
<div :style="{ backgroundColor: isDarkTheme ? 'black' : 'white' }"> | ||
Is dark theme enabled? {{ isDarkTheme }} | ||
</div> | ||
<NcButton @click="switchTheme">Switch theme</NcButton> | ||
</div> | ||
</template> | ||
<script> | ||
export default { | ||
setup() { | ||
const isDarkTheme = useIsDarkTheme() | ||
// For documentation only. Do not use in production. | ||
function switchTheme { | ||
if (isDarkTheme.value) { | ||
document.body.setAttribute('data-theme-light', '') | ||
document.body.removeAttribute('data-theme-dark') | ||
document.body.setAttribute('data-themes', 'light') | ||
} else { | ||
document.body.setAttribute('data-theme-dark', '') | ||
document.body.removeAttribute('data-theme-light') | ||
document.body.setAttribute('data-themes', 'dark') | ||
} | ||
} | ||
return { | ||
isDarkTheme, | ||
switchTheme, | ||
} | ||
}, | ||
} | ||
</script> | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
/** | ||
* SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors | ||
* SPDX-License-Identifier: AGPL-3.0-or-later | ||
*/ | ||
|
||
import type { DeepReadonly, Ref } from 'vue' | ||
import { ref, readonly, watch } from 'vue' | ||
import { createSharedComposable, usePreferredDark, useMutationObserver } from '@vueuse/core' | ||
import { checkIfDarkTheme } from '../../functions/isDarkTheme/index.ts' | ||
|
||
/** | ||
* Check whether the dark theme is enabled on a specific element. | ||
* If you need to check an entire page, use `useIsDarkTheme` instead for better performance. | ||
* Reacts on element attributes change and system theme change. | ||
* @param el - The element to check for the dark theme enabled on | ||
* @return {DeepReadonly<Ref<boolean>>} - computed boolean whether the dark theme is enabled | ||
*/ | ||
export function useIsDarkThemeElement(el: HTMLElement = document.body): DeepReadonly<Ref<boolean>> { | ||
const isDarkTheme = ref(checkIfDarkTheme(el)) | ||
const isDarkSystemTheme = usePreferredDark() | ||
|
||
/** Update the isDarkTheme */ | ||
function updateIsDarkTheme() { | ||
isDarkTheme.value = checkIfDarkTheme(el) | ||
} | ||
|
||
// Watch for element change to handle data-theme* attributes change | ||
useMutationObserver(el, updateIsDarkTheme, { attributes: true }) | ||
// Watch for system theme change for the default theme | ||
watch(isDarkSystemTheme, updateIsDarkTheme, { immediate: true }) | ||
|
||
return readonly(isDarkTheme) | ||
} | ||
|
||
/** | ||
* Shared composable to check whether the dark theme is enabled on the page. | ||
* Reacts on body data-theme-* attributes change and system theme change. | ||
* @return {DeepReadonly<Ref<boolean>>} - computed boolean whether the dark theme is enabled | ||
*/ | ||
export const useIsDarkTheme = createSharedComposable(() => useIsDarkThemeElement()) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters