2021-10-23 10:48:11 +01:00
|
|
|
<template>
|
|
|
|
<div>
|
|
|
|
<content-with-heading>
|
2022-02-19 06:39:14 +01:00
|
|
|
<template #options>
|
|
|
|
<index-button-list :index="index_list" />
|
2022-02-19 06:18:01 +01:00
|
|
|
</template>
|
2022-02-19 06:39:14 +01:00
|
|
|
<template #heading-left>
|
|
|
|
<p class="title is-4">
|
|
|
|
{{ composer }}
|
|
|
|
</p>
|
2021-10-23 10:48:11 +01:00
|
|
|
</template>
|
2022-02-19 06:39:14 +01:00
|
|
|
<template #heading-right>
|
2021-10-23 10:48:11 +01:00
|
|
|
<div class="buttons is-centered">
|
2022-02-19 06:39:14 +01:00
|
|
|
<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">
|
2022-02-19 06:39:14 +01:00
|
|
|
<span class="icon"><i class="mdi mdi-shuffle" /></span>
|
|
|
|
<span>Shuffle</span>
|
2021-10-23 10:48:11 +01:00
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
</template>
|
2022-02-19 06:39:14 +01:00
|
|
|
<template #content>
|
|
|
|
<p class="heading has-text-centered-mobile">
|
|
|
|
<a class="has-text-link" @click="open_albums">albums</a> |
|
|
|
|
{{ tracks.total }} tracks
|
|
|
|
</p>
|
|
|
|
<list-item-track
|
|
|
|
v-for="(track, index) in rated_tracks"
|
|
|
|
:key="track.id"
|
|
|
|
:track="track"
|
|
|
|
@click="play_track(index)"
|
|
|
|
>
|
|
|
|
<template #actions>
|
2022-02-19 06:18:01 +01:00
|
|
|
<a @click.prevent.stop="open_dialog(track)">
|
2022-02-19 06:39:14 +01:00
|
|
|
<span class="icon has-text-dark"
|
|
|
|
><i class="mdi mdi-dots-vertical mdi-18px"
|
|
|
|
/></span>
|
2021-10-23 10:48:11 +01:00
|
|
|
</a>
|
|
|
|
</template>
|
|
|
|
</list-item-track>
|
2022-02-19 06:39:14 +01:00
|
|
|
<modal-dialog-track
|
|
|
|
:show="show_details_modal"
|
|
|
|
:track="selected_track"
|
|
|
|
@close="show_details_modal = false"
|
|
|
|
/>
|
|
|
|
<modal-dialog-composer
|
|
|
|
:show="show_composer_details_modal"
|
|
|
|
:composer="{ name: composer }"
|
|
|
|
@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 ListItemTrack from '@/components/ListItemTrack.vue'
|
|
|
|
import ModalDialogTrack from '@/components/ModalDialogTrack.vue'
|
|
|
|
import ModalDialogComposer from '@/components/ModalDialogComposer.vue'
|
2021-10-23 10:48:11 +01:00
|
|
|
import webapi from '@/webapi'
|
|
|
|
|
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_tracks(to.params.composer)
|
2021-10-23 10:48:11 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
set: function (vm, response) {
|
|
|
|
vm.composer = vm.$route.params.composer
|
|
|
|
vm.tracks = response.data.tracks
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default {
|
|
|
|
name: 'PageComposerTracks',
|
2022-02-19 06:39:14 +01:00
|
|
|
components: {
|
|
|
|
ContentWithHeading,
|
|
|
|
ListItemTrack,
|
|
|
|
ModalDialogTrack,
|
|
|
|
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
|
|
|
|
2022-02-19 06:39:14 +01:00
|
|
|
data() {
|
2021-10-23 10:48:11 +01:00
|
|
|
return {
|
|
|
|
tracks: { items: [] },
|
|
|
|
composer: '',
|
|
|
|
|
|
|
|
min_rating: 0,
|
|
|
|
|
|
|
|
show_details_modal: false,
|
|
|
|
selected_track: {},
|
|
|
|
|
|
|
|
show_composer_details_modal: false
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
computed: {
|
2022-02-19 06:39:14 +01:00
|
|
|
index_list() {
|
|
|
|
return [
|
|
|
|
...new Set(
|
|
|
|
this.tracks.items.map((track) =>
|
|
|
|
track.title_sort.charAt(0).toUpperCase()
|
|
|
|
)
|
|
|
|
)
|
|
|
|
]
|
2021-10-23 10:48:11 +01:00
|
|
|
},
|
|
|
|
|
2022-02-19 06:39:14 +01:00
|
|
|
rated_tracks() {
|
|
|
|
return this.tracks.items.filter(
|
|
|
|
(track) => track.rating >= this.min_rating
|
|
|
|
)
|
2021-10-23 10:48:11 +01:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
methods: {
|
|
|
|
open_albums: function () {
|
|
|
|
this.show_details_modal = false
|
2022-02-19 06:39:14 +01:00
|
|
|
this.$router.push({
|
|
|
|
name: 'ComposerAlbums',
|
|
|
|
params: { composer: this.composer }
|
|
|
|
})
|
2021-10-23 10:48:11 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
play: function () {
|
2022-02-19 06:39:14 +01:00
|
|
|
webapi.player_play_expression(
|
|
|
|
'composer is "' + this.composer + '" and media_kind is music',
|
|
|
|
true
|
|
|
|
)
|
2021-10-23 10:48:11 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
play_track: function (position) {
|
2022-02-19 06:39:14 +01:00
|
|
|
webapi.player_play_expression(
|
|
|
|
'composer is "' + this.composer + '" and media_kind is music',
|
|
|
|
false,
|
|
|
|
position
|
|
|
|
)
|
2021-10-23 10:48:11 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
show_rating: function (rating) {
|
|
|
|
if (rating === 0.5) {
|
|
|
|
rating = 0
|
|
|
|
}
|
|
|
|
this.min_rating = Math.ceil(rating) * 20
|
|
|
|
},
|
|
|
|
|
|
|
|
open_dialog: function (track) {
|
|
|
|
this.selected_track = track
|
|
|
|
this.show_details_modal = true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
2022-02-19 06:39:14 +01:00
|
|
|
<style></style>
|