2018-12-15 09:56:09 +01:00
|
|
|
<template>
|
2025-02-09 11:13:23 +01:00
|
|
|
<modal-dialog-playable :item="item" :show="show" @close="$emit('close')">
|
2025-02-09 08:05:03 +01:00
|
|
|
<template #content>
|
2025-02-04 22:00:48 +01:00
|
|
|
<div class="title is-4">
|
|
|
|
<a @click="open" v-text="item.name" />
|
2025-01-01 21:13:48 +01:00
|
|
|
</div>
|
2025-02-04 22:00:48 +01:00
|
|
|
<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>
|
2025-02-09 11:13:23 +01:00
|
|
|
</modal-dialog-playable>
|
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: 'ModalDialogArtist',
|
2025-02-09 11:13:23 +01:00
|
|
|
components: { ModalDialogPlayable },
|
2024-03-26 03:13:17 +01:00
|
|
|
props: { item: { required: true, type: Object }, show: Boolean },
|
2022-02-19 07:05:59 +01:00
|
|
|
emits: ['close'],
|
2018-12-15 09:56:09 +01:00
|
|
|
methods: {
|
2024-03-26 03:13:17 +01:00
|
|
|
open() {
|
2024-03-26 01:17:07 +01:00
|
|
|
this.$emit('close')
|
|
|
|
this.$router.push({
|
|
|
|
name: 'music-artist',
|
2024-03-26 03:13:17 +01:00
|
|
|
params: { id: this.item.id }
|
2024-03-26 01:17:07 +01:00
|
|
|
})
|
2018-12-15 09:56:09 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|