2018-12-15 09:56:09 +01:00
|
|
|
<template>
|
2025-02-04 22:00:48 +01:00
|
|
|
<modal-dialog :show="show" @close="$emit('close')">
|
|
|
|
<template #content>
|
|
|
|
<div class="title is-4">
|
|
|
|
<a @click="open" v-text="item.name" />
|
2025-01-01 21:13:48 +01:00
|
|
|
</div>
|
2025-02-04 22:00:48 +01:00
|
|
|
<div class="mb-3">
|
|
|
|
<div
|
|
|
|
class="is-size-7 is-uppercase"
|
|
|
|
v-text="$t('dialog.playlist.path')"
|
|
|
|
/>
|
|
|
|
<div class="title is-6" v-text="item.path" />
|
|
|
|
</div>
|
|
|
|
<div class="mb-3">
|
|
|
|
<div
|
|
|
|
class="is-size-7 is-uppercase"
|
|
|
|
v-text="$t('dialog.playlist.type')"
|
|
|
|
/>
|
|
|
|
<div class="title is-6" v-text="$t(`playlist.type.${item.type}`)" />
|
|
|
|
</div>
|
|
|
|
<div v-if="!item.folder" class="mb-3">
|
|
|
|
<div
|
|
|
|
class="is-size-7 is-uppercase"
|
|
|
|
v-text="$t('dialog.playlist.tracks')"
|
|
|
|
/>
|
|
|
|
<div class="title is-6" v-text="item.item_count" />
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
<template v-if="!item.folder" #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.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.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.playlist.play')" />
|
|
|
|
</a>
|
|
|
|
</template>
|
|
|
|
</modal-dialog>
|
2018-12-15 09:56:09 +01:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
2025-02-04 22:00:48 +01:00
|
|
|
import ModalDialog from '@/components/ModalDialog.vue'
|
2018-12-15 09:56:09 +01:00
|
|
|
import webapi from '@/webapi'
|
|
|
|
|
|
|
|
export default {
|
|
|
|
name: 'ModalDialogPlaylist',
|
2025-02-04 22:00:48 +01:00
|
|
|
components: { ModalDialog },
|
2024-02-28 13:10:08 +01:00
|
|
|
props: {
|
2024-03-26 03:13:17 +01:00
|
|
|
item: { required: true, type: Object },
|
2024-02-28 13:10:08 +01:00
|
|
|
show: Boolean,
|
|
|
|
uris: { default: '', type: String }
|
|
|
|
},
|
2022-02-19 07:05:59 +01:00
|
|
|
emits: ['close'],
|
2018-12-15 09:56:09 +01:00
|
|
|
|
|
|
|
methods: {
|
2024-03-26 03:13:17 +01:00
|
|
|
open() {
|
2024-03-26 01:17:07 +01:00
|
|
|
this.$emit('close')
|
|
|
|
this.$router.push({
|
|
|
|
name: 'playlist',
|
2024-03-26 03:13:17 +01:00
|
|
|
params: { id: this.item.id }
|
2024-03-26 01:17:07 +01:00
|
|
|
})
|
|
|
|
},
|
2023-06-07 21:25:54 +02:00
|
|
|
play() {
|
2018-12-15 09:56:09 +01:00
|
|
|
this.$emit('close')
|
2024-03-26 03:13:17 +01:00
|
|
|
webapi.player_play_uri(this.uris || this.item.uri, false)
|
2018-12-15 09:56:09 +01:00
|
|
|
},
|
2023-06-07 21:25:54 +02:00
|
|
|
queue_add() {
|
2018-12-15 09:56:09 +01:00
|
|
|
this.$emit('close')
|
2024-03-26 03:13:17 +01:00
|
|
|
webapi.queue_add(this.uris || this.item.uri)
|
2018-12-15 09:56:09 +01:00
|
|
|
},
|
2023-06-07 21:25:54 +02:00
|
|
|
queue_add_next() {
|
2018-12-15 09:56:09 +01:00
|
|
|
this.$emit('close')
|
2024-03-26 03:13:17 +01:00
|
|
|
webapi.queue_add_next(this.uris || this.item.uri)
|
2018-12-15 09:56:09 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|