2018-12-15 09:56:09 +01:00
|
|
|
<template>
|
2025-02-09 11:13:23 +01:00
|
|
|
<modal-dialog-playable
|
2025-02-09 17:52:45 +01:00
|
|
|
:item="playable"
|
2025-02-09 11:13:23 +01:00
|
|
|
:show="show"
|
|
|
|
@close="$emit('close')"
|
2025-02-09 17:52:45 +01:00
|
|
|
/>
|
2018-12-15 09:56:09 +01:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
2025-02-09 11:13:23 +01:00
|
|
|
import ModalDialogPlayable from '@/components/ModalDialogPlayable.vue'
|
2018-12-15 09:56:09 +01:00
|
|
|
|
|
|
|
export default {
|
|
|
|
name: 'ModalDialogGenre',
|
2025-02-09 11:13:23 +01:00
|
|
|
components: { ModalDialogPlayable },
|
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
|
|
|
media_kind: { required: true, type: String },
|
|
|
|
show: Boolean
|
|
|
|
},
|
2022-02-19 07:05:59 +01:00
|
|
|
emits: ['close'],
|
2023-07-24 19:51:00 +02:00
|
|
|
computed: {
|
2025-02-09 17:52:45 +01:00
|
|
|
playable() {
|
|
|
|
return {
|
|
|
|
name: this.item.name,
|
|
|
|
action: this.open,
|
|
|
|
expression: `genre is "${this.item.name}" and media_kind is ${this.media_kind}`,
|
|
|
|
properties: [
|
|
|
|
{
|
|
|
|
label: 'dialog.genre.albums',
|
|
|
|
value: this.item.album_count
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: 'dialog.genre.tracks',
|
|
|
|
value: this.item.track_count
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: 'dialog.genre.duration',
|
|
|
|
value: this.$filters.durationInHours(this.item.length_ms)
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
2023-07-24 19:51:00 +02:00
|
|
|
}
|
|
|
|
},
|
2018-12-15 09:56:09 +01:00
|
|
|
methods: {
|
2024-03-26 03:13:17 +01:00
|
|
|
open() {
|
|
|
|
this.$emit('close')
|
|
|
|
this.$router.push({
|
|
|
|
name: 'genre-albums',
|
|
|
|
params: { name: this.item.name },
|
|
|
|
query: { media_kind: this.media_kind }
|
|
|
|
})
|
2018-12-15 09:56:09 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|