mirror of
https://github.com/owntone/owntone-server.git
synced 2025-07-20 14:01:17 -04:00
101 lines
2.7 KiB
Vue
101 lines
2.7 KiB
Vue
<template>
|
|
<modal-dialog-playable
|
|
:buttons="buttons"
|
|
:item="playable"
|
|
:show="show"
|
|
@close="$emit('close')"
|
|
/>
|
|
</template>
|
|
|
|
<script>
|
|
import ModalDialogPlayable from '@/components/ModalDialogPlayable.vue'
|
|
import webapi from '@/webapi'
|
|
|
|
export default {
|
|
name: 'ModalDialogAlbum',
|
|
components: { ModalDialogPlayable },
|
|
props: {
|
|
item: { required: true, type: Object },
|
|
mediaKind: { default: '', type: String },
|
|
show: Boolean
|
|
},
|
|
emits: ['close', 'remove-podcast', 'play-count-changed'],
|
|
computed: {
|
|
buttons() {
|
|
if (this.media_kind_resolved === 'podcast') {
|
|
if (this.item.data_kind === 'url') {
|
|
return [
|
|
{ handler: this.markAsPlayed, key: 'actions.mark-as-played' },
|
|
{ handler: this.removePodcast, key: 'actions.remove-podcast' }
|
|
]
|
|
}
|
|
return [{ handler: this.markAsPlayed, key: 'actions.mark-as-played' }]
|
|
}
|
|
return []
|
|
},
|
|
media_kind_resolved() {
|
|
return this.mediaKind || this.item.media_kind
|
|
},
|
|
playable() {
|
|
return {
|
|
image: this.item.artwork_url,
|
|
name: this.item.name,
|
|
properties: [
|
|
{
|
|
handler: this.openArtist,
|
|
key: 'property.artist',
|
|
value: this.item.artist
|
|
},
|
|
{
|
|
key: 'property.release-date',
|
|
value: this.$filters.toDate(this.item.date_released)
|
|
},
|
|
{ key: 'property.year', value: this.item.year },
|
|
{ key: 'property.tracks', value: this.item.track_count },
|
|
{
|
|
key: 'property.duration',
|
|
value: this.$filters.toTimecode(this.item.length_ms)
|
|
},
|
|
{
|
|
key: 'property.type',
|
|
value: `${this.$t(`media.kind.${this.item.media_kind}`)} - ${this.$t(`data.kind.${this.item.data_kind}`)}`
|
|
},
|
|
{
|
|
key: 'property.added-on',
|
|
value: this.$filters.toDateTime(this.item.time_added)
|
|
}
|
|
],
|
|
uri: this.item.uri
|
|
}
|
|
}
|
|
},
|
|
methods: {
|
|
markAsPlayed() {
|
|
webapi
|
|
.library_album_track_update(this.item.id, { play_count: 'played' })
|
|
.then(() => {
|
|
this.$emit('play-count-changed')
|
|
this.$emit('close')
|
|
})
|
|
},
|
|
openArtist() {
|
|
this.$emit('close')
|
|
if (this.media_kind_resolved === 'audiobook') {
|
|
this.$router.push({
|
|
name: 'audiobooks-artist',
|
|
params: { id: this.item.artist_id }
|
|
})
|
|
} else {
|
|
this.$router.push({
|
|
name: 'music-artist',
|
|
params: { id: this.item.artist_id }
|
|
})
|
|
}
|
|
},
|
|
removePodcast() {
|
|
this.$emit('remove-podcast')
|
|
}
|
|
}
|
|
}
|
|
</script>
|