1 Star 0 Fork 0

MTM/surmon.me

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
music.js 1.61 KB
一键复制 编辑 原始数据 按行查看 历史
Surmon 提交于 2020-02-13 10:29 . Upgrade
/**
* @file Music 数据状态 / ES module
* @module store/music
* @author Surmon <https://github.com/surmon-china>
*/
import appConfig from '~/config/app.config'
export const state = () => {
return {
list: {
fetching: false,
data: null
},
lrc: {
fetching: false,
data: null
}
}
}
export const mutations = {
updateListFetching(state, action) {
state.list.fetching = action
},
updateListData(state, action) {
state.list.data = action
},
updateLrcFetching(state, action) {
state.lrc.fetching = action
},
updateLrcData(state, action) {
state.lrc.data = action
}
}
export const actions = {
fetchSongList({ commit }) {
commit('updateListFetching', true)
return this.$axios
.$get(`/music/list/${appConfig.music.id}`)
.then(response => {
commit('updateListData', response.result)
commit('updateListFetching', false)
return response
})
.catch(error => {
commit('updateListData', null)
commit('updateListFetching', false)
return Promise.reject(error)
})
},
fetchSongLrc({ commit }, songID) {
commit('updateLrcFetching', true)
return this.$axios
.$get(`/music/lrc/${songID}`)
.then(response => {
commit('updateLrcData', response.result)
commit('updateLrcFetching', false)
return response
})
.catch(error => {
commit('updateLrcData', null)
commit('updateLrcFetching', false)
return Promise.reject(error)
})
},
fetchSongUrl(_, songID) {
return this.$axios.$get(`/music/url/${songID}`)
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/munu/surmon.me.git
[email protected]:munu/surmon.me.git
munu
surmon.me
surmon.me
master

搜索帮助