owntone-server/web-src/src/pages/PagePlaylistTracksSpotify.vue
2025-03-05 21:31:48 +01:00

159 lines
4.3 KiB
Vue

<template>
<div>
<content-with-heading>
<template #heading-left>
<heading-title :content="heading" />
</template>
<template #heading-right>
<control-button
:button="{ handler: showDetails, icon: 'dots-horizontal' }"
/>
<control-button
:button="{
handler: play,
icon: 'shuffle',
key: 'actions.shuffle'
}"
:disabled="playlist.tracks.total === 0"
/>
</template>
<template #content>
<list-tracks-spotify :items="tracks" :context_uri="playlist.uri" />
<vue-eternal-loading 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>
</vue-eternal-loading>
<modal-dialog-playlist-spotify
:item="playlist"
:show="show_playlist_details_modal"
@close="show_playlist_details_modal = false"
/>
</template>
</content-with-heading>
</div>
</template>
<script>
import ContentWithHeading from '@/templates/ContentWithHeading.vue'
import ControlButton from '@/components/ControlButton.vue'
import HeadingTitle from '@/components/HeadingTitle.vue'
import ListTracksSpotify from '@/components/ListTracksSpotify.vue'
import ModalDialogPlaylistSpotify from '@/components/ModalDialogPlaylistSpotify.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.getPlaylist(to.params.id),
spotifyApi.getPlaylistTracks(to.params.id, {
limit: PAGE_SIZE,
market: useServicesStore().$state.spotify.webapi_country,
offset: 0
})
])
},
set(vm, response) {
vm.playlist = response.shift()
vm.tracks = []
vm.total = 0
vm.offset = 0
vm.append_tracks(response.shift())
}
}
export default {
name: 'PagePlaylistTracksSpotify',
components: {
ContentWithHeading,
ControlButton,
ListTracksSpotify,
ModalDialogPlaylistSpotify,
HeadingTitle,
VueEternalLoading
},
beforeRouteEnter(to, from, next) {
dataObject.load(to).then((response) => {
next((vm) => dataObject.set(vm, response))
})
},
setup() {
return { servicesStore: useServicesStore() }
},
data() {
return {
offset: 0,
playlist: { tracks: {} },
show_playlist_details_modal: false,
total: 0,
tracks: []
}
},
computed: {
heading() {
return {
title: this.playlist.name,
subtitle: [
{ key: 'count.playlists', count: this.playlist.tracks.total }
]
}
}
},
methods: {
append_tracks(data) {
let position = Math.max(
-1,
...this.tracks.map((item) => item.position).filter((item) => item)
)
// Filters out null tracks and adds a position to the playable tracks
data.items.forEach((item) => {
const { track } = item
if (track) {
if (track.is_playable) {
track.position = ++position
}
this.tracks.push(track)
}
})
this.total = data.total
this.offset += data.limit
},
load_next({ loaded }) {
const spotifyApi = new SpotifyWebApi()
spotifyApi.setAccessToken(this.servicesStore.spotify.webapi_token)
spotifyApi
.getPlaylistTracks(this.playlist.id, {
limit: PAGE_SIZE,
market: this.servicesStore.spotify.webapi_country,
offset: this.offset
})
.then((data) => {
this.append_tracks(data)
loaded(data.items.length, PAGE_SIZE)
})
},
play() {
this.show_details_modal = false
webapi.player_play_uri(this.playlist.uri, true)
},
showDetails() {
this.show_playlist_details_modal = true
}
}
}
</script>