2023-07-27 00:31:52 -05:00
|
|
|
/*
|
2024-02-13 09:59:27 -06:00
|
|
|
* SPDX-FileCopyrightText: syuilo and misskey-project
|
2023-07-27 00:31:52 -05:00
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2023-02-24 17:18:12 -06:00
|
|
|
import { onMounted, onUnmounted, ref, Ref } from 'vue';
|
|
|
|
|
|
|
|
export function useDocumentVisibility(): Ref<DocumentVisibilityState> {
|
|
|
|
const visibility = ref(document.visibilityState);
|
|
|
|
|
|
|
|
const onChange = (): void => {
|
|
|
|
visibility.value = document.visibilityState;
|
|
|
|
};
|
|
|
|
|
|
|
|
onMounted(() => {
|
|
|
|
document.addEventListener('visibilitychange', onChange);
|
|
|
|
});
|
|
|
|
|
|
|
|
onUnmounted(() => {
|
|
|
|
document.removeEventListener('visibilitychange', onChange);
|
|
|
|
});
|
|
|
|
|
|
|
|
return visibility;
|
|
|
|
}
|