2018-08-11 07:47:10 +02:00
|
|
|
<template>
|
|
|
|
<content-with-heading>
|
2022-02-19 06:18:01 +01:00
|
|
|
<template v-slot:options>
|
2020-10-17 12:07:27 +02:00
|
|
|
<div class="columns">
|
|
|
|
<div class="column">
|
|
|
|
<p class="heading" style="margin-bottom: 24px;">Sort by</p>
|
|
|
|
<dropdown-menu v-model="sort" :options="sort_options"></dropdown-menu>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
2022-02-19 06:18:01 +01:00
|
|
|
<template v-slot:heading-left>
|
2018-08-11 07:47:10 +02:00
|
|
|
<p class="title is-4">{{ artist.name }}</p>
|
|
|
|
</template>
|
2022-02-19 06:18:01 +01:00
|
|
|
<template v-slot:heading-right>
|
2019-02-17 11:24:30 +01:00
|
|
|
<div class="buttons is-centered">
|
|
|
|
<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"></i></span>
|
|
|
|
</a>
|
|
|
|
<a class="button is-small is-dark is-rounded" @click="play">
|
|
|
|
<span class="icon"><i class="mdi mdi-shuffle"></i></span> <span>Shuffle</span>
|
|
|
|
</a>
|
|
|
|
</div>
|
2018-10-27 07:18:41 +02:00
|
|
|
</template>
|
2022-02-19 06:18:01 +01:00
|
|
|
<template v-slot:content>
|
2018-10-26 16:36:30 +01:00
|
|
|
<p class="heading has-text-centered-mobile">{{ artist.album_count }} albums | <a class="has-text-link" @click="open_tracks">{{ artist.track_count }} tracks</a></p>
|
2020-10-17 12:07:27 +02:00
|
|
|
<list-albums :albums="albums_list"></list-albums>
|
2019-02-17 11:24:30 +01:00
|
|
|
<modal-dialog-artist :show="show_artist_details_modal" :artist="artist" @close="show_artist_details_modal = false" />
|
2018-08-11 07:47:10 +02:00
|
|
|
</template>
|
|
|
|
</content-with-heading>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
2022-02-19 06:18:01 +01:00
|
|
|
import ContentWithHeading from '@/templates/ContentWithHeading.vue'
|
|
|
|
import ListAlbums from '@/components/ListAlbums.vue'
|
|
|
|
import ModalDialogArtist from '@/components/ModalDialogArtist.vue'
|
|
|
|
import DropdownMenu from '@/components/DropdownMenu.vue'
|
2018-08-11 07:47:10 +02:00
|
|
|
import webapi from '@/webapi'
|
2020-10-17 12:07:27 +02:00
|
|
|
import * as types from '@/store/mutation_types'
|
|
|
|
import Albums from '@/lib/Albums'
|
2018-08-11 07:47:10 +02:00
|
|
|
|
2022-02-19 06:18:01 +01:00
|
|
|
const dataObject = {
|
2018-08-11 07:47:10 +02:00
|
|
|
load: function (to) {
|
|
|
|
return Promise.all([
|
|
|
|
webapi.library_artist(to.params.artist_id),
|
2020-06-30 10:24:11 +02:00
|
|
|
webapi.library_artist_albums(to.params.artist_id)
|
2018-08-11 07:47:10 +02:00
|
|
|
])
|
|
|
|
},
|
|
|
|
|
|
|
|
set: function (vm, response) {
|
|
|
|
vm.artist = response[0].data
|
|
|
|
vm.albums = response[1].data
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default {
|
|
|
|
name: 'PageArtist',
|
2020-10-17 12:07:27 +02:00
|
|
|
components: { ContentWithHeading, ListAlbums, ModalDialogArtist, DropdownMenu },
|
2018-08-11 07:47:10 +02:00
|
|
|
|
|
|
|
data () {
|
|
|
|
return {
|
|
|
|
artist: {},
|
2020-10-17 12:07:27 +02:00
|
|
|
albums: { items: [] },
|
2018-12-15 09:56:09 +01:00
|
|
|
|
2020-10-17 12:07:27 +02:00
|
|
|
sort_options: ['Name', 'Release date'],
|
2019-02-17 11:24:30 +01:00
|
|
|
show_artist_details_modal: false
|
2018-08-11 07:47:10 +02:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2020-10-17 12:07:27 +02:00
|
|
|
computed: {
|
|
|
|
albums_list () {
|
|
|
|
return new Albums(this.albums.items, {
|
|
|
|
sort: this.sort,
|
|
|
|
group: false
|
|
|
|
})
|
|
|
|
},
|
|
|
|
|
|
|
|
sort: {
|
|
|
|
get () {
|
|
|
|
return this.$store.state.artist_albums_sort
|
|
|
|
},
|
|
|
|
set (value) {
|
|
|
|
this.$store.commit(types.ARTIST_ALBUMS_SORT, value)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2018-08-11 07:47:10 +02:00
|
|
|
methods: {
|
2018-10-26 16:36:30 +01:00
|
|
|
open_tracks: function () {
|
|
|
|
this.$router.push({ path: '/music/artists/' + this.artist.id + '/tracks' })
|
2018-10-27 07:18:41 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
play: function () {
|
2018-11-06 21:44:01 +01:00
|
|
|
webapi.player_play_uri(this.albums.items.map(a => a.uri).join(','), true)
|
2018-10-26 16:36:30 +01:00
|
|
|
}
|
2022-02-19 06:18:01 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
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-08-11 07:47:10 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style>
|
|
|
|
</style>
|