移除多余逻辑

pull/2155/head
lyswhut 2024-12-05 12:10:34 +08:00
parent aa7ab86b62
commit af3b30096d
2 changed files with 6 additions and 6 deletions

View File

@ -240,7 +240,7 @@ const handlePlay = () => {
export const playList = (listId: string, index: number) => {
const prevListId = playInfo.playerListId
setPlayListId(listId)
pause()
// pause()
setPlayMusicInfo(listId, getList(listId)[index])
if (appSetting['player.isAutoCleanPlayedList'] || prevListId != listId) clearPlayedList()
clearTempPlayeList()
@ -256,12 +256,12 @@ const handleToggleStop = () => {
const randomNextMusicInfo = {
info: null as LX.Player.PlayMusicInfo | null,
index: -1,
// index: -1,
}
export const resetRandomNextMusicInfo = () => {
if (randomNextMusicInfo.info) {
randomNextMusicInfo.info = null
randomNextMusicInfo.index = -1
// randomNextMusicInfo.index = -1
}
}
@ -342,13 +342,13 @@ export const getNextPlayMusicInfo = async(): Promise<LX.Player.PlayMusicInfo | n
if (togglePlayMethod == 'random') {
randomNextMusicInfo.info = nextPlayMusicInfo
randomNextMusicInfo.index = nextIndex
// randomNextMusicInfo.index = nextIndex
}
return nextPlayMusicInfo
}
const handlePlayNext = (playMusicInfo: LX.Player.PlayMusicInfo) => {
pause()
// pause()
setPlayMusicInfo(playMusicInfo.listId, playMusicInfo.musicInfo, playMusicInfo.isTempPlay)
handlePlay()
}

View File

@ -21,7 +21,7 @@ const initAudio = () => {
audio.pause()
})
}
const checkMusicUrl = async(url: string) => {
const checkMusicUrl = async(url: string): Promise<boolean> => {
initAudio()
return new Promise((resolve) => {
const clear = () => {