1
0

Play a sound when marking a task as done

This commit is contained in:
kolaente
2021-01-30 21:45:54 +01:00
parent 91a4a39527
commit 7f5140bbb4
8 changed files with 42 additions and 2 deletions

11
src/helpers/playPop.js Normal file
View File

@ -0,0 +1,11 @@
export const playSoundWhenDoneKey = 'playSoundWhenTaskDone'
export const playPop = () => {
const enabled = localStorage.getItem(playSoundWhenDoneKey) === 'true' || localStorage.getItem(playSoundWhenDoneKey) === null
if(!enabled) {
return
}
const popSound = new Audio('/audio/pop.wav')
popSound.play()
}