1
0
Fork 0
mirror of https://github.com/Kunsi/pretalx-plugin-broadcast-tools synced 2025-04-29 02:40:59 +00:00

room info: add option to show next talk if no talk is running

This commit is contained in:
Franziska Kunsmann 2023-03-01 13:55:54 +01:00
parent 0486cd44da
commit 788273e870
5 changed files with 50 additions and 10 deletions

View file

@ -8,8 +8,6 @@ function get_current_talk(max_offset) {
return null;
}
current_talk = null;
for (let offset = 0; offset <= max_offset; offset++) {
time_start = new Date(Date.now() + offset*60000).getTime();
time_end = new Date(Date.now() - offset*60000).getTime();
@ -26,17 +24,39 @@ function get_current_talk(max_offset) {
talk_end = new Date(talk['end']).getTime();
if (talk_start < time_start && talk_end > time_end) {
current_talk = talk;
break;
return talk;
}
}
if (current_talk) {
break;
}
}
return current_talk;
return null;
}
function get_next_talk() {
room_name = get_room_name();
if (!room_name) {
return null;
}
time_start = new Date(Date.now()).getTime();
for (talk_i in schedule['talks']) {
talk = schedule['talks'][talk_i]
if (schedule['rooms'].length > 1 && talk['room'] != room_name) {
// not in this room
continue;
}
talk_start = new Date(talk['start']).getTime();
if (talk_start > time_start) {
return talk;
}
}
return null;
}
function get_room_name() {

View file

@ -41,6 +41,8 @@ function update_room_info() {
}
current_talk = get_current_talk(15);
next_talk = get_next_talk();
if (current_talk) {
if (event_info['room-info']['lower_info'] == 'feedback_qr') {
qr_info = '<img src="' + current_talk['urls']['feedback_qr'] + '" alt="Feedback QR Code"><p>Leave Feedback by scanning the code or visiting ' + current_talk['urls']['feedback'] + '</p>';
@ -59,8 +61,14 @@ function update_room_info() {
} else {
$('#broadcast_tools_room_info_roomname').text(event_info['name']);
$('#broadcast_tools_room_info_title').text(room_name);
$('#broadcast_tools_room_info_speaker').text('');
$('#broadcast_tools_room_info_qr').text('');
if (next_talk && event_info['room-info']['show_next_talk']) {
next_time = new Date(next_talk['start']);
$('#broadcast_tools_room_info_speaker').text(next_time.getHours() + ':' + next_time.getMinutes() + ' ' + next_talk['title']);
} else {
$('#broadcast_tools_room_info_speaker').text('');
}
}
if (current_talk && current_talk['track']) {