owntone-server/web-src/src/pages/PageGenreAlbums.vue
2025-05-25 10:41:58 +02:00

110 lines
2.7 KiB
Vue

<template>
<content-with-heading>
<template #options>
<list-index-buttons :indices="albums.indices" />
</template>
<template #heading>
<pane-title :content="heading" />
</template>
<template #actions>
<control-button
:button="{ handler: openDetails, icon: 'dots-horizontal' }"
/>
<control-button
:button="{ handler: play, icon: 'shuffle', key: 'actions.shuffle' }"
/>
</template>
<template #content>
<list-albums :items="albums" />
</template>
</content-with-heading>
<modal-dialog-genre
:item="genre"
:media-kind="mediaKind"
:show="showDetailsModal"
@close="showDetailsModal = false"
/>
</template>
<script>
import ContentWithHeading from '@/templates/ContentWithHeading.vue'
import ControlButton from '@/components/ControlButton.vue'
import { GroupedList } from '@/lib/GroupedList'
import ListAlbums from '@/components/ListAlbums.vue'
import ListIndexButtons from '@/components/ListIndexButtons.vue'
import ModalDialogGenre from '@/components/ModalDialogGenre.vue'
import PaneTitle from '@/components/PaneTitle.vue'
import library from '@/api/library'
import queue from '@/api/queue'
export default {
name: 'PageGenreAlbums',
components: {
ContentWithHeading,
ControlButton,
ListAlbums,
ListIndexButtons,
ModalDialogGenre,
PaneTitle
},
beforeRouteEnter(to, from, next) {
Promise.all([
library.genre(to.params.name, to.query.mediaKind),
library.genreAlbums(to.params.name, to.query.mediaKind)
]).then(([genre, albums]) => {
next((vm) => {
vm.genre = genre.items.shift()
vm.albums = new GroupedList(albums, {
index: { field: 'name_sort', type: String }
})
})
})
},
data() {
return {
albums: new GroupedList(),
genre: {},
mediaKind: this.$route.query.mediaKind,
showDetailsModal: false
}
},
computed: {
heading() {
if (this.genre.name) {
return {
subtitle: [
{ count: this.genre.album_count, key: 'data.albums' },
{
count: this.genre.track_count,
handler: this.openTracks,
key: 'data.tracks'
}
],
title: this.genre.name
}
}
return {}
}
},
methods: {
openDetails() {
this.showDetailsModal = true
},
openTracks() {
this.showDetailsModal = false
this.$router.push({
name: 'genre-tracks',
params: { name: this.genre.name },
query: { mediaKind: this.mediaKind }
})
},
play() {
queue.playExpression(
`genre is "${this.genre.name}" and media_kind is ${this.mediaKind}`,
true
)
}
}
}
</script>