summaryrefslogtreecommitdiff
path: root/www/js/specials.js
blob: 668ab3e2fedb02de07a26e6c0b7ca63e4591807a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
/*
 *  rhrdweb
 *
 *  Copyright (C) 2016 Christian Pointner <equinox@helsinki.at>
 *
 *  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 <http://www.gnu.org/licenses/>.
 */

'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 = $('<div>');
};

rh.ShowView.prototype.render = function() {
  var id = $('<span>').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 = $('<span>').addClass('show-len').text(pvstr);

  var showlink = $('<a>').attr('href', "https://import.helsinki.at/shows/" + this.model.id)
                         .attr('target', "import").text(this.model.title);
  var title = $('<span>').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);
}