mirror of
https://github.com/owntone/owntone-server.git
synced 2025-01-23 04:33:17 -05:00
60 lines
1.3 KiB
Vue
60 lines
1.3 KiB
Vue
<template>
|
|
<div>
|
|
<content-with-heading>
|
|
<template #heading-left>
|
|
<p class="title is-4" v-text="$t('page.radio.title')" />
|
|
</template>
|
|
<template #content>
|
|
<p
|
|
class="heading has-text-centered-mobile"
|
|
v-text="$t('page.radio.count', { count: tracks.total })"
|
|
/>
|
|
<list-tracks :tracks="tracks" />
|
|
</template>
|
|
</content-with-heading>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import ContentWithHeading from '@/templates/ContentWithHeading.vue'
|
|
import ListTracks from '@/components/ListTracks.vue'
|
|
import webapi from '@/webapi'
|
|
import { GroupByList } from '@/lib/GroupByList'
|
|
|
|
const dataObject = {
|
|
load: function (to) {
|
|
return webapi.library_radio_streams()
|
|
},
|
|
|
|
set: function (vm, response) {
|
|
vm.tracks = new GroupByList(response.data.tracks)
|
|
}
|
|
}
|
|
|
|
export default {
|
|
name: 'PageRadioStreams',
|
|
components: { ContentWithHeading, 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 {
|
|
tracks: new GroupByList()
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style></style>
|