mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-06 05:57:35 +03:00
Make event handlers naming consistent (camelCase)
This commit is contained in:
parent
29817db9f2
commit
4b38a13243
1 changed files with 6 additions and 6 deletions
|
@ -196,14 +196,14 @@ const Player = () => {
|
|||
defaultOptions,
|
||||
])
|
||||
|
||||
const OnAudioListsChange = useCallback(
|
||||
const onAudioListsChange = useCallback(
|
||||
(currentPlayIndex, audioLists) => {
|
||||
dispatch(syncQueue(currentPlayIndex, audioLists))
|
||||
},
|
||||
[dispatch]
|
||||
)
|
||||
|
||||
const OnAudioProgress = useCallback(
|
||||
const onAudioProgress = useCallback(
|
||||
(info) => {
|
||||
if (info.ended) {
|
||||
document.title = 'Navidrome'
|
||||
|
@ -233,7 +233,7 @@ const Player = () => {
|
|||
[dispatch]
|
||||
)
|
||||
|
||||
const OnAudioPlay = useCallback(
|
||||
const onAudioPlay = useCallback(
|
||||
(info) => {
|
||||
dispatch(currentPlaying(info))
|
||||
if (info.duration) {
|
||||
|
@ -298,9 +298,9 @@ const Player = () => {
|
|||
{...options}
|
||||
quietUpdate
|
||||
className={classes.player}
|
||||
onAudioListsChange={OnAudioListsChange}
|
||||
onAudioProgress={OnAudioProgress}
|
||||
onAudioPlay={OnAudioPlay}
|
||||
onAudioListsChange={onAudioListsChange}
|
||||
onAudioProgress={onAudioProgress}
|
||||
onAudioPlay={onAudioPlay}
|
||||
onAudioPause={onAudioPause}
|
||||
onAudioEnded={onAudioEnded}
|
||||
onAudioVolumeChange={onAudioVolumeChange}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue