owntone-server/web-src/src/components/ModalDialogArtistSpotify.vue
2025-02-12 18:50:22 +01:00

48 lines
1007 B
Vue

<template>
<modal-dialog-playable
:item="playable"
:show="show"
@close="$emit('close')"
/>
</template>
<script>
import ModalDialogPlayable from '@/components/ModalDialogPlayable.vue'
export default {
name: 'ModalDialogArtistSpotify',
components: { ModalDialogPlayable },
props: { item: { required: true, type: Object }, show: Boolean },
emits: ['close'],
computed: {
playable() {
return {
name: this.item.name,
handler: this.open,
properties: [
{
label: 'property.popularity',
value: [this.item.popularity, this.item.followers?.total].join(
' / '
)
},
{
label: 'property.genres',
value: this.item.genres?.join(', ')
}
]
}
}
},
methods: {
open() {
this.$emit('close')
this.$router.push({
name: 'music-spotify-artist',
params: { id: this.item.id }
})
}
}
}
</script>