2017-12-01 16:29:50 +01:00
|
|
|
import dateformat from 'dateformat';
|
2017-12-01 17:32:06 +01:00
|
|
|
import '../elements/time';
|
2017-12-01 16:29:50 +01:00
|
|
|
|
|
|
|
function getEvents(number) {
|
|
|
|
const now = new Date();
|
2017-12-04 13:33:33 +01:00
|
|
|
const allEvents = window.c_base_events.concat(window.c_base_regulars, window.c_base_seminars);
|
2017-12-01 16:29:50 +01:00
|
|
|
const current = allEvents.filter((event) => {
|
2017-12-04 13:33:33 +01:00
|
|
|
if (event.id === 45) {
|
|
|
|
return false;
|
|
|
|
}
|
2017-12-01 16:29:50 +01:00
|
|
|
const start = new Date(event.start);
|
2017-12-01 23:00:44 +01:00
|
|
|
if ((!event.data || event.allDay) && start.toDateString() !== now.toDateString()) {
|
2017-12-01 20:33:43 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
const end = new Date(event.end);
|
2017-12-01 16:29:50 +01:00
|
|
|
if (start > now) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (end < now) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
});
|
|
|
|
const upcoming = allEvents.filter((event) => {
|
2017-12-04 13:33:33 +01:00
|
|
|
if (event.id === 45) {
|
|
|
|
return false;
|
|
|
|
}
|
2017-12-01 16:29:50 +01:00
|
|
|
const start = new Date(event.start);
|
|
|
|
if (start > now) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
|
|
|
|
const events = current.concat(upcoming);
|
|
|
|
events.sort((a, b) => {
|
|
|
|
if (a.start < b.start) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
if (a.start > b.start) {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
});
|
|
|
|
return events.slice(0, number);
|
|
|
|
}
|
|
|
|
|
|
|
|
let prevDate = new Date();
|
|
|
|
function renderEvent(event, container) {
|
|
|
|
const now = new Date();
|
|
|
|
const row = document.createElement('tr');
|
|
|
|
const time = document.createElement('td');
|
|
|
|
time.className = 'time';
|
|
|
|
const destination = document.createElement('td');
|
|
|
|
destination.className = 'destination';
|
|
|
|
const code = document.createElement('td');
|
|
|
|
code.className = 'code';
|
|
|
|
const status = document.createElement('td');
|
|
|
|
status.className = 'status';
|
|
|
|
const startDate = new Date(event.start);
|
|
|
|
const pad = (t) => {
|
|
|
|
let val = `${t}`;
|
|
|
|
if (val.length === 1) {
|
|
|
|
val = `0${val}`;
|
|
|
|
}
|
|
|
|
if (val.length === 2) {
|
|
|
|
val = `0${val}`;
|
|
|
|
}
|
|
|
|
return val;
|
|
|
|
};
|
|
|
|
const timeFormat = 'HH:MM';
|
|
|
|
if (event.allDay) {
|
|
|
|
time.innerHTML = '--:--';
|
|
|
|
} else {
|
|
|
|
time.innerHTML = dateformat(startDate, timeFormat);
|
|
|
|
}
|
|
|
|
|
2017-12-01 17:32:06 +01:00
|
|
|
code.innerHTML = `C${pad(event.id)}`;
|
2017-12-01 16:29:50 +01:00
|
|
|
destination.innerHTML = event.title;
|
|
|
|
|
|
|
|
if (startDate.toDateString() !== prevDate.toDateString()) {
|
2017-12-01 18:00:31 +01:00
|
|
|
status.innerHTML = dateformat(startDate, 'dd.mm.');
|
2017-12-01 16:29:50 +01:00
|
|
|
}
|
|
|
|
if (startDate.toDateString() === now.toDateString()) {
|
|
|
|
row.classList.add('today');
|
|
|
|
if (startDate < now) {
|
|
|
|
status.innerHTML = 'Ongoing';
|
|
|
|
status.classList.add('ongoing');
|
|
|
|
} else {
|
|
|
|
status.innerHTML = 'Today';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
row.appendChild(status);
|
|
|
|
row.appendChild(time);
|
|
|
|
row.appendChild(destination);
|
|
|
|
row.appendChild(code);
|
|
|
|
container.appendChild(row);
|
|
|
|
prevDate = startDate;
|
|
|
|
}
|
|
|
|
|
2017-12-01 16:40:04 +01:00
|
|
|
function render() {
|
2017-12-01 16:29:50 +01:00
|
|
|
const table = document.getElementById('events');
|
2017-12-01 16:40:04 +01:00
|
|
|
while (table.firstChild) {
|
|
|
|
table.removeChild(table.firstChild);
|
|
|
|
}
|
2017-12-01 16:29:50 +01:00
|
|
|
const events = getEvents(17);
|
|
|
|
events.forEach(event => renderEvent(event, table));
|
|
|
|
}
|
2017-12-01 16:40:04 +01:00
|
|
|
|
|
|
|
function onPageReady() {
|
|
|
|
window.removeEventListener('load', onPageReady, false);
|
|
|
|
render();
|
|
|
|
setInterval(render, 30000);
|
|
|
|
}
|
2017-12-01 16:29:50 +01:00
|
|
|
window.addEventListener('load', onPageReady, false);
|