1
0
Fork 0
mirror of https://github.com/Findus23/RadioStats.git synced 2024-09-19 16:03:48 +02:00
RadioStats/web/List.vue

291 lines
9.3 KiB
Vue
Raw Normal View History

2018-02-08 19:06:40 +01:00
<template>
<div id="list">
<div id="channelSelector">
<router-link v-for="channel in channels" :key="channel.shortname"
:to="{ name: 'List', params: { channel: channel.shortname }}">
<img :src="require('./icons/'+icon(channel.shortname))"
:alt="channel.stationname" :title="channel.stationname"
:class="channel.has_data?[]:['noData']">
</router-link>
<!--
<audio controls>
<source :src="channel.streamurl +';'" type="audio/mpeg">
</audio>
-->
</div>
<header v-if="channelData"
:style="{backgroundColor:channelData.primary_color,color:channelData.secondary_color}">
<h2 v-if="channelData">{{channelData.stationname}}</h2>
2018-02-09 17:38:24 +01:00
<!--<h3>{{momentDate.calendar()}}</h3>-->
2018-02-08 19:06:40 +01:00
</header>
<main>
2018-02-09 16:09:29 +01:00
<div id="date" class="row">
<div class="column">
<datepicker language="de" v-model="date" :mondayFirst="true" :inline="true"
:highlighted="highlighted"></datepicker>
</div>
<div class="column">
<input type="radio" id="day" value="day" v-model="dateType">
<label class="label-inline" for="day">Tag</label>
<br>
<input type="radio" id="week" value="week" v-model="dateType">
<label class="label-inline" for="week">Woche</label>
<br>
<input type="radio" id="month" value="month" v-model="dateType">
<label class="label-inline" for="month">Monat</label>
<br>
<input type="radio" id="alltime" value="alltime" v-model="dateType">
<label class="label-inline" for="alltime">Gesamter Zeitraum</label>
</div>
</div>
2018-02-08 19:06:40 +01:00
<table>
<tr v-for="song in popular">
<td>{{song.song.title}}</td>
<td>{{song.song.artist}}</td>
<td>{{song.count}}</td>
</tr>
</table>
<div id="loadMore" role="button" v-on:click="getAdditional" v-if="showMore &&channelData">
Mehr anzeigen
</div>
<div id="httpError" v-if="httpError" class="message">
<strong>Beim Laden ist ein Fehler aufgetreten:</strong> {{httpError.message}}
</div>
<div id="noData" class="message" v-if="(!channelData||!channelData.has_data)&&!httpError">
<strong>Keine Daten!</strong> Leider gibt es für diesen Sender noch keine Daten.
</div>
</main>
</div>
</template>
<script>
import axios from "axios";
2018-02-09 17:38:24 +01:00
import moment from "moment";
import "moment/locale/de-at";
2018-02-09 16:09:29 +01:00
import Datepicker from 'vuejs-datepicker';
const baseURL = (process.env.NODE_ENV === "production") ? "/api/" : "http://127.0.0.1:5000/api/";
2018-02-08 19:06:40 +01:00
export default {
2018-02-09 16:09:29 +01:00
components: {Datepicker},
2018-02-08 19:06:40 +01:00
name: 'list',
data() {
return {
channels: [],
popular: [],
offset: 0,
showMore: true,
2018-02-09 16:09:29 +01:00
httpError: false,
date: new Date(),
dateType: "week",
highlighted: {
from: new Date(),
to: new Date(),
}
2018-02-08 19:06:40 +01:00
};
},
props: ["channel"],
computed: {
2018-02-09 16:09:29 +01:00
channelData: function () {
2018-02-08 19:06:40 +01:00
return this.channels[this.channel];
2018-02-09 17:38:24 +01:00
},
momentDate: function () {
return moment(this.date);
2018-02-08 19:06:40 +01:00
}
},
methods: {
2018-02-09 16:09:29 +01:00
getChannels: function () {
2018-02-08 19:06:40 +01:00
let vm = this;
2018-02-09 16:09:29 +01:00
axios.get(baseURL, {
2018-02-08 19:06:40 +01:00
params: {}
})
2018-02-09 16:09:29 +01:00
.then(function (response) {
2018-02-08 19:06:40 +01:00
vm.channels = response.data;
vm.getPopular();
})
2018-02-09 16:09:29 +01:00
.catch(function (error) {
2018-02-08 19:06:40 +01:00
vm.httpError = error;
});
},
2018-02-09 16:09:29 +01:00
getPopular: function () {
this.offset = 0;
this.showMore = true;
this.httpError = false;
2018-02-08 19:06:40 +01:00
if (!this.channelData || !this.channelData.has_data) {
this.popular = [];
return false;
}
let vm = this;
2018-02-09 16:09:29 +01:00
axios.get(baseURL + this.channel, {
params: {
2018-02-09 17:38:24 +01:00
date: vm.momentDate.format("YYYY-MM-DD"),
2018-02-09 16:09:29 +01:00
dateType: vm.dateType
}
2018-02-08 19:06:40 +01:00
})
2018-02-09 16:09:29 +01:00
.then(function (response) {
2018-02-08 19:06:40 +01:00
vm.offset += 5;
vm.popular = response.data;
2018-02-09 17:38:24 +01:00
if (response.data.length < 5) {
vm.showMore = false;
}
2018-02-08 19:06:40 +01:00
})
2018-02-09 16:09:29 +01:00
.catch(function (error) {
2018-02-08 19:06:40 +01:00
vm.httpError = error;
});
},
2018-02-09 16:09:29 +01:00
getAdditional: function () {
2018-02-08 19:06:40 +01:00
let vm = this;
2018-02-09 16:09:29 +01:00
axios.get(baseURL + this.channel, {
2018-02-08 19:06:40 +01:00
params: {
2018-02-09 16:09:29 +01:00
offset: vm.offset,
2018-02-09 17:38:24 +01:00
date: vm.momentDate.format("YYYY-MM-DD"),
2018-02-09 16:09:29 +01:00
dateType: vm.dateType
2018-02-08 19:06:40 +01:00
}
})
2018-02-09 16:09:29 +01:00
.then(function (response) {
2018-02-08 19:06:40 +01:00
vm.offset += 5;
vm.popular = vm.popular.concat(response.data);
if (response.data.length < 5) {
2018-02-09 16:09:29 +01:00
vm.showMore = false;
2018-02-08 19:06:40 +01:00
}
})
2018-02-09 16:09:29 +01:00
.catch(function (error) {
2018-02-08 19:06:40 +01:00
vm.httpError = error;
});
},
2018-02-09 16:09:29 +01:00
icon: function (id) {
2018-02-08 19:06:40 +01:00
if (id === "fm4" || id === "oe3") {
return id + ".svg";
} else {
return id + ".png";
}
2018-02-09 16:09:29 +01:00
},
updateSelection: function () {
let from, to;
2018-02-09 17:38:24 +01:00
let date = moment(this.date);
if (this.dateType !== "alltime") {
from = moment(date);
to =moment(date);
from.startOf(this.dateType);
to.endOf(this.dateType);
console.info(from.toString());
console.info(to.toString());
} else {
from = moment("2000-01-01");
to = moment("2025-01-01");
2018-02-09 16:09:29 +01:00
}
this.highlighted = {
2018-02-09 17:38:24 +01:00
"from": from.toDate(),
"to": to.toDate(),
2018-02-09 16:09:29 +01:00
};
2018-02-08 19:06:40 +01:00
}
},
watch: {
2018-02-09 16:09:29 +01:00
channel: function () {
this.getPopular();
},
dateType: function () {
this.updateSelection();
this.getPopular();
},
date: function () {
this.updateSelection();
this.getPopular();
2018-02-08 19:06:40 +01:00
}
2018-02-09 16:09:29 +01:00
2018-02-08 19:06:40 +01:00
},
2018-02-09 16:09:29 +01:00
mounted: function () {
2018-02-08 19:06:40 +01:00
this.getChannels();
2018-02-09 16:09:29 +01:00
this.updateSelection();
2018-02-08 19:06:40 +01:00
}
};
</script>
<style lang="scss">
@import "variables";
@import "node_modules/milligram/src/Color";
@import "node_modules/milligram/src/Utility";
body {
background-color: #ffffff;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='5' height='5'%3E%3Crect width='2.5' height='5' fill='white' /%3E%3Crect x='2.5' y='0' width='2.5' height='5' fill='%23f5f5f5' /%3E%3C/svg%3E");
font-family: -apple-system, "Helvetica Neue Light", "HelveticaNeue", "Helvetica Neue", "Roboto", "Liberation Sans", Arial, sans-serif;
color: #212121;
}
header {
padding: 2.5rem;
transition: color .2s, background-color .2s;
h2 {
font-weight: bold;
text-align: center;
margin: 0;
}
}
main {
background-color: white;
padding: 2rem;
}
#channelSelector {
margin: 16px 0;
display: flex;
justify-content: space-around;
a {
display: block;
img {
display: block;
width: 40px;
height: 40px;
transition: filter .2s;
&.noData:not(:hover) {
filter: grayscale(0.7);
}
}
}
}
table {
margin: 0;
}
#loadMore {
padding: 10px 0;
width: 100%;
text-align: center;
cursor: pointer;
transition: background-color .2s;
&:hover {
background-color: #eee;
}
}
.message {
width: 100%;
padding: 10px;
background-color: #eee;
}
#httpError {
background-color: $warning;
}
2018-02-09 16:09:29 +01:00
#date {
align-items: center;
.vdp-datepicker__calendar {
margin-right: 0;
margin-left: auto;
}
}
2018-02-08 19:06:40 +01:00
</style>