2018-08-11 07:47:10 +02:00
|
|
|
<template>
|
2023-11-29 01:27:48 +01:00
|
|
|
<div>
|
2023-06-23 22:23:32 +02:00
|
|
|
<content-with-heading>
|
|
|
|
<template #options>
|
|
|
|
<div class="columns">
|
|
|
|
<div class="column">
|
2023-12-17 18:37:35 +01:00
|
|
|
<p class="heading mb-5" v-text="$t('page.artist.filter')" />
|
|
|
|
<div v-if="spotify_enabled" class="field">
|
|
|
|
<div class="control">
|
|
|
|
<input
|
|
|
|
id="switchHideSpotify"
|
|
|
|
v-model="hide_spotify"
|
|
|
|
type="checkbox"
|
|
|
|
class="switch is-rounded"
|
|
|
|
/>
|
|
|
|
<label
|
|
|
|
for="switchHideSpotify"
|
|
|
|
v-text="$t('page.artist.hide-spotify')"
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
<p class="help" v-text="$t('page.artist.hide-spotify-help')" />
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="column">
|
|
|
|
<p class="heading mb-5" v-text="$t('page.artist.sort.title')" />
|
2023-07-08 14:43:38 +02:00
|
|
|
<control-dropdown
|
2024-02-22 19:32:11 +01:00
|
|
|
v-model:value="selected_grouping_option_id"
|
|
|
|
:options="grouping_options"
|
2023-06-23 22:23:32 +02:00
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
<template #heading-left>
|
|
|
|
<p class="title is-4" v-text="artist.name" />
|
|
|
|
</template>
|
|
|
|
<template #heading-right>
|
|
|
|
<div class="buttons is-centered">
|
|
|
|
<a
|
|
|
|
class="button is-small is-light is-rounded"
|
2023-12-07 21:31:10 +01:00
|
|
|
@click="show_details_modal = true"
|
2023-06-23 22:23:32 +02:00
|
|
|
>
|
2023-06-30 21:41:40 +02:00
|
|
|
<mdicon class="icon" name="dots-horizontal" size="16" />
|
2023-06-23 22:23:32 +02: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" />
|
2023-06-23 22:23:32 +02:00
|
|
|
<span v-text="$t('page.artist.shuffle')" />
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
<template #content>
|
|
|
|
<p class="heading has-text-centered-mobile">
|
|
|
|
<span
|
2023-12-17 18:37:35 +01:00
|
|
|
v-text="$t('page.artist.album-count', { count: albums.count })"
|
2022-05-29 18:49:00 +02:00
|
|
|
/>
|
2023-06-23 22:23:32 +02:00
|
|
|
<span> | </span>
|
|
|
|
<a
|
|
|
|
class="has-text-link"
|
|
|
|
@click="open_tracks"
|
2023-12-17 18:37:35 +01:00
|
|
|
v-text="$t('page.artist.track-count', { count: track_count })"
|
2022-05-29 18:49:00 +02:00
|
|
|
/>
|
2023-06-23 22:23:32 +02:00
|
|
|
</p>
|
2024-03-20 22:01:17 +01:00
|
|
|
<list-albums :albums="albums" />
|
2023-06-23 22:23:32 +02:00
|
|
|
<modal-dialog-artist
|
2023-12-07 21:31:10 +01:00
|
|
|
:show="show_details_modal"
|
2023-06-23 22:23:32 +02:00
|
|
|
:artist="artist"
|
2023-12-07 21:31:10 +01:00
|
|
|
@close="show_details_modal = false"
|
2022-05-29 18:49:00 +02:00
|
|
|
/>
|
2023-06-23 22:23:32 +02:00
|
|
|
</template>
|
|
|
|
</content-with-heading>
|
|
|
|
</div>
|
2018-08-11 07:47:10 +02:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
2023-07-10 20:33:07 +02:00
|
|
|
import * as types from '@/store/mutation_types'
|
2024-03-18 21:34:43 +01:00
|
|
|
import { GroupedList } from '@/lib/GroupedList'
|
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 ListAlbums from '@/components/ListAlbums.vue'
|
|
|
|
import ModalDialogArtist from '@/components/ModalDialogArtist.vue'
|
2018-08-11 07:47:10 +02: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-08-11 07:47:10 +02:00
|
|
|
return Promise.all([
|
2023-07-10 20:33:07 +02:00
|
|
|
webapi.library_artist(to.params.id),
|
|
|
|
webapi.library_artist_albums(to.params.id)
|
2018-08-11 07:47:10 +02:00
|
|
|
])
|
|
|
|
},
|
|
|
|
|
2023-06-07 21:25:54 +02:00
|
|
|
set(vm, response) {
|
2018-08-11 07:47:10 +02:00
|
|
|
vm.artist = response[0].data
|
2024-02-22 19:32:11 +01:00
|
|
|
vm.albums_list = new GroupedList(response[1].data)
|
2018-08-11 07:47:10 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default {
|
|
|
|
name: 'PageArtist',
|
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
|
|
|
ListAlbums,
|
2023-07-09 00:25:06 +02:00
|
|
|
ModalDialogArtist
|
2022-02-19 06:39:14 +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
|
|
|
|
2022-02-19 06:39:14 +01:00
|
|
|
data() {
|
2018-08-11 07:47:10 +02:00
|
|
|
return {
|
|
|
|
artist: {},
|
2024-02-22 19:32:11 +01:00
|
|
|
albums_list: new GroupedList(),
|
|
|
|
grouping_options: [
|
2022-02-19 07:47:54 +01:00
|
|
|
{
|
2022-05-20 13:44:22 +02:00
|
|
|
id: 1,
|
2023-12-17 18:37:35 +01:00
|
|
|
name: this.$t('page.artist.sort.name'),
|
2024-03-20 22:01:17 +01:00
|
|
|
options: { criteria: [{ field: 'name_sort', type: String }] }
|
2022-05-20 13:44:22 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 2,
|
2023-12-17 18:37:35 +01:00
|
|
|
name: this.$t('page.artist.sort.release-date'),
|
2024-03-20 22:01:17 +01:00
|
|
|
options: { criteria: [{ field: 'date_released', type: Date }] }
|
2022-02-19 07:47:54 +01:00
|
|
|
}
|
|
|
|
],
|
2023-12-07 21:31:10 +01:00
|
|
|
show_details_modal: false
|
2018-08-11 07:47:10 +02:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2020-10-17 12:07:27 +02:00
|
|
|
computed: {
|
2022-02-19 07:47:54 +01:00
|
|
|
albums() {
|
2024-02-22 19:32:11 +01:00
|
|
|
const grouping = this.grouping_options.find(
|
|
|
|
(o) => o.id === this.selected_grouping_option_id
|
2022-02-19 07:47:54 +01:00
|
|
|
)
|
2024-03-18 21:34:43 +01:00
|
|
|
grouping.options.filters = [
|
2023-12-17 18:37:35 +01:00
|
|
|
(album) => !this.hide_spotify || album.data_kind !== 'spotify'
|
2024-03-18 21:34:43 +01:00
|
|
|
]
|
|
|
|
this.albums_list.group(grouping.options)
|
2022-02-19 07:47:54 +01:00
|
|
|
return this.albums_list
|
|
|
|
},
|
2023-12-17 18:37:35 +01:00
|
|
|
hide_spotify: {
|
|
|
|
get() {
|
|
|
|
return this.$store.state.hide_spotify
|
|
|
|
},
|
|
|
|
set(value) {
|
|
|
|
this.$store.commit(types.HIDE_SPOTIFY, value)
|
|
|
|
}
|
|
|
|
},
|
2024-02-22 19:32:11 +01:00
|
|
|
selected_grouping_option_id: {
|
2022-02-19 06:39:14 +01:00
|
|
|
get() {
|
2020-10-17 12:07:27 +02:00
|
|
|
return this.$store.state.artist_albums_sort
|
|
|
|
},
|
2022-02-19 06:39:14 +01:00
|
|
|
set(value) {
|
2020-10-17 12:07:27 +02:00
|
|
|
this.$store.commit(types.ARTIST_ALBUMS_SORT, value)
|
|
|
|
}
|
2023-12-17 18:37:35 +01:00
|
|
|
},
|
|
|
|
spotify_enabled() {
|
|
|
|
return this.$store.state.spotify.webapi_token_valid
|
|
|
|
},
|
|
|
|
track_count() {
|
|
|
|
// The count of tracks is incorrect when albums have Spotify tracks.
|
|
|
|
return [...this.albums].reduce(
|
|
|
|
(total, album) => total + (album.isItem ? album.item.track_count : 0),
|
|
|
|
0
|
|
|
|
)
|
2020-10-17 12:07:27 +02:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2018-08-11 07:47:10 +02:00
|
|
|
methods: {
|
2023-06-07 21:25:54 +02:00
|
|
|
open_tracks() {
|
2022-02-19 06:39:14 +01:00
|
|
|
this.$router.push({
|
2023-07-10 20:33:07 +02:00
|
|
|
name: 'music-artist-tracks',
|
|
|
|
params: { id: this.artist.id }
|
2022-02-19 06:39:14 +01:00
|
|
|
})
|
2018-10-27 07:18:41 +02:00
|
|
|
},
|
|
|
|
|
2023-06-07 21:25:54 +02:00
|
|
|
play() {
|
2022-02-19 06:39:14 +01:00
|
|
|
webapi.player_play_uri(
|
|
|
|
this.albums.items.map((a) => a.uri).join(','),
|
|
|
|
true
|
|
|
|
)
|
2018-10-26 16:36:30 +01:00
|
|
|
}
|
2018-08-11 07:47:10 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
2022-02-19 06:39:14 +01:00
|
|
|
<style></style>
|