mirror of
https://github.com/owntone/owntone-server.git
synced 2025-01-22 12:13:18 -05:00
387e531d64
Useless methods have been removed and code has been partially cleaned up.
67 lines
1.5 KiB
Vue
67 lines
1.5 KiB
Vue
<template>
|
|
<div class="fd-page-with-tabs">
|
|
<tabs-music />
|
|
<content-with-heading>
|
|
<template #heading-left>
|
|
<p
|
|
class="title is-4"
|
|
v-text="$t('page.browse.recently-played.title')"
|
|
/>
|
|
<p class="heading" v-text="$t('page.browse.recently-played.tracks')" />
|
|
</template>
|
|
<template #content>
|
|
<list-tracks :tracks="recently_played" />
|
|
</template>
|
|
</content-with-heading>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import ContentWithHeading from '@/templates/ContentWithHeading.vue'
|
|
import TabsMusic from '@/components/TabsMusic.vue'
|
|
import ListTracks from '@/components/ListTracks.vue'
|
|
import webapi from '@/webapi'
|
|
import { GroupByList } from '@/lib/GroupByList'
|
|
|
|
const dataObject = {
|
|
load(to) {
|
|
return webapi.search({
|
|
type: 'track',
|
|
expression:
|
|
'time_played after 8 weeks ago and media_kind is music order by time_played desc',
|
|
limit: 50
|
|
})
|
|
},
|
|
|
|
set(vm, response) {
|
|
vm.recently_played = new GroupByList(response.data.tracks)
|
|
}
|
|
}
|
|
|
|
export default {
|
|
name: 'PageBrowseType',
|
|
components: { ContentWithHeading, TabsMusic, 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_played: {}
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style></style>
|