2018-10-26 16:36:30 +01:00
|
|
|
<template>
|
|
|
|
<div>
|
|
|
|
<content-with-heading>
|
2022-02-19 06:39:14 +01:00
|
|
|
<template #options>
|
|
|
|
<index-button-list :index="index_list" />
|
2018-12-19 17:50:02 +01:00
|
|
|
</template>
|
2022-02-19 06:39:14 +01:00
|
|
|
<template #heading-left>
|
|
|
|
<p class="title is-4">
|
|
|
|
{{ artist.name }}
|
|
|
|
</p>
|
2018-10-26 16:36:30 +01:00
|
|
|
</template>
|
2022-02-19 06:39:14 +01:00
|
|
|
<template #heading-right>
|
2019-02-20 09:22:17 +01:00
|
|
|
<div class="buttons is-centered">
|
2022-02-19 06:39:14 +01:00
|
|
|
<a
|
|
|
|
class="button is-small is-light is-rounded"
|
|
|
|
@click="show_artist_details_modal = true"
|
|
|
|
>
|
|
|
|
<span class="icon"
|
|
|
|
><i class="mdi mdi-dots-horizontal mdi-18px"
|
|
|
|
/></span>
|
2019-02-20 09:22:17 +01:00
|
|
|
</a>
|
|
|
|
<a class="button is-small is-dark is-rounded" @click="play">
|
2022-02-19 06:39:14 +01:00
|
|
|
<span class="icon"><i class="mdi mdi-shuffle" /></span>
|
|
|
|
<span>Shuffle</span>
|
2019-02-20 09:22:17 +01:00
|
|
|
</a>
|
|
|
|
</div>
|
2018-10-26 16:36:30 +01:00
|
|
|
</template>
|
2022-02-19 06:39:14 +01:00
|
|
|
<template #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-tracks :tracks="tracks.items" :uris="track_uris" />
|
|
|
|
<modal-dialog-artist
|
|
|
|
:show="show_artist_details_modal"
|
|
|
|
:artist="artist"
|
|
|
|
@close="show_artist_details_modal = false"
|
|
|
|
/>
|
2018-10-26 16:36:30 +01:00
|
|
|
</template>
|
|
|
|
</content-with-heading>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
2022-02-19 06:18:01 +01:00
|
|
|
import ContentWithHeading from '@/templates/ContentWithHeading.vue'
|
|
|
|
import IndexButtonList from '@/components/IndexButtonList.vue'
|
|
|
|
import ListTracks from '@/components/ListTracks.vue'
|
|
|
|
import ModalDialogArtist from '@/components/ModalDialogArtist.vue'
|
2018-10-26 16:36:30 +01:00
|
|
|
import webapi from '@/webapi'
|
|
|
|
|
2022-02-19 06:18:01 +01:00
|
|
|
const dataObject = {
|
2018-10-26 16:36:30 +01:00
|
|
|
load: function (to) {
|
2018-10-27 07:12:07 +02:00
|
|
|
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) {
|
2018-10-27 07:12:07 +02:00
|
|
|
vm.artist = response[0].data
|
|
|
|
vm.tracks = response[1].data.tracks
|
2018-10-26 16:36:30 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default {
|
2018-12-19 17:35:49 +01:00
|
|
|
name: 'PageArtistTracks',
|
2022-02-19 06:39:14 +01:00
|
|
|
components: {
|
|
|
|
ContentWithHeading,
|
|
|
|
ListTracks,
|
|
|
|
IndexButtonList,
|
|
|
|
ModalDialogArtist
|
|
|
|
},
|
|
|
|
|
|
|
|
beforeRouteEnter(to, from, next) {
|
|
|
|
dataObject.load(to).then((response) => {
|
|
|
|
next((vm) => dataObject.set(vm, response))
|
|
|
|
})
|
|
|
|
},
|
|
|
|
beforeRouteUpdate(to, from, next) {
|
|
|
|
const vm = this
|
|
|
|
dataObject.load(to).then((response) => {
|
|
|
|
dataObject.set(vm, response)
|
|
|
|
next()
|
|
|
|
})
|
|
|
|
},
|
2018-10-26 16:36:30 +01:00
|
|
|
|
2022-02-19 06:39:14 +01:00
|
|
|
data() {
|
2018-10-26 16:36:30 +01:00
|
|
|
return {
|
2018-10-27 07:12:07 +02:00
|
|
|
artist: {},
|
2018-12-19 17:50:02 +01:00
|
|
|
tracks: { items: [] },
|
2018-12-15 09:56:09 +01:00
|
|
|
|
2019-02-20 09:22:17 +01:00
|
|
|
show_artist_details_modal: false
|
2018-10-26 16:36:30 +01:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2018-12-19 17:50:02 +01:00
|
|
|
computed: {
|
2022-02-19 06:39:14 +01:00
|
|
|
index_list() {
|
|
|
|
return [
|
|
|
|
...new Set(
|
|
|
|
this.tracks.items.map((track) =>
|
|
|
|
track.title_sort.charAt(0).toUpperCase()
|
|
|
|
)
|
|
|
|
)
|
|
|
|
]
|
2020-10-04 17:31:47 +02:00
|
|
|
},
|
|
|
|
|
2022-02-19 06:39:14 +01:00
|
|
|
track_uris() {
|
|
|
|
return this.tracks.items.map((a) => a.uri).join(',')
|
2018-12-19 17:50:02 +01:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2018-10-26 16:36:30 +01:00
|
|
|
methods: {
|
|
|
|
open_artist: function () {
|
|
|
|
this.show_details_modal = false
|
2018-10-27 07:12:07 +02:00
|
|
|
this.$router.push({ path: '/music/artists/' + this.artist.id })
|
2018-10-26 16:36:30 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
play: function () {
|
2022-02-19 06:39:14 +01:00
|
|
|
webapi.player_play_uri(
|
|
|
|
this.tracks.items.map((a) => a.uri).join(','),
|
|
|
|
true
|
|
|
|
)
|
2018-10-26 16:36:30 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
2022-02-19 06:39:14 +01:00
|
|
|
<style></style>
|