mirror of
https://github.com/owntone/owntone-server.git
synced 2025-01-07 13:03:23 -05:00
80 lines
2.3 KiB
Vue
80 lines
2.3 KiB
Vue
<template>
|
|
<div>
|
|
<tabs-music></tabs-music>
|
|
|
|
<content-with-heading>
|
|
<template slot="heading-left">
|
|
<p class="title is-4">Featured Playlists</p>
|
|
</template>
|
|
<template slot="content">
|
|
<spotify-list-item-playlist v-for="playlist in featured_playlists" :key="playlist.id" :playlist="playlist">
|
|
<template slot="actions">
|
|
<a @click="open_playlist_dialog(playlist)">
|
|
<span class="icon has-text-dark"><i class="mdi mdi-dots-vertical mdi-18px"></i></span>
|
|
</a>
|
|
</template>
|
|
</spotify-list-item-playlist>
|
|
<spotify-modal-dialog-playlist :show="show_playlist_details_modal" :playlist="selected_playlist" @close="show_playlist_details_modal = false" />
|
|
</template>
|
|
</content-with-heading>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { LoadDataBeforeEnterMixin } from './mixin'
|
|
import ContentWithHeading from '@/templates/ContentWithHeading'
|
|
import TabsMusic from '@/components/TabsMusic'
|
|
import SpotifyListItemPlaylist from '@/components/SpotifyListItemPlaylist'
|
|
import SpotifyModalDialogPlaylist from '@/components/SpotifyModalDialogPlaylist'
|
|
import store from '@/store'
|
|
import * as types from '@/store/mutation_types'
|
|
import SpotifyWebApi from 'spotify-web-api-js'
|
|
|
|
const browseData = {
|
|
load: function (to) {
|
|
if (store.state.spotify_featured_playlists.length > 0) {
|
|
return Promise.resolve()
|
|
}
|
|
|
|
const spotifyApi = new SpotifyWebApi()
|
|
spotifyApi.setAccessToken(store.state.spotify.webapi_token)
|
|
spotifyApi.getFeaturedPlaylists({ country: store.state.spotify.webapi_country, limit: 50 })
|
|
},
|
|
|
|
set: function (vm, response) {
|
|
if (response) {
|
|
store.commit(types.SPOTIFY_FEATURED_PLAYLISTS, response.playlists.items)
|
|
}
|
|
}
|
|
}
|
|
|
|
export default {
|
|
name: 'SpotifyPageBrowseFeaturedPlaylists',
|
|
mixins: [LoadDataBeforeEnterMixin(browseData)],
|
|
components: { ContentWithHeading, TabsMusic, SpotifyListItemPlaylist, SpotifyModalDialogPlaylist },
|
|
|
|
data () {
|
|
return {
|
|
show_playlist_details_modal: false,
|
|
selected_playlist: {}
|
|
}
|
|
},
|
|
|
|
computed: {
|
|
featured_playlists () {
|
|
return this.$store.state.spotify_featured_playlists
|
|
}
|
|
},
|
|
|
|
methods: {
|
|
open_playlist_dialog: function (playlist) {
|
|
this.selected_playlist = playlist
|
|
this.show_playlist_details_modal = true
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
</style>
|