2018-12-17 05:52:09 -05:00
|
|
|
<template>
|
|
|
|
<div>
|
|
|
|
<transition name="fade">
|
2022-02-19 00:39:14 -05:00
|
|
|
<div v-if="show" class="modal is-active">
|
|
|
|
<div class="modal-background" @click="$emit('close')" />
|
2018-12-17 05:52:09 -05:00
|
|
|
<div class="modal-content fd-modal-card">
|
|
|
|
<div class="card">
|
|
|
|
<div class="card-content">
|
|
|
|
<p class="title is-4">
|
2022-05-20 07:44:22 -04:00
|
|
|
<a class="has-text-link" @click="open_playlist" v-text="playlist.name" />
|
2018-12-17 05:52:09 -05:00
|
|
|
</p>
|
|
|
|
<div class="content is-small">
|
|
|
|
<p>
|
2022-05-20 07:44:22 -04:00
|
|
|
<span class="heading" v-text="$t('dialog.spotify.playlist.owner')" />
|
|
|
|
<span class="title is-6" v-text="playlist.owner.display_name" />
|
2018-12-17 05:52:09 -05:00
|
|
|
</p>
|
|
|
|
<p>
|
2022-05-20 07:44:22 -04:00
|
|
|
<span class="heading" v-text="$t('dialog.spotify.playlist.tracks')" />
|
|
|
|
<span class="title is-6" v-text="playlist.tracks.total" />
|
2018-12-17 05:52:09 -05:00
|
|
|
</p>
|
|
|
|
<p>
|
2022-05-20 07:44:22 -04:00
|
|
|
<span class="heading" v-text="$t('dialog.spotify.playlist.path')" />
|
|
|
|
<span class="title is-6" v-text="playlist.uri" />
|
2018-12-17 05:52:09 -05:00
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<footer class="card-footer">
|
|
|
|
<a class="card-footer-item has-text-dark" @click="queue_add">
|
2022-05-20 07:44:22 -04:00
|
|
|
<mdicon class="icon" name="playlist-plus" size="16" />
|
|
|
|
<span class="is-size-7" v-text="$t('dialog.spotify.playlist.add')" />
|
2018-12-17 05:52:09 -05:00
|
|
|
</a>
|
|
|
|
<a class="card-footer-item has-text-dark" @click="queue_add_next">
|
2022-05-20 07:44:22 -04:00
|
|
|
<mdicon class="icon" name="playlist-play" size="16" />
|
|
|
|
<span class="is-size-7" v-text="$t('dialog.spotify.playlist.add-next')" />
|
2018-12-17 05:52:09 -05:00
|
|
|
</a>
|
|
|
|
<a class="card-footer-item has-text-dark" @click="play">
|
2022-05-20 07:44:22 -04:00
|
|
|
<mdicon class="icon" name="play" size="16" />
|
|
|
|
<span class="is-size-7" v-text="$t('dialog.spotify.playlist.play')" />
|
2018-12-17 05:52:09 -05:00
|
|
|
</a>
|
|
|
|
</footer>
|
|
|
|
</div>
|
|
|
|
</div>
|
2022-05-20 07:44:22 -04:00
|
|
|
<button class="modal-close is-large" aria-label="close" @click="$emit('close')" />
|
2018-12-17 05:52:09 -05:00
|
|
|
</div>
|
|
|
|
</transition>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import webapi from '@/webapi'
|
|
|
|
|
|
|
|
export default {
|
|
|
|
name: 'SpotifyModalDialogPlaylist',
|
2020-04-11 13:43:53 -04:00
|
|
|
props: ['show', 'playlist'],
|
2022-02-19 01:05:59 -05:00
|
|
|
emits: ['close'],
|
2018-12-17 05:52:09 -05:00
|
|
|
|
|
|
|
methods: {
|
|
|
|
play: function () {
|
|
|
|
this.$emit('close')
|
|
|
|
webapi.player_play_uri(this.playlist.uri, false)
|
|
|
|
},
|
|
|
|
|
|
|
|
queue_add: function () {
|
|
|
|
this.$emit('close')
|
2018-12-23 03:54:02 -05:00
|
|
|
webapi.queue_add(this.playlist.uri)
|
2018-12-17 05:52:09 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
queue_add_next: function () {
|
|
|
|
this.$emit('close')
|
2018-12-23 03:54:02 -05:00
|
|
|
webapi.queue_add_next(this.playlist.uri)
|
2018-12-17 05:52:09 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
open_playlist: function () {
|
2022-02-19 00:39:14 -05:00
|
|
|
this.$router.push({
|
|
|
|
path: '/music/spotify/playlists/' + this.playlist.id
|
|
|
|
})
|
2018-12-17 05:52:09 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
2022-02-19 00:39:14 -05:00
|
|
|
<style></style>
|