mirror of
https://github.com/owntone/owntone-server.git
synced 2025-04-14 00:10:10 -04:00
115 lines
3.1 KiB
Vue
115 lines
3.1 KiB
Vue
<template>
|
|
<div>
|
|
<content-with-hero>
|
|
<template #heading-left>
|
|
<div class="title is-5" v-text="album.name" />
|
|
<div class="subtitle is-6">
|
|
<a @click="openArtist" v-text="album.artists[0].name" />
|
|
</div>
|
|
<div
|
|
class="is-size-7 is-uppercase has-text-centered-mobile"
|
|
v-text="$t('count.tracks', { count: album.tracks.total })"
|
|
/>
|
|
<div class="buttons is-centered-mobile mt-5">
|
|
<control-button
|
|
:button="{ handler: play, icon: 'shuffle', key: 'actions.shuffle' }"
|
|
/>
|
|
<control-button
|
|
:button="{ handler: showDetails, icon: 'dots-horizontal' }"
|
|
/>
|
|
</div>
|
|
</template>
|
|
<template #heading-right>
|
|
<control-image
|
|
:url="album.images?.[0]?.url ?? ''"
|
|
:artist="album.artists[0].name"
|
|
:album="album.name"
|
|
class="is-clickable is-medium"
|
|
@click="showDetails"
|
|
/>
|
|
</template>
|
|
<template #content>
|
|
<list-tracks-spotify :items="tracks" :context_uri="album.uri" />
|
|
<modal-dialog-album-spotify
|
|
:item="album"
|
|
:show="showDetailsModal"
|
|
@close="showDetailsModal = false"
|
|
/>
|
|
</template>
|
|
</content-with-hero>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import ContentWithHero from '@/templates/ContentWithHero.vue'
|
|
import ControlButton from '@/components/ControlButton.vue'
|
|
import ControlImage from '@/components/ControlImage.vue'
|
|
import ListTracksSpotify from '@/components/ListTracksSpotify.vue'
|
|
import ModalDialogAlbumSpotify from '@/components/ModalDialogAlbumSpotify.vue'
|
|
import SpotifyWebApi from 'spotify-web-api-js'
|
|
import { useServicesStore } from '@/stores/services'
|
|
import webapi from '@/webapi'
|
|
|
|
const dataObject = {
|
|
load(to) {
|
|
const spotifyApi = new SpotifyWebApi()
|
|
spotifyApi.setAccessToken(useServicesStore().spotify.webapi_token)
|
|
return spotifyApi.getAlbum(to.params.id, {
|
|
market: useServicesStore().spotify.webapi_country
|
|
})
|
|
},
|
|
set(vm, response) {
|
|
vm.album = response
|
|
}
|
|
}
|
|
|
|
export default {
|
|
name: 'PageAlbumSpotify',
|
|
components: {
|
|
ContentWithHero,
|
|
ControlButton,
|
|
ControlImage,
|
|
ListTracksSpotify,
|
|
ModalDialogAlbumSpotify
|
|
},
|
|
beforeRouteEnter(to, from, next) {
|
|
dataObject.load(to).then((response) => {
|
|
next((vm) => dataObject.set(vm, response))
|
|
})
|
|
},
|
|
setup() {
|
|
return { servicesStore: useServicesStore() }
|
|
},
|
|
data() {
|
|
return {
|
|
album: { artists: [{}], tracks: {} },
|
|
showDetailsModal: false
|
|
}
|
|
},
|
|
computed: {
|
|
tracks() {
|
|
const { album } = this
|
|
if (album.tracks.total) {
|
|
return album.tracks.items.map((track) => ({ ...track, album }))
|
|
}
|
|
return {}
|
|
}
|
|
},
|
|
methods: {
|
|
openArtist() {
|
|
this.$router.push({
|
|
name: 'music-spotify-artist',
|
|
params: { id: this.album.artists[0].id }
|
|
})
|
|
},
|
|
play() {
|
|
this.showDetailsModal = false
|
|
webapi.player_play_uri(this.album.uri, true)
|
|
},
|
|
showDetails() {
|
|
this.showDetailsModal = true
|
|
}
|
|
}
|
|
}
|
|
</script>
|