mirror of
https://github.com/owntone/owntone-server.git
synced 2025-03-05 08:10:10 -05:00
85 lines
2.4 KiB
Vue
85 lines
2.4 KiB
Vue
<template>
|
|
<base-modal :show="show" @close="$emit('close')">
|
|
<template #content>
|
|
<p class="title is-4">
|
|
<a class="has-text-link" @click="open" v-text="item.name" />
|
|
</p>
|
|
<div class="content is-small">
|
|
<p>
|
|
<span class="heading" v-text="$t('dialog.genre.albums')" />
|
|
<span class="title is-6" v-text="item.album_count" />
|
|
</p>
|
|
<p>
|
|
<span class="heading" v-text="$t('dialog.genre.tracks')" />
|
|
<span class="title is-6" v-text="item.track_count" />
|
|
</p>
|
|
<p>
|
|
<span class="heading" v-text="$t('dialog.genre.duration')" />
|
|
<span
|
|
class="title is-6"
|
|
v-text="$filters.durationInHours(item.length_ms)"
|
|
/>
|
|
</p>
|
|
</div>
|
|
</template>
|
|
<template #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.genre.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.genre.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.genre.play')" />
|
|
</a>
|
|
</template>
|
|
</base-modal>
|
|
</template>
|
|
|
|
<script>
|
|
import BaseModal from '@/components/BaseModal.vue'
|
|
import webapi from '@/webapi'
|
|
|
|
export default {
|
|
name: 'ModalDialogGenre',
|
|
components: { BaseModal },
|
|
props: {
|
|
item: { required: true, type: Object },
|
|
media_kind: { required: true, type: String },
|
|
show: Boolean
|
|
},
|
|
emits: ['close'],
|
|
|
|
computed: {
|
|
expression() {
|
|
return `genre is "${this.item.name}" and media_kind is ${this.media_kind}`
|
|
}
|
|
},
|
|
methods: {
|
|
open() {
|
|
this.$emit('close')
|
|
this.$router.push({
|
|
name: 'genre-albums',
|
|
params: { name: this.item.name },
|
|
query: { media_kind: this.media_kind }
|
|
})
|
|
},
|
|
play() {
|
|
this.$emit('close')
|
|
webapi.player_play_expression(this.expression, false)
|
|
},
|
|
queue_add() {
|
|
this.$emit('close')
|
|
webapi.queue_expression_add(this.expression)
|
|
},
|
|
queue_add_next() {
|
|
this.$emit('close')
|
|
webapi.queue_expression_add_next(this.expression)
|
|
}
|
|
}
|
|
}
|
|
</script>
|