mirror of
https://github.com/owntone/owntone-server.git
synced 2025-03-29 00:33:44 -04:00
This reverts commit bb2a778b46afca0fcd56bda6f02857fad78b14d8, reversing changes made to f8e2298b677476f46eb67cc4331c18124f92a791.
145 lines
3.8 KiB
Vue
145 lines
3.8 KiB
Vue
<template>
|
|
<div>
|
|
<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_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 })"
|
|
/>
|
|
<list-albums-spotify :items="albums" />
|
|
<VueEternalLoading v-if="offset < total" :load="load_next">
|
|
<template #loading>
|
|
<div class="columns is-centered">
|
|
<div class="column has-text-centered">
|
|
<mdicon class="icon mdi-spin" name="loading" />
|
|
</div>
|
|
</div>
|
|
</template>
|
|
<template #no-more>
|
|
<br />
|
|
</template>
|
|
<template #no-results>
|
|
<br />
|
|
</template>
|
|
</VueEternalLoading>
|
|
<modal-dialog-artist-spotify
|
|
:item="artist"
|
|
:show="show_details_modal"
|
|
@close="show_details_modal = false"
|
|
/>
|
|
</template>
|
|
</content-with-heading>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import ContentWithHeading from '@/templates/ContentWithHeading.vue'
|
|
import ListAlbumsSpotify from '@/components/ListAlbumsSpotify.vue'
|
|
import ModalDialogArtistSpotify from '@/components/ModalDialogArtistSpotify.vue'
|
|
import SpotifyWebApi from 'spotify-web-api-js'
|
|
import { VueEternalLoading } from '@ts-pro/vue-eternal-loading'
|
|
import { useServicesStore } from '@/stores/services'
|
|
import webapi from '@/webapi'
|
|
|
|
const PAGE_SIZE = 50
|
|
|
|
const dataObject = {
|
|
load(to) {
|
|
const spotifyApi = new SpotifyWebApi()
|
|
spotifyApi.setAccessToken(useServicesStore().spotify.webapi_token)
|
|
return Promise.all([
|
|
spotifyApi.getArtist(to.params.id),
|
|
spotifyApi.getArtistAlbums(to.params.id, {
|
|
include_groups: 'album,single',
|
|
limit: PAGE_SIZE,
|
|
market: useServicesStore().spotify.webapi_country,
|
|
offset: 0
|
|
})
|
|
])
|
|
},
|
|
|
|
set(vm, response) {
|
|
vm.artist = response.shift()
|
|
vm.albums = []
|
|
vm.total = 0
|
|
vm.offset = 0
|
|
vm.append_albums(response.shift())
|
|
}
|
|
}
|
|
|
|
export default {
|
|
name: 'PageArtistSpotify',
|
|
components: {
|
|
ContentWithHeading,
|
|
ListAlbumsSpotify,
|
|
ModalDialogArtistSpotify,
|
|
VueEternalLoading
|
|
},
|
|
|
|
beforeRouteEnter(to, from, next) {
|
|
dataObject.load(to).then((response) => {
|
|
next((vm) => dataObject.set(vm, response))
|
|
})
|
|
},
|
|
|
|
setup() {
|
|
return { servicesStore: useServicesStore() }
|
|
},
|
|
|
|
data() {
|
|
return {
|
|
albums: [],
|
|
artist: {},
|
|
offset: 0,
|
|
show_details_modal: false,
|
|
total: 0
|
|
}
|
|
},
|
|
|
|
methods: {
|
|
append_albums(data) {
|
|
this.albums = this.albums.concat(data.items)
|
|
this.total = data.total
|
|
this.offset += data.limit
|
|
},
|
|
load_next({ loaded }) {
|
|
const spotifyApi = new SpotifyWebApi()
|
|
spotifyApi.setAccessToken(this.servicesStore.spotify.webapi_token)
|
|
spotifyApi
|
|
.getArtistAlbums(this.artist.id, {
|
|
include_groups: 'album,single',
|
|
limit: PAGE_SIZE,
|
|
offset: this.offset
|
|
})
|
|
.then((data) => {
|
|
this.append_albums(data)
|
|
loaded(data.items.length, PAGE_SIZE)
|
|
})
|
|
},
|
|
play() {
|
|
this.show_album_details_modal = false
|
|
webapi.player_play_uri(this.artist.uri, true)
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style></style>
|