mirror of
https://github.com/owntone/owntone-server.git
synced 2025-01-22 12:13:18 -05:00
611c989b91
All icons, usually next to a text, are now centered vertically.
202 lines
5.3 KiB
Vue
202 lines
5.3 KiB
Vue
<template>
|
|
<div class="fd-page">
|
|
<content-with-heading>
|
|
<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"
|
|
@click="show_artist_details_modal = true"
|
|
>
|
|
<mdicon class="icon" name="dots-horizontal" size="16" />
|
|
</a>
|
|
<a class="button is-small is-dark is-rounded" @click="play">
|
|
<mdicon class="icon" name="shuffle" size="16" />
|
|
<span v-text="$t('page.spotify.artist.shuffle')" />
|
|
</a>
|
|
</div>
|
|
</template>
|
|
<template #content>
|
|
<p
|
|
class="heading has-text-centered-mobile"
|
|
v-text="$t('page.spotify.artist.album-count', { count: total })"
|
|
/>
|
|
<spotify-list-item-album
|
|
v-for="album in albums"
|
|
:key="album.id"
|
|
:album="album"
|
|
@click="open_album(album)"
|
|
>
|
|
<template v-if="is_visible_artwork" #artwork>
|
|
<cover-artwork
|
|
:artwork_url="artwork_url(album)"
|
|
:artist="album.artist"
|
|
:album="album.name"
|
|
class="is-clickable fd-has-shadow fd-cover fd-cover-small-image"
|
|
:maxwidth="64"
|
|
:maxheight="64"
|
|
/>
|
|
</template>
|
|
<template #actions>
|
|
<a @click.prevent.stop="open_dialog(album)">
|
|
<mdicon
|
|
class="icon has-text-dark"
|
|
name="dots-vertical"
|
|
size="16"
|
|
/>
|
|
</a>
|
|
</template>
|
|
</spotify-list-item-album>
|
|
<VueEternalLoading v-if="offset < total" :load="load_next">
|
|
<template #no-more> . </template>
|
|
</VueEternalLoading>
|
|
<spotify-modal-dialog-album
|
|
:show="show_details_modal"
|
|
:album="selected_album"
|
|
@close="show_details_modal = false"
|
|
/>
|
|
<spotify-modal-dialog-artist
|
|
:show="show_artist_details_modal"
|
|
:artist="artist"
|
|
@close="show_artist_details_modal = false"
|
|
/>
|
|
</template>
|
|
</content-with-heading>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import ContentWithHeading from '@/templates/ContentWithHeading.vue'
|
|
import SpotifyListItemAlbum from '@/components/SpotifyListItemAlbum.vue'
|
|
import SpotifyModalDialogAlbum from '@/components/SpotifyModalDialogAlbum.vue'
|
|
import SpotifyModalDialogArtist from '@/components/SpotifyModalDialogArtist.vue'
|
|
import CoverArtwork from '@/components/CoverArtwork.vue'
|
|
import store from '@/store'
|
|
import webapi from '@/webapi'
|
|
import SpotifyWebApi from 'spotify-web-api-js'
|
|
import { VueEternalLoading } from '@ts-pro/vue-eternal-loading'
|
|
|
|
const PAGE_SIZE = 50
|
|
|
|
const dataObject = {
|
|
load: function (to) {
|
|
const spotifyApi = new SpotifyWebApi()
|
|
spotifyApi.setAccessToken(store.state.spotify.webapi_token)
|
|
return Promise.all([
|
|
spotifyApi.getArtist(to.params.artist_id),
|
|
spotifyApi.getArtistAlbums(to.params.artist_id, {
|
|
limit: PAGE_SIZE,
|
|
offset: 0,
|
|
include_groups: 'album,single',
|
|
market: store.state.spotify.webapi_country
|
|
})
|
|
])
|
|
},
|
|
|
|
set(vm, response) {
|
|
vm.artist = response[0]
|
|
|
|
vm.albums = []
|
|
vm.total = 0
|
|
vm.offset = 0
|
|
vm.append_albums(response[1])
|
|
}
|
|
}
|
|
|
|
export default {
|
|
name: 'SpotifyPageArtist',
|
|
components: {
|
|
ContentWithHeading,
|
|
SpotifyListItemAlbum,
|
|
SpotifyModalDialogAlbum,
|
|
SpotifyModalDialogArtist,
|
|
VueEternalLoading,
|
|
CoverArtwork
|
|
},
|
|
|
|
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()
|
|
})
|
|
},
|
|
|
|
data() {
|
|
return {
|
|
artist: {},
|
|
albums: [],
|
|
total: 0,
|
|
offset: 0,
|
|
|
|
show_details_modal: false,
|
|
selected_album: {},
|
|
|
|
show_artist_details_modal: false
|
|
}
|
|
},
|
|
|
|
computed: {
|
|
is_visible_artwork() {
|
|
return this.$store.getters.settings_option(
|
|
'webinterface',
|
|
'show_cover_artwork_in_album_lists'
|
|
).value
|
|
}
|
|
},
|
|
|
|
methods: {
|
|
load_next({ loaded }) {
|
|
const spotifyApi = new SpotifyWebApi()
|
|
spotifyApi.setAccessToken(this.$store.state.spotify.webapi_token)
|
|
spotifyApi
|
|
.getArtistAlbums(this.artist.id, {
|
|
limit: PAGE_SIZE,
|
|
offset: this.offset,
|
|
include_groups: 'album,single'
|
|
})
|
|
.then((data) => {
|
|
this.append_albums(data)
|
|
loaded(data.items.length, PAGE_SIZE)
|
|
})
|
|
},
|
|
|
|
append_albums(data) {
|
|
this.albums = this.albums.concat(data.items)
|
|
this.total = data.total
|
|
this.offset += data.limit
|
|
},
|
|
|
|
play() {
|
|
this.show_details_modal = false
|
|
webapi.player_play_uri(this.artist.uri, true)
|
|
},
|
|
|
|
open_album(album) {
|
|
this.$router.push({ path: '/music/spotify/albums/' + album.id })
|
|
},
|
|
|
|
open_dialog(album) {
|
|
this.selected_album = album
|
|
this.show_details_modal = true
|
|
},
|
|
|
|
artwork_url(album) {
|
|
if (album.images && album.images.length > 0) {
|
|
return album.images[0].url
|
|
}
|
|
return ''
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style></style>
|