2021-10-23 10:48:11 +01:00
|
|
|
<template>
|
2025-02-08 14:35:25 +01:00
|
|
|
<modal-dialog
|
2025-02-08 14:27:54 +01:00
|
|
|
:actions="actions"
|
|
|
|
:show="show"
|
|
|
|
@add="queue_add"
|
|
|
|
@add-next="queue_add_next"
|
|
|
|
@close="$emit('close')"
|
|
|
|
@play="play"
|
|
|
|
>
|
|
|
|
<template #modal-content>
|
2025-02-04 22:00:48 +01:00
|
|
|
<div class="title is-4">
|
|
|
|
<a @click="open_albums" v-text="item.name" />
|
|
|
|
</div>
|
|
|
|
<div class="mb-3">
|
|
|
|
<div
|
|
|
|
class="is-size-7 is-uppercase"
|
|
|
|
v-text="$t('dialog.composer.albums')"
|
|
|
|
/>
|
|
|
|
<div class="title is-6">
|
|
|
|
<a @click="open_albums" v-text="item.album_count" />
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="mb-3">
|
|
|
|
<div
|
|
|
|
class="is-size-7 is-uppercase"
|
|
|
|
v-text="$t('dialog.composer.tracks')"
|
|
|
|
/>
|
|
|
|
<div class="title is-6">
|
|
|
|
<a @click="open_tracks" v-text="item.track_count" />
|
2025-01-01 21:13:48 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
2025-02-04 22:00:48 +01:00
|
|
|
<div class="mb-3">
|
|
|
|
<div
|
|
|
|
class="is-size-7 is-uppercase"
|
|
|
|
v-text="$t('dialog.composer.duration')"
|
|
|
|
/>
|
|
|
|
<div
|
|
|
|
class="title is-6"
|
|
|
|
v-text="$filters.durationInHours(item.length_ms)"
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
</template>
|
2025-02-08 14:35:25 +01:00
|
|
|
</modal-dialog>
|
2021-10-23 10:48:11 +01:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
2025-02-08 14:35:25 +01:00
|
|
|
import ModalDialog from '@/components/ModalDialog.vue'
|
2021-10-23 10:48:11 +01:00
|
|
|
import webapi from '@/webapi'
|
|
|
|
|
|
|
|
export default {
|
|
|
|
name: 'ModalDialogComposer',
|
2025-02-08 14:35:25 +01:00
|
|
|
components: { ModalDialog },
|
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'],
|
2025-02-08 14:27:54 +01:00
|
|
|
computed: {
|
|
|
|
actions() {
|
|
|
|
return [
|
|
|
|
{
|
|
|
|
label: this.$t('dialog.composer.add'),
|
|
|
|
event: 'add',
|
|
|
|
icon: 'playlist-plus'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: this.$t('dialog.composer.add-next'),
|
|
|
|
event: 'add-next',
|
|
|
|
icon: 'playlist-play'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: this.$t('dialog.composer.play'),
|
|
|
|
event: 'play',
|
|
|
|
icon: 'play'
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
},
|
2021-10-23 10:48:11 +01:00
|
|
|
methods: {
|
2024-03-26 03:13:17 +01:00
|
|
|
open_albums() {
|
|
|
|
this.$emit('close')
|
|
|
|
this.$router.push({
|
|
|
|
name: 'music-composer-albums',
|
|
|
|
params: { name: this.item.name }
|
|
|
|
})
|
|
|
|
},
|
|
|
|
open_tracks() {
|
|
|
|
this.$router.push({
|
|
|
|
name: 'music-composer-tracks',
|
|
|
|
params: { name: this.item.name }
|
|
|
|
})
|
|
|
|
},
|
2023-06-07 21:25:54 +02:00
|
|
|
play() {
|
2021-10-23 10:48:11 +01:00
|
|
|
this.$emit('close')
|
2022-02-19 06:39:14 +01:00
|
|
|
webapi.player_play_expression(
|
2024-03-26 03:13:17 +01:00
|
|
|
`composer is "${this.item.name}" and media_kind is music`,
|
2022-02-19 06:39:14 +01:00
|
|
|
false
|
|
|
|
)
|
2021-10-23 10:48:11 +01:00
|
|
|
},
|
2023-06-07 21:25:54 +02:00
|
|
|
queue_add() {
|
2021-10-23 10:48:11 +01:00
|
|
|
this.$emit('close')
|
2022-02-19 06:39:14 +01:00
|
|
|
webapi.queue_expression_add(
|
2024-03-26 03:13:17 +01:00
|
|
|
`composer is "${this.item.name}" and media_kind is music`
|
2022-02-19 06:39:14 +01:00
|
|
|
)
|
2021-10-23 10:48:11 +01:00
|
|
|
},
|
2023-06-07 21:25:54 +02:00
|
|
|
queue_add_next() {
|
2021-10-23 10:48:11 +01:00
|
|
|
this.$emit('close')
|
2022-02-19 06:39:14 +01:00
|
|
|
webapi.queue_expression_add_next(
|
2024-03-26 03:13:17 +01:00
|
|
|
`composer is "${this.item.name}" and media_kind is music`
|
2022-02-19 06:39:14 +01:00
|
|
|
)
|
2021-10-23 10:48:11 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|