owntone-server/web-src/src/pages/PageComposer.vue

108 lines
2.6 KiB
Vue
Raw Normal View History

2021-10-23 10:48:11 +01:00
<template>
<div>
<content-with-heading>
<template #heading-left>
<p class="title is-4">
{{ name }}
</p>
2021-10-23 10:48:11 +01:00
</template>
<template #heading-right>
2021-10-23 10:48:11 +01:00
<div class="buttons is-centered">
<a
class="button is-small is-light is-rounded"
@click="show_composer_details_modal = true"
>
<span class="icon"
><i class="mdi mdi-dots-horizontal mdi-18px"
/></span>
2021-10-23 10:48:11 +01:00
</a>
<a class="button is-small is-dark is-rounded" @click="play">
<span class="icon"><i class="mdi mdi-shuffle" /></span>
<span>Shuffle</span>
2021-10-23 10:48:11 +01:00
</a>
</div>
</template>
<template #content>
<p class="heading has-text-centered-mobile">
{{ albums_list.total }} albums |
<a class="has-text-link" @click="open_tracks">tracks</a>
</p>
<list-albums :albums="albums_list" :hide_group_title="true" />
<modal-dialog-composer
:show="show_composer_details_modal"
:composer="{ name: name }"
@close="show_composer_details_modal = false"
/>
2021-10-23 10:48:11 +01:00
</template>
</content-with-heading>
</div>
</template>
<script>
2022-02-19 06:18:01 +01:00
import ContentWithHeading from '@/templates/ContentWithHeading.vue'
import ListAlbums from '@/components/ListAlbums.vue'
2022-02-19 06:18:01 +01:00
import ModalDialogComposer from '@/components/ModalDialogComposer.vue'
2021-10-23 10:48:11 +01:00
import webapi from '@/webapi'
import { GroupByList } from '@/lib/GroupByList'
2021-10-23 10:48:11 +01:00
2022-02-19 06:18:01 +01:00
const dataObject = {
2021-10-23 10:48:11 +01:00
load: function (to) {
2021-12-30 11:15:14 +00:00
return webapi.library_composer(to.params.composer)
2021-10-23 10:48:11 +01:00
},
set: function (vm, response) {
vm.name = vm.$route.params.composer
vm.albums_list = new GroupByList(response.data.albums)
2021-10-23 10:48:11 +01:00
}
}
export default {
name: 'PageComposer',
components: {
ContentWithHeading,
ListAlbums,
ModalDialogComposer
},
beforeRouteEnter(to, from, next) {
dataObject.load(to).then((response) => {
next((vm) => dataObject.set(vm, response))
})
},
beforeRouteUpdate(to, from, next) {
const vm = this
dataObject.load(to).then((response) => {
dataObject.set(vm, response)
next()
})
},
2021-10-23 10:48:11 +01:00
data() {
2021-10-23 10:48:11 +01:00
return {
name: '',
albums_list: new GroupByList(),
2021-10-23 10:48:11 +01:00
show_composer_details_modal: false
}
},
methods: {
open_tracks: function () {
this.$router.push({
name: 'ComposerTracks',
params: { composer: this.name }
})
2021-10-23 10:48:11 +01:00
},
play: function () {
webapi.player_play_expression(
'composer is "' + this.name + '" and media_kind is music',
true
)
2021-10-23 10:48:11 +01:00
}
}
}
</script>
<style></style>