254 lines
8.1 KiB
Vue
254 lines
8.1 KiB
Vue
<template lang="pug">
|
||
div(:class="$style.list")
|
||
//- transition
|
||
div(v-if="list.length" :class="$style.content")
|
||
div(:class="$style.thead")
|
||
table
|
||
thead
|
||
tr
|
||
th.nobreak.center(style="width: 37px;")
|
||
material-checkbox(id="search_select_all" v-model="isSelectAll" @change="handleSelectAllData"
|
||
:indeterminate="isIndeterminate" :title="isSelectAll && !isIndeterminate ? '全不选' : '全选'")
|
||
th.nobreak(style="width: 25%;") 歌曲名
|
||
th.nobreak(style="width: 20%;") 歌手
|
||
th.nobreak(style="width: 20%;") 专辑
|
||
th.nobreak(style="width: 20%;") 操作
|
||
th.nobreak(style="width: 10%;") 时长
|
||
div.scroll(:class="$style.tbody")
|
||
table
|
||
tbody
|
||
tr(v-for='(item, index) in list' :key='item.songmid'
|
||
@click="handleDoubleClick(index)" :class="[isPlayList && playIndex === index ? $style.active : '', (isAPITemp && item.source != 'kw') || item.source == 'tx' ? $style.disabled : '']")
|
||
td.nobreak.center(style="width: 37px;" @click.stop)
|
||
material-checkbox(:id="index.toString()" v-model="selectdData" :value="item")
|
||
td.break(style="width: 25%;") {{item.name}}
|
||
//- span.badge.badge-light(v-if="item._types['128k']") 128K
|
||
//- span.badge.badge-light(v-if="item._types['192k']") 192K
|
||
//- span.badge.badge-secondary(v-if="item._types['320k']") 320K
|
||
//- span.badge.badge-info(v-if="item._types.ape") APE
|
||
//- span.badge.badge-success(v-if="item._types.flac") FLAC
|
||
td.break(style="width: 20%;") {{item.singer}}
|
||
td.break(style="width: 20%;") {{item.albumName}}
|
||
td(style="width: 20%; padding-left: 0; padding-right: 0;")
|
||
material-list-buttons(:index="index" @btn-click="handleListBtnClick")
|
||
//- button.btn-info(type='button' v-if="item._types['128k'] || item._types['192k'] || item._types['320k'] || item._types.flac" @click.stop='openDownloadModal(index)') 下载
|
||
//- button.btn-secondary(type='button' v-if="item._types['128k'] || item._types['192k'] || item._types['320k']" @click.stop='testPlay(index)') 试听
|
||
//- button.btn-secondary(type='button' @click.stop='handleRemove(index)') 删除
|
||
//- button.btn-success(type='button' v-if="(item._types['128k'] || item._types['192k'] || item._types['320k']) && userInfo" @click.stop='showListModal(index)') +
|
||
td(style="width: 10%;") {{item.interval || '--/--'}}
|
||
div(:class="$style.noItem" v-else)
|
||
material-download-modal(:show="isShowDownload" :musicInfo="musicInfo" @select="handleAddDownload" @close="isShowDownload = false")
|
||
material-download-multiple-modal(:show="isShowDownloadMultiple" :list="selectdData" @select="handleAddDownloadMultiple" @close="isShowDownloadMultiple = false")
|
||
material-flow-btn(:show="isShowEditBtn" :add-btn="false" :play-btn="false" @btn-click="handleFlowBtnClick")
|
||
</template>
|
||
|
||
<script>
|
||
import { mapMutations, mapGetters, mapActions } from 'vuex'
|
||
export default {
|
||
name: 'List',
|
||
data() {
|
||
return {
|
||
clickTime: window.performance.now(),
|
||
clickIndex: -1,
|
||
isShowDownload: false,
|
||
musicInfo: null,
|
||
selectdData: [],
|
||
isSelectAll: false,
|
||
isIndeterminate: false,
|
||
isShowEditBtn: false,
|
||
isShowDownloadMultiple: false,
|
||
}
|
||
},
|
||
computed: {
|
||
...mapGetters(['userInfo', 'setting']),
|
||
...mapGetters('list', ['defaultList', 'userList']),
|
||
...mapGetters('player', ['listId', 'playIndex']),
|
||
isPlayList() {
|
||
return this.listId != 'download' && (
|
||
((!this.$route.query.id || this.$route.query.id == 'test') && this.listId == 'test') ||
|
||
this.$route.query.id == this.listId
|
||
)
|
||
},
|
||
list() {
|
||
return !this.$route.query.id || this.$route.query.id == 'test'
|
||
? this.defaultList.list
|
||
: this.userList.find(l => l._id == this.$route.query.id) || []
|
||
},
|
||
isAPITemp() {
|
||
return this.setting.apiSource == 'temp'
|
||
},
|
||
},
|
||
watch: {
|
||
selectdData(n) {
|
||
const len = n.length
|
||
if (len) {
|
||
this.isSelectAll = true
|
||
this.isIndeterminate = len !== this.list.length
|
||
this.isShowEditBtn = true
|
||
} else {
|
||
this.isSelectAll = false
|
||
this.isShowEditBtn = false
|
||
}
|
||
},
|
||
list() {
|
||
this.resetSelect()
|
||
},
|
||
},
|
||
// beforeRouteUpdate(to, from, next) {
|
||
// // if (to.query.id === undefined) return
|
||
// // if (to.query.text === '') {
|
||
// // this.clearList()
|
||
// // } else {
|
||
// // this.text = to.query.text
|
||
// // this.page = 1
|
||
// // this.handleSearch(this.text, this.page)
|
||
// // }
|
||
// next()
|
||
// },
|
||
// mounted() {
|
||
// console.log('mounted')
|
||
// if (this.$route.query.text === undefined) {
|
||
// let info = this.$store.getters['search/info']
|
||
// this.text = info.text
|
||
// this.page = info.page
|
||
// } else if (this.$route.query.text === '') {
|
||
// this.clearList()
|
||
// } else {
|
||
// this.text = this.$route.query.text
|
||
// this.page = 1
|
||
// this.handleSearch(this.text, this.page)
|
||
// }
|
||
// },
|
||
methods: {
|
||
...mapMutations('list', ['defaultListRemove', 'defaultListRemoveMultiple']),
|
||
...mapActions('download', ['createDownload', 'createDownloadMultiple']),
|
||
...mapMutations('player', ['setList']),
|
||
handleDoubleClick(index) {
|
||
if (
|
||
window.performance.now() - this.clickTime > 400 ||
|
||
this.clickIndex !== index
|
||
) {
|
||
this.clickTime = window.performance.now()
|
||
this.clickIndex = index
|
||
return
|
||
}
|
||
this.testPlay(index)
|
||
this.clickTime = 0
|
||
this.clickIndex = -1
|
||
},
|
||
testPlay(index) {
|
||
if ((this.isAPITemp && this.list[index].source != 'kw') || this.list[index].source == 'tx') return
|
||
this.setList({ list: this.list, listId: 'test', index })
|
||
},
|
||
handleRemove(index) {
|
||
this.defaultListRemove(index)
|
||
},
|
||
handleListBtnClick(info) {
|
||
switch (info.action) {
|
||
case 'download':
|
||
const minfo = this.list[info.index]
|
||
if ((this.isAPITemp && minfo.source != 'kw') || minfo.source == 'tx') return
|
||
this.musicInfo = minfo
|
||
this.$nextTick(() => {
|
||
this.isShowDownload = true
|
||
})
|
||
break
|
||
case 'play':
|
||
this.testPlay(info.index)
|
||
break
|
||
case 'remove':
|
||
this.handleRemove(info.index)
|
||
break
|
||
}
|
||
},
|
||
handleAddDownload(type) {
|
||
this.createDownload({ musicInfo: this.musicInfo, type })
|
||
this.isShowDownload = false
|
||
},
|
||
handleSelectAllData(isSelect) {
|
||
this.selectdData = isSelect ? [...this.list] : []
|
||
},
|
||
resetSelect() {
|
||
this.isSelectAll = false
|
||
this.selectdData = []
|
||
},
|
||
handleAddDownloadMultiple(type) {
|
||
const list = this.setting.apiSource == 'temp' ? this.selectdData.filter(s => s.source == 'kw') : this.selectdData.filter(s => s.source != 'tx')
|
||
this.createDownloadMultiple({ list, type })
|
||
this.resetSelect()
|
||
this.isShowDownloadMultiple = false
|
||
},
|
||
handleFlowBtnClick(action) {
|
||
switch (action) {
|
||
case 'download':
|
||
this.isShowDownloadMultiple = true
|
||
break
|
||
case 'remove':
|
||
this.defaultListRemoveMultiple(this.selectdData)
|
||
this.resetSelect()
|
||
break
|
||
}
|
||
},
|
||
},
|
||
}
|
||
</script>
|
||
|
||
<style lang="less" module>
|
||
@import '../assets/styles/layout.less';
|
||
|
||
.list {
|
||
overflow: hidden;
|
||
height: 100%;
|
||
// .noItem {
|
||
|
||
// }
|
||
}
|
||
.content {
|
||
height: 100%;
|
||
font-size: 14px;
|
||
display: flex;
|
||
flex-flow: column nowrap;
|
||
// table {
|
||
// position: relative;
|
||
// thead {
|
||
// position: fixed;
|
||
// width: 100%;
|
||
// th {
|
||
// width: 100%;
|
||
// }
|
||
// }
|
||
// }
|
||
}
|
||
.thead {
|
||
flex: none;
|
||
}
|
||
.tbody {
|
||
flex: auto;
|
||
overflow-y: auto;
|
||
td {
|
||
font-size: 12px;
|
||
}
|
||
tr {
|
||
&.active {
|
||
color: @color-theme;
|
||
}
|
||
}
|
||
}
|
||
|
||
.disabled {
|
||
opacity: .5;
|
||
}
|
||
|
||
each(@themes, {
|
||
:global(#container.@{value}) {
|
||
.tbody {
|
||
tr {
|
||
&.active {
|
||
color: ~'@{color-@{value}-theme}';
|
||
}
|
||
}
|
||
}
|
||
}
|
||
})
|
||
</style>
|