// sets variable source to the animalTemplate id in index.html
var source = document.getElementById("PTGtemplate").innerHTML;
// Handlebars compiles the above source into a template
var template = Handlebars.compile(source);
Handlebars.registerHelper('trackContentLine', function(options) {
var words = options.fn(this).split(" ");
var sentence = "";
for (var i = 0; i < words.length; i++) {
if (words[i].startsWith("#")) {
sentence += ''
+ words[i].substring(1) + '';
} else if (words[i].match(/^https?:\/\//)) {
sentence += ''
+ words[i] + '';
} else {
sentence += words[i];
}
sentence += ' ';
}
return new Handlebars.SafeString(sentence);
});
Handlebars.registerHelper('roomactive',
function(schedule, room, times) {
for (var i=0; i' + track;
}
Handlebars.registerHelper('trackbadge',
function(track) {
return new Handlebars.SafeString(track_badge(track));
});
Handlebars.registerHelper('roomcode',
function(schedule, room, timecode, s) {
var cell = '';
if (schedule[room][timecode] != undefined) {
if (schedule[room][timecode] == "") {
if (s == 1) {
cell = 'Available for booking';
} else {
cell = '' + room + "-" + timecode + '';
}
} else {
cell = track_badge(schedule[room][timecode]);
}
}
return new Handlebars.SafeString(cell);
});
// What is the day today ?
var now = new Date();
var days = ['Sunday','Monday','Tuesday','Wednesday','Thursday','Friday','Saturday'];
var day = days[ now.getDay() ];
var checkins = {};
$.getJSON("ptg.json", function(json) {
if ('last_check_in' in json) {
// Compile lists of who's checked into each location
for (var attendee in json['last_check_in']) {
var checkin = json['last_check_in'][attendee];
if (checkin.location) {
if (checkin['in'] && ! checkin['out']) {
if (! (checkin.location in checkins)) {
checkins[checkin.location] = [];
}
checkins[checkin.location].push(checkin);
}
}
}
}
json['checkins'] = checkins;
document.getElementById("PTGsessions").innerHTML = template(json);
// if the current day doesn't exist, default to first existing one
if ($('#st'+day).length == 0) {
for (var i = 0; i < days.length; i++) {
if ($('#st'+days[i]).length) {
day = days[i];
break;
}
}
}
$('#st'+day).tab('show');
$('#at'+day).tab('show');
});