This repository has been archived on 2023-08-30. You can view files and clone it, but cannot push or open issues/pull-requests.
appcat
/
sonist
Archived
1
0
Fork 0
sonist/src/js/modules/ktv.js

113 lines
2.5 KiB
JavaScript

/**
* ktv模块
* @author yutent<yutent@doui.cc>
* @date 2019/01/13 21:43:50
*/
'use strict'
import Api from '/js/api.js'
import Local from '/js/modules/local.js'
const { ipcRenderer } = require('electron')
const log = console.log
export default {
data: {
allLrcView: false,
allLrc: '',
lrc: {
l: { bg: '', txt: '' },
r: { bg: '', txt: '' }
},
lrcSearchBoxShow: false,
lrcForm: {
input: '',
__input__: '', //缓存之前的搜索词
result: []
}
},
methods: {
forwardLrc(time) {
LYRICS.forward(time)
layer.toast(`歌词已${time > 0 ? '提前' : '延后'} ${time}`)
},
toggleLrcView() {
this.allLrcView = !this.allLrcView
},
closeKtvMode() {
this.ktvMode = 0
this.lrcSearchBoxShow = false
},
showLrcSearch() {
this.lrcForm.input = `${this.curr.artist} ${this.curr.title}`
this.lrcSearchBoxShow = true
this.searchLrc({ keyCode: 13 })
},
closeLrcSearch() {
this.lrcSearchBoxShow = false
},
searchLrc(e) {
if (e.keyCode === 13) {
let { input, __input__ } = this.lrcForm
// 搜索词未变,直接忽略
if (input === __input__) {
return
}
Api.search(input).then(list => {
this.lrcForm.__input__ = input
this.lrcForm.result = list.map(it => {
return {
title: it.SongName,
artist: it.SingerName,
album: it.AlbumName,
albumId: it.AlbumID,
duration: it.Duration,
hash: it.FileHash
}
})
})
}
},
useThisLrc(it) {
Api.getSongInfoByHash(it.hash, it.albumId).then(json => {
if (json.lyrics) {
let { id } = SONIST.getCurrSong()
let song = LS.get(id)
song.album = json.album_name
song.albumId = json.album_id
song.kgHash = json.hash
song.cover = json.img
LS.update(id, song)
Local.list.set(SONIST.__CURR__, song)
SONIST.clear()
SONIST.push(LS.getAll())
this.updateCurr(song)
this.draw(true)
ipcRenderer.send('save-lrc', { id, lrc: json.lyrics })
ipcRenderer.send('set-music', LS.getAll())
LYRICS.__init__(id)
layer.toast('歌词应用成功...')
this.closeLrcSearch()
} else {
layer.alert('该歌曲没有上传歌词...')
}
})
}
}
}
一个音乐播放器, 主打本地音乐播放。支持 自动歌词/自动封面/均衡器等常见功能。
JavaScript 60.1%
SCSS 19.2%
HTML 16.9%
CSS 3.8%