/* * 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 = []; this.request_sent = false; }; rh.ShowList.prototype.fetch = function() { var self = this; this.request_sent = true; self.$this.trigger('pre-update'); $.getJSON( "/pv-export/timeslots_specials/", function(data) { self.shows = []; $.each(data, function(showid, showdata) { console.log(showdata); var show = new rh.Show(showdata); self.shows.push(show); }); self.$this.trigger('update'); }).fail(function() { alert("Error") }).always(function() { self.request_sent = false; }); }; rh.Show = function(show) { this.id = show.id; this.title = show.title; this.pv_id = show.pv_id this.pv_name = show.pv_name this.pv_start = new Date(show.start); this.pv_end = new Date(show.start); }; /***************** views *****************/ var showListView = null; rh.ShowListView = function(model) { this.model = model; this.showViews = []; var self = this; $(this.model).on('pre-update', function() { self.render_loading(); }); $(this.model).on('update', function() { self.render_list(); }); this.model.fetch(); }; rh.ShowListView.prototype.render_list = function() { $('#loading').hide(); var list = $('#shows'); $('div.show', list).remove(); this.showViews = []; for (var i = 0; i < this.model.shows.length; i++) { var showView = new rh.ShowView(this.model.shows[i], this); this.showViews.push(showView); showView.render(); list.append(showView.$el); } list.show(); }; rh.ShowListView.prototype.render_loading = function() { $('#shows').hide(); $('#loading').show(); }; rh.ShowView = function(model, listView) { this.model = model; this.listView = listView; this.$el = $('
'); }; rh.ShowView.prototype.render = function() { var id = $('').addClass('show-start').text(this.model.id); var pvstr = "unused"; if(this.model.pv_id >= 0) { pvstr = this.model.pv_id + " | " + this.model.pv_name + " (" + this.model.pv_start + " - " + this.model.pv_end + ")"; } var len = $('').addClass('show-len').text(pvstr); var showlink = $('').attr('href', "https://import.helsinki.at/shows/" + this.model.id) .attr('target', "import").text(this.model.title); var title = $('').addClass('show-title').append(showlink); this.$el.empty().addClass('show').append(id).append(title).append(len); } /***************** controller *****************/ function specials_init() { shows = new rh.ShowList(); showListView = new rh.ShowListView(shows); }