2020-09-20 08:13:19 +02:00
|
|
|
<template>
|
|
|
|
<content-with-heading>
|
2022-02-19 06:39:14 +01:00
|
|
|
<template #heading-left>
|
2022-05-20 13:44:22 +02:00
|
|
|
<p class="title is-4" v-text="artist.name" />
|
2020-09-20 08:13:19 +02:00
|
|
|
</template>
|
2022-02-19 06:39:14 +01:00
|
|
|
<template #heading-right>
|
2020-09-20 08:13:19 +02:00
|
|
|
<div class="buttons is-centered">
|
2022-05-29 18:49:00 +02:00
|
|
|
<a
|
|
|
|
class="button is-small is-light is-rounded"
|
|
|
|
@click="show_artist_details_modal = true"
|
|
|
|
>
|
2022-06-15 19:24:51 +02:00
|
|
|
<span class="icon"><mdicon name="dots-horizontal" size="16" /></span>
|
2020-09-20 08:13:19 +02:00
|
|
|
</a>
|
|
|
|
<a class="button is-small is-dark is-rounded" @click="play">
|
2022-06-15 19:24:51 +02:00
|
|
|
<span class="icon"><mdicon name="play" size="16" /></span>
|
2022-05-20 13:44:22 +02:00
|
|
|
<span v-text="$t('page.audiobooks.artist.shuffle')" />
|
2020-09-20 08:13:19 +02:00
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
</template>
|
2022-02-19 06:39:14 +01:00
|
|
|
<template #content>
|
2022-05-29 18:49:00 +02:00
|
|
|
<p
|
|
|
|
class="heading has-text-centered-mobile"
|
|
|
|
v-text="
|
|
|
|
$t('page.audiobooks.artist.album-count', {
|
|
|
|
count: artist.album_count
|
|
|
|
})
|
|
|
|
"
|
|
|
|
/>
|
2022-02-19 07:47:54 +01:00
|
|
|
<list-albums :albums="albums" />
|
2022-05-29 18:49:00 +02:00
|
|
|
<modal-dialog-artist
|
|
|
|
:show="show_artist_details_modal"
|
|
|
|
:artist="artist"
|
|
|
|
@close="show_artist_details_modal = false"
|
|
|
|
/>
|
2020-09-20 08:13:19 +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'
|
2020-09-20 08:13:19 +02:00
|
|
|
import webapi from '@/webapi'
|
2022-02-19 07:47:54 +01:00
|
|
|
import { GroupByList } from '../lib/GroupByList'
|
2020-09-20 08:13:19 +02:00
|
|
|
|
2022-02-19 06:18:01 +01:00
|
|
|
const dataObject = {
|
2020-09-20 08:13:19 +02:00
|
|
|
load: function (to) {
|
|
|
|
return Promise.all([
|
|
|
|
webapi.library_artist(to.params.artist_id),
|
|
|
|
webapi.library_artist_albums(to.params.artist_id)
|
|
|
|
])
|
|
|
|
},
|
|
|
|
|
|
|
|
set: function (vm, response) {
|
|
|
|
vm.artist = response[0].data
|
2022-02-19 07:47:54 +01:00
|
|
|
vm.albums = new GroupByList(response[1].data)
|
2020-09-20 08:13:19 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default {
|
|
|
|
name: 'PageAudiobooksArtist',
|
|
|
|
components: { ContentWithHeading, ListAlbums, ModalDialogArtist },
|
|
|
|
|
2022-02-19 06:39:14 +01:00
|
|
|
beforeRouteEnter(to, from, next) {
|
|
|
|
dataObject.load(to).then((response) => {
|
|
|
|
next((vm) => dataObject.set(vm, response))
|
|
|
|
})
|
|
|
|
},
|
2022-02-19 07:47:54 +01:00
|
|
|
|
2022-02-19 06:39:14 +01:00
|
|
|
beforeRouteUpdate(to, from, next) {
|
2022-02-19 07:47:54 +01:00
|
|
|
if (!this.albums.isEmpty()) {
|
|
|
|
next()
|
|
|
|
return
|
|
|
|
}
|
2022-02-19 06:39:14 +01:00
|
|
|
const vm = this
|
|
|
|
dataObject.load(to).then((response) => {
|
|
|
|
dataObject.set(vm, response)
|
|
|
|
next()
|
|
|
|
})
|
|
|
|
},
|
|
|
|
|
|
|
|
data() {
|
2020-09-20 08:13:19 +02:00
|
|
|
return {
|
|
|
|
artist: {},
|
2022-02-19 07:47:54 +01:00
|
|
|
albums: new GroupByList(),
|
2020-09-20 08:13:19 +02:00
|
|
|
|
|
|
|
show_artist_details_modal: false
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
methods: {
|
|
|
|
play: function () {
|
2022-02-19 06:39:14 +01:00
|
|
|
webapi.player_play_uri(
|
|
|
|
this.albums.items.map((a) => a.uri).join(','),
|
|
|
|
false
|
|
|
|
)
|
2020-09-20 08:13:19 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
2022-02-19 06:39:14 +01:00
|
|
|
<style></style>
|