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

102 lines
2.7 KiB
Vue

<template>
<div class="fd-page-with-tabs">
<tabs-music />
<!-- Recently added -->
<content-with-heading>
<template #heading-left>
<p class="title is-4" v-text="$t('page.music.recently-added.title')" />
</template>
<template #content>
<list-albums :items="recently_added" />
</template>
<template #footer>
<nav class="level">
<p class="level-item">
<router-link
class="button is-light is-small is-rounded"
:to="{ name: 'music-recently-added' }"
>
{{ $t('page.music.show-more') }}
</router-link>
</p>
</nav>
</template>
</content-with-heading>
<!-- Recently played -->
<content-with-heading>
<template #heading-left>
<p class="title is-4" v-text="$t('page.music.recently-played.title')" />
</template>
<template #content>
<list-tracks :items="recently_played" />
</template>
<template #footer>
<nav class="level">
<p class="level-item">
<router-link
class="button is-light is-small is-rounded"
:to="{ name: 'music-recently-played' }"
>
{{ $t('page.music.show-more') }}
</router-link>
</p>
</nav>
</template>
</content-with-heading>
</div>
</template>
<script>
import ContentWithHeading from '@/templates/ContentWithHeading.vue'
import { GroupedList } from '@/lib/GroupedList'
import ListAlbums from '@/components/ListAlbums.vue'
import ListTracks from '@/components/ListTracks.vue'
import TabsMusic from '@/components/TabsMusic.vue'
import webapi from '@/webapi'
const dataObject = {
load(to) {
return Promise.all([
webapi.search({
expression:
'time_added after 8 weeks ago and media_kind is music having track_count > 3 order by time_added desc',
limit: 3,
type: 'album'
}),
webapi.search({
expression:
'time_played after 8 weeks ago and media_kind is music order by time_played desc',
limit: 3,
type: 'track'
})
])
},
set(vm, response) {
vm.recently_added = new GroupedList(response[0].data.albums)
vm.recently_played = new GroupedList(response[1].data.tracks)
}
}
export default {
name: 'PageMusic',
components: { ContentWithHeading, ListAlbums, ListTracks, TabsMusic },
beforeRouteEnter(to, from, next) {
dataObject.load(to).then((response) => {
next((vm) => dataObject.set(vm, response))
})
},
data() {
return {
recently_added: [],
recently_played: { items: [] },
selected_track: {}
}
}
}
</script>
<style></style>