/* * rhrdweb * * Copyright (C) 2016 Christian Pointner * * This file is part of rhrdweb. * * rhrdweb is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published by * the Free Software Foundation, either version 3 of the License, or * any later version. * * rhrdweb is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with rhrdweb. If not, see . */ 'use strict'; var rh = rh || {}; /***************** models *****************/ var shows = null; rh.ShowList = function() { this.$this = $(this); this.shows = []; }; rh.ShowList.prototype.fetch = function() { var self = this; var yd = new Date((new Date()) - 24 * 3600 * 1000); var ydstr = yd.getFullYear() + '-' + Number(yd.getMonth() + 1).pad(2) + '-' + Number(yd.getDate()).pad(2); $.getJSON( "/rh-bin/schedules.json?DAYS=3&START=" + ydstr, function(data) { if(data.status == "OK") { self.shows = []; $(data.shows).each(function(index, showdata) { var show = new rh.Show(showdata); if(self.shows.length > 0) { if(self.shows[self.shows.length-1].end > show.start) { self.shows[self.shows.length-1].end = show.start; } } self.shows.push(show); }); self.$this.trigger('update'); } }); }; rh.Show = function(show) { this.id = show.id; this.title = show.title; this.start = new Date(show.start); this.len = show.len; this.end = new Date(this.start.valueOf() + show.len); }; /***************** views *****************/ var showListView = null; rh.ShowListView = function(model, len) { this.model = model; this.len = len; this.showViews = []; var self = this; $(this.model).on('update', function() { self.render(); }); this.model.fetch(); }; rh.ShowListView.prototype.render = function() { var list = $('#shows'); $('div.show', list).remove(); this.showViews = []; var now = clock.now(); for (var i = 0; i < this.model.shows.length; i++) { if((now.valueOf() + (this.model.shows[i].end.getTimezoneOffset() * 60000)) > this.model.shows[i].end) { continue; } var showView = new rh.ShowView(this.model.shows[i], this); this.showViews.push(showView); showView.render(); list.append(showView.$el); } }; rh.ShowView = function(model, listView) { this.model = model; this.listView = listView; this.$el = $('
'); }; rh.ShowView.prototype.render = function() { var startstr = "Beginn: " + format_time(this.model.start); var start = $('').addClass('show-start').text(startstr); var endstr = "Live"; if(this.model.len > 0) { endstr = "Ende: " + format_time(this.model.end); } var end = $('').addClass('show-end').text(endstr); var title = $('').addClass('show-title').text(this.model.title); this.$el.empty().addClass('show').append(start).append(end).append(title); } /***************** controller *****************/ function nextshows_init() { shows = new rh.ShowList(); showListView = new rh.ShowListView(shows, 10); setInterval("shows.fetch()", 5000); clock.addCallback(function() { showListView.render(); }); }