owntone-server/web-src/src/components/ModalDialogArtist.vue
2025-02-08 14:35:25 +01:00

96 lines
2.3 KiB
Vue

<template>
<modal-dialog
:actions="actions"
:show="show"
@add="queue_add"
@add-next="queue_add_next"
@close="$emit('close')"
@play="play"
>
<template #modal-content>
<div class="title is-4">
<a @click="open" v-text="item.name" />
</div>
<div class="mb-3">
<div
class="is-size-7 is-uppercase"
v-text="$t('dialog.artist.albums')"
/>
<div class="title is-6" v-text="item.album_count" />
</div>
<div class="mb-3">
<div
class="is-size-7 is-uppercase"
v-text="$t('dialog.artist.tracks')"
/>
<div class="title is-6" v-text="item.track_count" />
</div>
<div class="mb-3">
<div class="is-size-7 is-uppercase" v-text="$t('dialog.artist.type')" />
<div class="title is-6" v-text="$t(`data.kind.${item.data_kind}`)" />
</div>
<div class="mb-3">
<div
class="is-size-7 is-uppercase"
v-text="$t('dialog.artist.added-on')"
/>
<div class="title is-6" v-text="$filters.datetime(item.time_added)" />
</div>
</template>
</modal-dialog>
</template>
<script>
import ModalDialog from '@/components/ModalDialog.vue'
import webapi from '@/webapi'
export default {
name: 'ModalDialogArtist',
components: { ModalDialog },
props: { item: { required: true, type: Object }, show: Boolean },
emits: ['close'],
computed: {
actions() {
return [
{
label: this.$t('dialog.artist.add'),
event: 'add',
icon: 'playlist-plus'
},
{
label: this.$t('dialog.artist.add-next'),
event: 'add-next',
icon: 'playlist-play'
},
{
label: this.$t('dialog.artist.play'),
event: 'play',
icon: 'play'
}
]
}
},
methods: {
open() {
this.$emit('close')
this.$router.push({
name: 'music-artist',
params: { id: this.item.id }
})
},
play() {
this.$emit('close')
webapi.player_play_uri(this.item.uri, false)
},
queue_add() {
this.$emit('close')
webapi.queue_add(this.item.uri)
},
queue_add_next() {
this.$emit('close')
webapi.queue_add_next(this.item.uri)
}
}
}
</script>