mirror of
https://github.com/owntone/owntone-server.git
synced 2025-01-22 12:13:18 -05:00
611c989b91
All icons, usually next to a text, are now centered vertically.
117 lines
2.9 KiB
Vue
117 lines
2.9 KiB
Vue
<template>
|
|
<div class="fd-page">
|
|
<content-with-heading>
|
|
<template #heading-left>
|
|
<p class="title is-4" v-text="composer.name" />
|
|
</template>
|
|
<template #heading-right>
|
|
<div class="buttons is-centered">
|
|
<a
|
|
class="button is-small is-light is-rounded"
|
|
@click="show_composer_details_modal = true"
|
|
>
|
|
<mdicon class="icon" name="dots-horizontal" size="16" />
|
|
</a>
|
|
<a class="button is-small is-dark is-rounded" @click="play">
|
|
<mdicon class="icon" name="shuffle" size="16" />
|
|
<span v-text="$t('page.composer.shuffle')" />
|
|
</a>
|
|
</div>
|
|
</template>
|
|
<template #content>
|
|
<p class="heading has-text-centered-mobile">
|
|
<span
|
|
v-text="
|
|
$t('page.composer.album-count', { count: composer.album_count })
|
|
"
|
|
/>
|
|
<span> | </span>
|
|
<a
|
|
class="has-text-link"
|
|
@click="open_tracks"
|
|
v-text="
|
|
$t('page.composer.track-count', { count: composer.track_count })
|
|
"
|
|
/>
|
|
</p>
|
|
<list-albums :albums="albums_list" :hide_group_title="true" />
|
|
<modal-dialog-composer
|
|
:show="show_composer_details_modal"
|
|
:composer="composer"
|
|
@close="show_composer_details_modal = false"
|
|
/>
|
|
</template>
|
|
</content-with-heading>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import ContentWithHeading from '@/templates/ContentWithHeading.vue'
|
|
import ListAlbums from '@/components/ListAlbums.vue'
|
|
import ModalDialogComposer from '@/components/ModalDialogComposer.vue'
|
|
import webapi from '@/webapi'
|
|
import { GroupByList } from '@/lib/GroupByList'
|
|
|
|
const dataObject = {
|
|
load(to) {
|
|
return Promise.all([
|
|
webapi.library_composer(to.params.composer),
|
|
webapi.library_composer_albums(to.params.composer)
|
|
])
|
|
},
|
|
|
|
set(vm, response) {
|
|
vm.composer = response[0].data
|
|
vm.albums_list = new GroupByList(response[1].data.albums)
|
|
}
|
|
}
|
|
|
|
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()
|
|
})
|
|
},
|
|
|
|
data() {
|
|
return {
|
|
composer: {},
|
|
albums_list: new GroupByList(),
|
|
show_composer_details_modal: false
|
|
}
|
|
},
|
|
|
|
methods: {
|
|
open_tracks() {
|
|
this.$router.push({
|
|
name: 'ComposerTracks',
|
|
params: { composer: this.composer.name }
|
|
})
|
|
},
|
|
|
|
play() {
|
|
webapi.player_play_expression(
|
|
'composer is "' + this.composer.name + '" and media_kind is music',
|
|
true
|
|
)
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style></style>
|