mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-06 14:07:36 +03:00
Add Desktop Notifications
This commit is contained in:
parent
b8d47d1db4
commit
2397a7e464
12 changed files with 99 additions and 4 deletions
|
@ -18,6 +18,7 @@ import themes from '../themes'
|
|||
import config from '../config'
|
||||
import PlayerToolbar from './PlayerToolbar'
|
||||
import { useHotkeys } from 'react-hotkeys-hook'
|
||||
import { sendNotification, baseUrl } from '../utils'
|
||||
|
||||
const useStyle = makeStyles((theme) => ({
|
||||
audioTitle: {
|
||||
|
@ -54,6 +55,7 @@ const Player = () => {
|
|||
const queue = useSelector((state) => state.queue)
|
||||
const current = queue.current || {}
|
||||
const { authenticated } = useAuthState()
|
||||
const showNotifications = useSelector((state) => state.settings.notifications || false)
|
||||
|
||||
const visible = authenticated && queue.queue.length > 0
|
||||
const classes = useStyle({ visible })
|
||||
|
@ -230,9 +232,12 @@ const Player = () => {
|
|||
label: `${info.name} - ${info.singer}`,
|
||||
})
|
||||
}
|
||||
if (showNotifications) {
|
||||
sendNotification(info.name, `${info.singer} - ${info.album}`, baseUrl(info.cover))
|
||||
}
|
||||
}
|
||||
},
|
||||
[dispatch]
|
||||
[dispatch, showNotifications]
|
||||
)
|
||||
|
||||
const onAudioPause = useCallback(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue