mirror of
https://github.com/owntone/owntone-server.git
synced 2025-03-04 07:40:12 -05:00
59 lines
1.3 KiB
Vue
59 lines
1.3 KiB
Vue
<template>
|
|
<modal-dialog-playable
|
|
:item="playable"
|
|
:show="show"
|
|
@close="$emit('close')"
|
|
/>
|
|
</template>
|
|
|
|
<script>
|
|
import ModalDialogPlayable from './ModalDialogPlayable.vue'
|
|
|
|
export default {
|
|
name: 'ModalDialogComposer',
|
|
components: { ModalDialogPlayable },
|
|
props: { item: { required: true, type: Object }, show: Boolean },
|
|
emits: ['close'],
|
|
computed: {
|
|
playable() {
|
|
return {
|
|
name: this.item.name,
|
|
handler: this.open_albums,
|
|
expression: `composer is "${this.item.name}" and media_kind is music`,
|
|
properties: [
|
|
{
|
|
label: 'property.albums',
|
|
value: this.item.album_count,
|
|
handler: this.open_albums
|
|
},
|
|
{
|
|
label: 'property.tracks',
|
|
value: this.item.track_count,
|
|
handler: this.open_tracks
|
|
},
|
|
{
|
|
label: 'property.duration',
|
|
value: this.$filters.durationInHours(this.item.length_ms)
|
|
}
|
|
]
|
|
}
|
|
}
|
|
},
|
|
methods: {
|
|
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 }
|
|
})
|
|
}
|
|
}
|
|
}
|
|
</script>
|