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

132 lines
3.2 KiB
Vue
Raw Normal View History

2018-10-26 16:36:30 +01:00
<template>
<div>
<content-with-heading>
<template #options>
<index-button-list :index="index_list" />
</template>
<template #heading-left>
2022-05-20 13:44:22 +02:00
<p class="title is-4" v-text="artist.name" />
2018-10-26 16:36:30 +01:00
</template>
<template #heading-right>
<div class="buttons is-centered">
<a
class="button is-small is-light is-rounded"
@click="show_artist_details_modal = true"
>
2022-05-20 13:44:22 +02:00
<mdicon class="icon" name="dots-horizontal" size="16" />
</a>
<a class="button is-small is-dark is-rounded" @click="play">
2022-05-20 13:44:22 +02:00
<mdicon class="icon" name="shuffle" size="16" />
<span v-text="$t('page.artist.shuffle')" />
</a>
</div>
2018-10-26 16:36:30 +01:00
</template>
<template #content>
<p class="heading has-text-centered-mobile">
<a
class="has-text-link"
@click="open_artist"
v-text="$t('page.artist.album-count', { count: artist.album_count })"
/>
<span>&nbsp;|&nbsp;</span>
<span
v-text="$t('page.artist.track-count', { count: artist.track_count })"
/>
</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) {
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',
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
data() {
2018-10-26 16:36:30 +01:00
return {
artist: {},
tracks: { items: [] },
show_artist_details_modal: false
2018-10-26 16:36:30 +01:00
}
},
computed: {
index_list() {
return [
...new Set(
this.tracks.items.map((track) =>
track.title_sort.charAt(0).toUpperCase()
)
)
]
},
track_uris() {
return this.tracks.items.map((a) => a.uri).join(',')
}
},
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
)
2018-10-26 16:36:30 +01:00
}
}
}
</script>
<style></style>