mirror of
https://github.com/owntone/owntone-server.git
synced 2025-04-15 16:48:22 -04:00
153 lines
3.9 KiB
Vue
153 lines
3.9 KiB
Vue
<template>
|
|
<div>
|
|
<content-with-heading>
|
|
<template #options>
|
|
<index-button-list :indices="tracks.indices" />
|
|
<div class="columns">
|
|
<div class="column">
|
|
<div
|
|
class="is-size-7 is-uppercase"
|
|
v-text="$t('options.sort.title')"
|
|
/>
|
|
<control-dropdown
|
|
v-model:value="uiStore.composerTracksSort"
|
|
:options="groupings"
|
|
/>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
<template #heading-left>
|
|
<heading-title :content="heading" />
|
|
</template>
|
|
<template #heading-right>
|
|
<control-button
|
|
:button="{ handler: openDetails, icon: 'dots-horizontal' }"
|
|
/>
|
|
<control-button
|
|
:button="{ handler: play, icon: 'shuffle', key: 'actions.shuffle' }"
|
|
/>
|
|
</template>
|
|
<template #content>
|
|
<list-tracks :items="tracks" :expression="expression" />
|
|
<modal-dialog-composer
|
|
:item="composer"
|
|
:show="showDetailsModal"
|
|
@close="showDetailsModal = false"
|
|
/>
|
|
</template>
|
|
</content-with-heading>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import ContentWithHeading from '@/templates/ContentWithHeading.vue'
|
|
import ControlButton from '@/components/ControlButton.vue'
|
|
import ControlDropdown from '@/components/ControlDropdown.vue'
|
|
import { GroupedList } from '@/lib/GroupedList'
|
|
import HeadingTitle from '@/components/HeadingTitle.vue'
|
|
import IndexButtonList from '@/components/IndexButtonList.vue'
|
|
import ListTracks from '@/components/ListTracks.vue'
|
|
import ModalDialogComposer from '@/components/ModalDialogComposer.vue'
|
|
import { useUIStore } from '@/stores/ui'
|
|
import webapi from '@/webapi'
|
|
|
|
const dataObject = {
|
|
load(to) {
|
|
return Promise.all([
|
|
webapi.library_composer(to.params.name),
|
|
webapi.library_composer_tracks(to.params.name)
|
|
])
|
|
},
|
|
set(vm, response) {
|
|
vm.composer = response[0].data
|
|
vm.trackList = new GroupedList(response[1].data.tracks)
|
|
}
|
|
}
|
|
|
|
export default {
|
|
name: 'PageComposerTracks',
|
|
components: {
|
|
ContentWithHeading,
|
|
ControlButton,
|
|
ControlDropdown,
|
|
HeadingTitle,
|
|
IndexButtonList,
|
|
ListTracks,
|
|
ModalDialogComposer
|
|
},
|
|
beforeRouteEnter(to, from, next) {
|
|
dataObject.load(to).then((response) => {
|
|
next((vm) => dataObject.set(vm, response))
|
|
})
|
|
},
|
|
setup() {
|
|
return { uiStore: useUIStore() }
|
|
},
|
|
data() {
|
|
return {
|
|
composer: {},
|
|
showDetailsModal: false,
|
|
trackList: new GroupedList()
|
|
}
|
|
},
|
|
computed: {
|
|
expression() {
|
|
return `composer is "${this.composer.name}" and media_kind is music`
|
|
},
|
|
groupings() {
|
|
return [
|
|
{
|
|
id: 1,
|
|
name: this.$t('options.sort.name'),
|
|
options: { index: { field: 'title_sort', type: String } }
|
|
},
|
|
{
|
|
id: 2,
|
|
name: this.$t('options.sort.rating'),
|
|
options: {
|
|
criteria: [{ field: 'rating', order: -1, type: Number }],
|
|
index: { field: 'rating', type: 'Digits' }
|
|
}
|
|
}
|
|
]
|
|
},
|
|
heading() {
|
|
if (this.composer.name) {
|
|
return {
|
|
subtitle: [
|
|
{
|
|
count: this.composer.album_count,
|
|
handler: this.openAlbums,
|
|
key: 'count.albums'
|
|
},
|
|
{ count: this.composer.track_count, key: 'count.tracks' }
|
|
],
|
|
title: this.composer.name
|
|
}
|
|
}
|
|
return {}
|
|
},
|
|
tracks() {
|
|
const { options } = this.groupings.find(
|
|
(grouping) => grouping.id === this.uiStore.composerTracksSort
|
|
)
|
|
return this.trackList.group(options)
|
|
}
|
|
},
|
|
methods: {
|
|
openAlbums() {
|
|
this.$router.push({
|
|
name: 'music-composer-albums',
|
|
params: { name: this.composer.name }
|
|
})
|
|
},
|
|
openDetails() {
|
|
this.showDetailsModal = true
|
|
},
|
|
play() {
|
|
webapi.player_play_expression(this.expression, true)
|
|
}
|
|
}
|
|
}
|
|
</script>
|