Presentations are sort of showing up correctly now. Need to get rid of duplicates and other things still.

This commit is contained in:
Scott Idem
2020-01-31 23:54:30 -05:00
parent f01dfe7317
commit c285483cec
3 changed files with 148 additions and 5 deletions

View File

@@ -236,8 +236,8 @@
const open_tables_loop_interval = 10; // only runs on start up
const update_idb_loop_interval = 500; // loop forever; update when check datetime has passed
const idb_to_launcher_loop_interval = 1000; // loop forever; only run when one or more tables are updated
const update_render_loop_interval = 1000; // loop forever; only run when the launcher object is safe
const idb_to_launcher_loop_interval = 5000; // loop forever; only run when one or more tables are updated
const update_render_loop_interval = 10000; // loop forever; only run when the launcher object is safe
const check_file_cache_loop_interval = 250; // loop forever; only run after the event_file table has updated
// Axios needs to authenticate first
@@ -390,7 +390,6 @@
safe_to_render_launcher = false; // Set to false so that the launcher render only starts after the launcher object has updated
idb_event_session_check_datetime = Date.now() + idb_event_session_check_period;
let render_event_session_records_result = uiv2.render_event_session_records(); // NOTE: v2 idb to ui
//ui.index_launcher_sessions('btn_view_session'); // NOTE: This should probably go in module_app_ui_v2.js
}
if (idb_event_presentation_check_datetime < Date.now()) {
@@ -402,6 +401,7 @@
run_idb_to_launcher = true; // Set to true so that the launcher object is rebuilt
safe_to_render_launcher = false; // Set to false so that the launcher render only starts after the launcher object has updated
idb_event_presentation_check_datetime = Date.now() + idb_event_presentation_check_period;
let render_event_presentation_records_result = uiv2.render_event_presentation_records(); // NOTE: v2 idb to ui
}
if (idb_event_presenter_check_datetime < Date.now()) {