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

101 lines
2.8 KiB
Vue
Raw Normal View History

<template>
2022-02-19 06:18:01 +01:00
<div class="fd-page-with-tabs">
<tabs-music></tabs-music>
<!-- Recently added -->
<content-with-heading>
2022-02-19 06:18:01 +01:00
<template v-slot:heading-left>
<p class="title is-4">Recently added</p>
<p class="heading">albums</p>
</template>
2022-02-19 06:18:01 +01:00
<template v-slot:content>
<list-albums :albums="recently_added.items"></list-albums>
</template>
2022-02-19 06:18:01 +01:00
<template v-slot:footer>
<nav class="level">
<p class="level-item">
<a class="button is-light is-small is-rounded" v-on:click="open_browse('recently_added')">Show more</a>
</p>
</nav>
</template>
</content-with-heading>
<!-- Recently played -->
<content-with-heading>
2022-02-19 06:18:01 +01:00
<template v-slot:heading-left>
<p class="title is-4">Recently played</p>
<p class="heading">tracks</p>
</template>
2022-02-19 06:18:01 +01:00
<template v-slot:content>
<list-tracks :tracks="recently_played.items"></list-tracks>
</template>
2022-02-19 06:18:01 +01:00
<template v-slot:footer>
<nav class="level">
<p class="level-item">
<a class="button is-light is-small is-rounded" v-on:click="open_browse('recently_played')">Show more</a>
</p>
</nav>
</template>
</content-with-heading>
</div>
</template>
<script>
2022-02-19 06:18:01 +01:00
import ContentWithHeading from '@/templates/ContentWithHeading.vue'
import TabsMusic from '@/components/TabsMusic.vue'
import ListAlbums from '@/components/ListAlbums.vue'
import ListTracks from '@/components/ListTracks.vue'
import webapi from '@/webapi'
2022-02-19 06:18:01 +01:00
const dataObject = {
load: function (to) {
return Promise.all([
webapi.search({ type: 'album', expression: 'time_added after 8 weeks ago and media_kind is music having track_count > 3 order by time_added desc', limit: 3 }),
webapi.search({ type: 'track', expression: 'time_played after 8 weeks ago and media_kind is music order by time_played desc', limit: 3 })
])
},
set: function (vm, response) {
vm.recently_added = response[0].data.albums
vm.recently_played = response[1].data.tracks
}
}
export default {
name: 'PageBrowse',
components: { ContentWithHeading, TabsMusic, ListAlbums, ListTracks },
data () {
return {
recently_added: { items: [] },
recently_played: { items: [] },
show_track_details_modal: false,
selected_track: {}
}
},
methods: {
open_browse: function (type) {
this.$router.push({ path: '/music/browse/' + type })
}
2022-02-19 06:18:01 +01:00
},
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()
})
}
}
</script>
<style>
</style>