owntone-server/web-src/src/components/ModalDialogPlaylistSpotify.vue

102 lines
2.9 KiB
Vue
Raw Normal View History

<template>
2024-03-05 14:21:35 +01:00
<transition name="fade">
<div v-if="show" class="modal is-active">
<div class="modal-background" @click="$emit('close')" />
<div class="modal-content">
<div class="card">
<div class="card-content">
<p class="title is-4">
2024-03-26 03:13:17 +01:00
<a class="has-text-link" @click="open" v-text="item.name" />
2024-03-05 14:21:35 +01:00
</p>
<div class="content is-small">
<p>
<span
2024-03-05 14:21:35 +01:00
class="heading"
v-text="$t('dialog.spotify.playlist.owner')"
/>
2024-03-26 03:13:17 +01:00
<span class="title is-6" v-text="item.owner.display_name" />
2024-03-05 14:21:35 +01:00
</p>
<p>
<span
2024-03-05 14:21:35 +01:00
class="heading"
v-text="$t('dialog.spotify.playlist.tracks')"
/>
2024-03-26 03:13:17 +01:00
<span class="title is-6" v-text="item.tracks.total" />
2024-03-05 14:21:35 +01:00
</p>
<p>
<span
2024-03-05 14:21:35 +01:00
class="heading"
v-text="$t('dialog.spotify.playlist.path')"
/>
2024-03-26 03:13:17 +01:00
<span class="title is-6" v-text="item.uri" />
2024-03-05 14:21:35 +01:00
</p>
</div>
</div>
2024-03-05 14:21:35 +01:00
<footer class="card-footer">
<a class="card-footer-item has-text-dark" @click="queue_add">
<mdicon class="icon" name="playlist-plus" size="16" />
<span
class="is-size-7"
v-text="$t('dialog.spotify.playlist.add')"
/>
</a>
<a class="card-footer-item has-text-dark" @click="queue_add_next">
<mdicon class="icon" name="playlist-play" size="16" />
<span
class="is-size-7"
v-text="$t('dialog.spotify.playlist.add-next')"
/>
</a>
<a class="card-footer-item has-text-dark" @click="play">
<mdicon class="icon" name="play" size="16" />
<span
class="is-size-7"
v-text="$t('dialog.spotify.playlist.play')"
/>
</a>
</footer>
</div>
</div>
2024-03-05 14:21:35 +01:00
<button
class="modal-close is-large"
aria-label="close"
@click="$emit('close')"
/>
</div>
</transition>
</template>
<script>
import webapi from '@/webapi'
export default {
name: 'ModalDialogPlaylistSpotify',
2024-03-26 03:13:17 +01:00
props: { item: { required: true, type: Object }, show: Boolean },
2022-02-19 07:05:59 +01:00
emits: ['close'],
methods: {
2024-03-26 03:13:17 +01:00
open() {
2024-03-24 11:01:06 +01:00
this.$emit('close')
this.$router.push({
name: 'playlist-spotify',
2024-03-26 03:13:17 +01:00
params: { id: this.item.id }
2024-03-24 11:01:06 +01:00
})
},
play() {
this.$emit('close')
2024-03-26 03:13:17 +01:00
webapi.player_play_uri(this.item.uri, false)
},
queue_add() {
this.$emit('close')
2024-03-26 03:13:17 +01:00
webapi.queue_add(this.item.uri)
},
queue_add_next() {
this.$emit('close')
2024-03-26 03:13:17 +01:00
webapi.queue_add_next(this.item.uri)
}
}
}
</script>
<style></style>