mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-06 22:17:37 +03:00
Play/Pause current song with <Space> key
This commit is contained in:
parent
3fa4ef0166
commit
39c94d3cd9
3 changed files with 52 additions and 11 deletions
|
@ -16,6 +16,7 @@ import {
|
|||
import themes from '../themes'
|
||||
import { makeStyles } from '@material-ui/core/styles'
|
||||
import config from '../config'
|
||||
import Hotkeys from 'react-hot-keys'
|
||||
|
||||
const useStyle = makeStyles((theme) => ({
|
||||
audioTitle: {
|
||||
|
@ -24,6 +25,8 @@ const useStyle = makeStyles((theme) => ({
|
|||
},
|
||||
}))
|
||||
|
||||
let audioInstance = null
|
||||
|
||||
const Player = () => {
|
||||
const classes = useStyle()
|
||||
const translate = useTranslate()
|
||||
|
@ -178,19 +181,41 @@ const Player = () => {
|
|||
})
|
||||
}, [dispatch])
|
||||
|
||||
const onKeyUp = useCallback((keyName, e) => {
|
||||
if (keyName === 'space') {
|
||||
e.preventDefault()
|
||||
}
|
||||
}, [])
|
||||
const onKeyDown = useCallback((keyName, e) => {
|
||||
if (keyName === 'space') {
|
||||
e.preventDefault()
|
||||
audioInstance && audioInstance.togglePlay()
|
||||
}
|
||||
}, [])
|
||||
|
||||
if (authenticated && options.audioLists.length > 0) {
|
||||
return (
|
||||
<ReactJkMusicPlayer
|
||||
{...options}
|
||||
quietUpdate
|
||||
onAudioListsChange={OnAudioListsChange}
|
||||
onAudioProgress={OnAudioProgress}
|
||||
onAudioPlay={OnAudioPlay}
|
||||
onAudioPause={onAudioPause}
|
||||
onAudioEnded={onAudioEnded}
|
||||
onAudioVolumeChange={onAudioVolumeChange}
|
||||
onBeforeDestroy={onBeforeDestroy}
|
||||
/>
|
||||
<Hotkeys
|
||||
keyName="space"
|
||||
onKeyDown={onKeyDown}
|
||||
onKeyUp={onKeyUp}
|
||||
allowRepeat={false}
|
||||
>
|
||||
<ReactJkMusicPlayer
|
||||
{...options}
|
||||
quietUpdate
|
||||
onAudioListsChange={OnAudioListsChange}
|
||||
onAudioProgress={OnAudioProgress}
|
||||
onAudioPlay={OnAudioPlay}
|
||||
onAudioPause={onAudioPause}
|
||||
onAudioEnded={onAudioEnded}
|
||||
onAudioVolumeChange={onAudioVolumeChange}
|
||||
onBeforeDestroy={onBeforeDestroy}
|
||||
getAudioInstance={(instance) => {
|
||||
audioInstance = instance
|
||||
}}
|
||||
/>
|
||||
</Hotkeys>
|
||||
)
|
||||
}
|
||||
document.title = 'Navidrome'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue