mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-06 05:57:35 +03:00
Do not trigger next/prev event handlers when Cmd (meta) is pressed
This commit is contained in:
parent
bb6197360b
commit
4b373560c6
1 changed files with 12 additions and 6 deletions
|
@ -93,12 +93,18 @@ const Player = () => {
|
|||
(audioInstance.volume = Math.min(1, audioInstance.volume + 0.1)),
|
||||
VOL_DOWN: () =>
|
||||
(audioInstance.volume = Math.max(0, audioInstance.volume - 0.1)),
|
||||
PREV_SONG: useCallback(() => {
|
||||
if (prevSong()) audioInstance && audioInstance.playPrev()
|
||||
}, [prevSong]),
|
||||
NEXT_SONG: useCallback(() => {
|
||||
if (nextSong()) audioInstance && audioInstance.playNext()
|
||||
}, [nextSong]),
|
||||
PREV_SONG: useCallback(
|
||||
(e) => {
|
||||
if (!e.metaKey && prevSong()) audioInstance && audioInstance.playPrev()
|
||||
},
|
||||
[prevSong]
|
||||
),
|
||||
NEXT_SONG: useCallback(
|
||||
(e) => {
|
||||
if (!e.metaKey && nextSong()) audioInstance && audioInstance.playNext()
|
||||
},
|
||||
[nextSong]
|
||||
),
|
||||
}
|
||||
|
||||
const defaultOptions = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue