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

121 lines
3.1 KiB
Vue
Raw Normal View History

<template>
2022-02-19 06:18:01 +01:00
<div class="fd-page-with-tabs">
<tabs-music />
<!-- Recently added -->
<content-with-heading>
<template #heading-left>
2022-05-20 13:44:22 +02:00
<p class="title is-4" v-text="$t('page.browse.recently-added.title')" />
<p class="heading" v-text="$t('page.browse.albums')" />
</template>
<template #content>
<list-albums :albums="recently_added" />
</template>
<template #footer>
<nav class="level">
<p class="level-item">
<a
class="button is-light is-small is-rounded"
@click="open_browse('recently_added')"
v-text="$t('page.browse.show-more')"
/>
</p>
</nav>
</template>
</content-with-heading>
<!-- Recently played -->
<content-with-heading>
<template #heading-left>
<p
class="title is-4"
v-text="$t('page.browse.recently-played.title')"
/>
2022-05-20 13:44:22 +02:00
<p class="heading" v-text="$t('page.browse.tracks')" />
</template>
<template #content>
<list-tracks :tracks="recently_played.items" />
</template>
<template #footer>
<nav class="level">
<p class="level-item">
<a
class="button is-light is-small is-rounded"
@click="open_browse('recently_played')"
v-text="$t('page.browse.show-more')"
/>
</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'
import { GroupByList } from '@/lib/GroupByList'
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 = new GroupByList(response[0].data.albums)
vm.recently_played = response[1].data.tracks
}
}
export default {
name: 'PageBrowse',
components: { ContentWithHeading, TabsMusic, ListAlbums, ListTracks },
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 {
recently_added: [],
recently_played: { items: [] },
show_track_details_modal: false,
selected_track: {}
}
},
methods: {
open_browse: function (type) {
this.$router.push({ path: '/music/browse/' + type })
}
}
}
</script>
<style></style>