owntone-server/web-src/src/pages/PageArtistTracks.vue

98 lines
2.9 KiB
Vue
Raw Normal View History

2018-10-26 16:36:30 +01:00
<template>
<div>
<content-with-heading>
<template slot="options">
<index-button-list :index="index_list"></index-button-list>
</template>
2018-10-26 16:36:30 +01:00
<template slot="heading-left">
<p class="title is-4">{{ artist.name }}</p>
2018-10-26 16:36:30 +01:00
</template>
<template slot="heading-right">
<a class="button is-small is-dark is-rounded" @click="play">
<span class="icon"><i class="mdi mdi-shuffle"></i></span> <span>Shuffle</span>
2018-10-26 16:36:30 +01:00
</a>
</template>
<template slot="content">
<p class="heading has-text-centered-mobile"><a class="has-text-link" @click="open_artist">{{ artist.album_count }} albums</a> | {{ artist.track_count }} tracks</p>
<list-item-track v-for="(track, index) in tracks.items" :key="track.id" :track="track" @click="play_track(index)">
<template slot="actions">
<a @click="open_dialog(track)">
<span class="icon has-text-dark"><i class="mdi mdi-dots-vertical mdi-18px"></i></span>
</a>
</template>
</list-item-track>
<modal-dialog-track :show="show_details_modal" :track="selected_track" @close="show_details_modal = false" />
2018-10-26 16:36:30 +01:00
</template>
</content-with-heading>
</div>
</template>
<script>
import { LoadDataBeforeEnterMixin } from './mixin'
import ContentWithHeading from '@/templates/ContentWithHeading'
import IndexButtonList from '@/components/IndexButtonList'
2018-10-26 16:36:30 +01:00
import ListItemTrack from '@/components/ListItemTrack'
import ModalDialogTrack from '@/components/ModalDialogTrack'
2018-10-26 16:36:30 +01:00
import webapi from '@/webapi'
const tracksData = {
load: function (to) {
return Promise.all([
webapi.library_artist(to.params.artist_id),
webapi.library_artist_tracks(to.params.artist_id)
])
2018-10-26 16:36:30 +01:00
},
set: function (vm, response) {
vm.artist = response[0].data
vm.tracks = response[1].data.tracks
2018-10-26 16:36:30 +01:00
}
}
export default {
name: 'PageArtistTracks',
2018-10-26 16:36:30 +01:00
mixins: [ LoadDataBeforeEnterMixin(tracksData) ],
components: { ContentWithHeading, ListItemTrack, IndexButtonList, ModalDialogTrack },
2018-10-26 16:36:30 +01:00
data () {
return {
artist: {},
tracks: { items: [] },
show_details_modal: false,
selected_track: {}
2018-10-26 16:36:30 +01:00
}
},
computed: {
index_list () {
return [...new Set(this.tracks.items
.map(track => track.title.charAt(0).toUpperCase()))]
}
},
2018-10-26 16:36:30 +01:00
methods: {
open_artist: function () {
this.show_details_modal = false
this.$router.push({ path: '/music/artists/' + this.artist.id })
2018-10-26 16:36:30 +01:00
},
play: function () {
webapi.player_play_uri(this.tracks.items.map(a => a.uri).join(','), true)
},
play_track: function (position) {
webapi.player_play_uri(this.tracks.items.map(a => a.uri).join(','), false, position)
},
open_dialog: function (track) {
this.selected_track = track
this.show_details_modal = true
2018-10-26 16:36:30 +01:00
}
}
}
</script>
<style>
</style>