2018-10-26 16:36:30 +01:00
|
|
|
<template>
|
2023-06-23 22:23:32 +02:00
|
|
|
<div class="fd-page">
|
2018-10-26 16:36:30 +01:00
|
|
|
<content-with-heading>
|
2022-02-19 06:39:14 +01:00
|
|
|
<template #options>
|
2023-03-23 23:19:55 +01:00
|
|
|
<index-button-list :index="tracks.indexList" />
|
|
|
|
<div class="columns">
|
|
|
|
<div class="column">
|
2023-07-01 18:19:29 +02:00
|
|
|
<p class="heading mb-5" v-text="$t('page.artist.sort-by.title')" />
|
2023-07-08 14:43:38 +02:00
|
|
|
<control-dropdown
|
|
|
|
v-model:value="selected_groupby_option_id"
|
2023-03-23 23:19:55 +01:00
|
|
|
:options="groupby_options"
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
</div>
|
2018-12-19 17:50:02 +01:00
|
|
|
</template>
|
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" />
|
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-05-29 18:49:00 +02:00
|
|
|
<a
|
|
|
|
class="button is-small is-light is-rounded"
|
|
|
|
@click="show_artist_details_modal = true"
|
|
|
|
>
|
2023-06-30 21:41:40 +02:00
|
|
|
<mdicon class="icon" name="dots-horizontal" size="16" />
|
2019-02-20 09:22:17 +01:00
|
|
|
</a>
|
|
|
|
<a class="button is-small is-dark is-rounded" @click="play">
|
2023-06-30 21:41:40 +02:00
|
|
|
<mdicon class="icon" name="shuffle" size="16" />
|
2022-05-20 13:44:22 +02:00
|
|
|
<span v-text="$t('page.artist.shuffle')" />
|
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">
|
2022-05-29 18:49:00 +02:00
|
|
|
<a
|
|
|
|
class="has-text-link"
|
|
|
|
@click="open_artist"
|
2022-06-05 19:19:00 +02:00
|
|
|
v-text="
|
|
|
|
$t('page.artist.album-count', { count: artist.album_count })
|
|
|
|
"
|
2022-06-04 16:40:21 +02:00
|
|
|
/>
|
|
|
|
<span> | </span>
|
|
|
|
<span
|
2022-06-05 19:19:00 +02:00
|
|
|
v-text="
|
|
|
|
$t('page.artist.track-count', { count: artist.track_count })
|
|
|
|
"
|
2022-05-29 18:49:00 +02:00
|
|
|
/>
|
2022-02-19 06:39:14 +01:00
|
|
|
</p>
|
2023-03-23 23:19:55 +01:00
|
|
|
<list-tracks :tracks="tracks" :uris="track_uris" />
|
2022-05-29 18:49:00 +02:00
|
|
|
<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>
|
2023-07-08 14:43:38 +02:00
|
|
|
import * as types from '@/store/mutation_types'
|
|
|
|
import { GroupByList, byName, byRating } from '@/lib/GroupByList'
|
2022-02-19 06:18:01 +01:00
|
|
|
import ContentWithHeading from '@/templates/ContentWithHeading.vue'
|
2023-07-08 14:43:38 +02:00
|
|
|
import ControlDropdown from '@/components/ControlDropdown.vue'
|
2022-02-19 06:18:01 +01:00
|
|
|
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 = {
|
2023-06-07 21:25:54 +02:00
|
|
|
load(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
|
|
|
},
|
|
|
|
|
2023-06-07 21:25:54 +02:00
|
|
|
set(vm, response) {
|
2018-10-27 07:12:07 +02:00
|
|
|
vm.artist = response[0].data
|
2023-03-23 23:19:55 +01:00
|
|
|
vm.tracks_list = new GroupByList(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,
|
2023-07-08 14:43:38 +02:00
|
|
|
ControlDropdown,
|
2022-02-19 06:39:14 +01:00
|
|
|
IndexButtonList,
|
2023-03-23 23:19:55 +01:00
|
|
|
ListTracks,
|
2022-02-19 06:39:14 +01:00
|
|
|
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: {},
|
2023-03-23 23:19:55 +01:00
|
|
|
groupby_options: [
|
|
|
|
{
|
|
|
|
id: 1,
|
|
|
|
name: this.$t('page.artist.sort-by.name'),
|
|
|
|
options: byName('title_sort')
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 2,
|
|
|
|
name: this.$t('page.artist.sort-by.rating'),
|
|
|
|
options: byRating('rating', {
|
|
|
|
direction: 'desc'
|
|
|
|
})
|
|
|
|
}
|
|
|
|
],
|
|
|
|
show_artist_details_modal: false,
|
|
|
|
tracks_list: new GroupByList()
|
2018-10-26 16:36:30 +01:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2018-12-19 17:50:02 +01:00
|
|
|
computed: {
|
2023-03-23 23:19:55 +01:00
|
|
|
selected_groupby_option_id: {
|
|
|
|
get() {
|
|
|
|
return this.$store.state.artist_tracks_sort
|
|
|
|
},
|
|
|
|
set(value) {
|
|
|
|
this.$store.commit(types.ARTIST_TRACKS_SORT, value)
|
|
|
|
}
|
|
|
|
},
|
|
|
|
tracks() {
|
|
|
|
const groupBy = this.groupby_options.find(
|
|
|
|
(o) => o.id === this.selected_groupby_option_id
|
|
|
|
)
|
|
|
|
this.tracks_list.group(groupBy.options)
|
|
|
|
return this.tracks_list
|
2020-10-04 17:31:47 +02:00
|
|
|
},
|
2022-02-19 06:39:14 +01:00
|
|
|
track_uris() {
|
2023-03-23 23:19:55 +01:00
|
|
|
return this.tracks_list.items.map((a) => a.uri).join(',')
|
2018-12-19 17:50:02 +01:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2018-10-26 16:36:30 +01:00
|
|
|
methods: {
|
2023-06-07 21:25:54 +02:00
|
|
|
open_artist() {
|
2018-10-26 16:36:30 +01:00
|
|
|
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
|
|
|
},
|
|
|
|
|
2023-06-07 21:25:54 +02:00
|
|
|
play() {
|
2023-07-02 19:14:47 +02:00
|
|
|
webapi.player_play_uri(
|
|
|
|
this.tracks_list.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>
|