Files
flotilla/src/app/components/NewNotificationSound.svelte
T

37 lines
828 B
Svelte

<script lang="ts">
import {onMount} from "svelte"
import {notificationSettings} from "@app/core/state"
import {onNotification} from "@app/util/push"
let audioElement: HTMLAudioElement
let enabled = $state(false)
const onVisibilityChange = () => {
if (document.hidden) {
enabled = true
} else {
enabled = false
}
}
onMount(() => {
audioElement.load()
document.addEventListener("visibilitychange", onVisibilityChange)
const unsubscribe = onNotification(() => {
if (enabled && $notificationSettings.sound) {
audioElement?.play()
}
})
return () => {
unsubscribe()
document.removeEventListener("visibilitychange", onVisibilityChange)
}
})
</script>
<audio bind:this={audioElement} src="/new-notification-3-398649.mp3"></audio>