mirror of
https://github.com/owntone/owntone-server.git
synced 2025-01-31 16:36:02 -05:00
62 lines
1.3 KiB
Vue
62 lines
1.3 KiB
Vue
<template>
|
|
<div class="fd-page-with-tabs">
|
|
<tabs-music />
|
|
<content-with-heading>
|
|
<template #heading-left>
|
|
<p class="title is-4" v-text="$t('page.spotify.music.new-releases')" />
|
|
</template>
|
|
<template #content>
|
|
<list-albums-spotify :items="albums" />
|
|
</template>
|
|
</content-with-heading>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import ContentWithHeading from '@/templates/ContentWithHeading.vue'
|
|
import ListAlbumsSpotify from '@/components/ListAlbumsSpotify.vue'
|
|
import SpotifyWebApi from 'spotify-web-api-js'
|
|
import TabsMusic from '@/components/TabsMusic.vue'
|
|
import webapi from '@/webapi'
|
|
|
|
const dataObject = {
|
|
load(to) {
|
|
return webapi.spotify().then(({ data }) => {
|
|
const spotifyApi = new SpotifyWebApi()
|
|
spotifyApi.setAccessToken(data.webapi_token)
|
|
return spotifyApi.getNewReleases({
|
|
country: data.webapi_country,
|
|
limit: 50
|
|
})
|
|
})
|
|
},
|
|
|
|
set(vm, response) {
|
|
vm.albums = response.albums.items
|
|
}
|
|
}
|
|
|
|
export default {
|
|
name: 'PageMusicSpotifyNewReleases',
|
|
components: {
|
|
ContentWithHeading,
|
|
ListAlbumsSpotify,
|
|
TabsMusic
|
|
},
|
|
|
|
beforeRouteEnter(to, from, next) {
|
|
dataObject.load(to).then((response) => {
|
|
next((vm) => dataObject.set(vm, response))
|
|
})
|
|
},
|
|
|
|
data() {
|
|
return {
|
|
albums: []
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style></style>
|