2018-01-11 11:33:36 +00:00
|
|
|
/* eslint strict: 0, no-var: 0 */
|
2016-10-09 19:14:02 +00:00
|
|
|
"use strict";
|
|
|
|
|
2016-06-07 17:56:49 +00:00
|
|
|
/*
|
|
|
|
* This is a separate file for two reasons:
|
|
|
|
* 1. CSP policy does not allow inline javascript
|
|
|
|
* 2. It has to be a small javascript executed before all other scripts,
|
|
|
|
* so that the timeout can be triggered while slow JS is loading
|
|
|
|
*/
|
|
|
|
|
2017-12-16 23:14:58 +00:00
|
|
|
(function() {
|
2018-07-13 07:37:39 +00:00
|
|
|
const msg = document.getElementById("loading-page-message");
|
|
|
|
|
|
|
|
if (msg) {
|
|
|
|
msg.textContent = "Loading the app…";
|
|
|
|
|
|
|
|
document.getElementById("loading-reload").addEventListener("click", function() {
|
|
|
|
location.reload(true);
|
|
|
|
});
|
|
|
|
}
|
2017-10-28 20:50:57 +00:00
|
|
|
|
2017-12-16 23:14:58 +00:00
|
|
|
var displayReload = function displayReload() {
|
|
|
|
var loadingReload = document.getElementById("loading-reload");
|
2018-02-20 07:28:04 +00:00
|
|
|
|
2017-12-16 23:14:58 +00:00
|
|
|
if (loadingReload) {
|
2017-10-28 20:50:57 +00:00
|
|
|
loadingReload.style.visibility = "visible";
|
2017-12-16 23:14:58 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
var loadingSlowTimeout = setTimeout(function() {
|
|
|
|
var loadingSlow = document.getElementById("loading-slow");
|
|
|
|
|
|
|
|
// The parent element, #loading, is being removed when the app is loaded.
|
|
|
|
// Since the timer is not cancelled, `loadingSlow` can be not found after
|
|
|
|
// 5s. Wrap everything in this block to make sure nothing happens if the
|
|
|
|
// element does not exist (i.e. page has loaded).
|
|
|
|
if (loadingSlow) {
|
2017-10-28 20:50:57 +00:00
|
|
|
loadingSlow.style.visibility = "visible";
|
2017-12-16 23:14:58 +00:00
|
|
|
displayReload();
|
|
|
|
}
|
|
|
|
}, 5000);
|
|
|
|
|
|
|
|
window.g_LoungeErrorHandler = function LoungeErrorHandler(e) {
|
|
|
|
var message = document.getElementById("loading-page-message");
|
2018-03-16 22:44:19 +00:00
|
|
|
message.textContent = "An error has occurred that prevented the client from loading correctly.";
|
2017-12-16 23:14:58 +00:00
|
|
|
|
|
|
|
var summary = document.createElement("summary");
|
|
|
|
summary.textContent = "More details";
|
|
|
|
|
|
|
|
var data = document.createElement("pre");
|
|
|
|
data.textContent = e.message; // e is an ErrorEvent
|
|
|
|
|
|
|
|
var info = document.createElement("p");
|
|
|
|
info.textContent = "Open the developer tools of your browser for more information.";
|
|
|
|
|
|
|
|
var details = document.createElement("details");
|
|
|
|
details.appendChild(summary);
|
|
|
|
details.appendChild(data);
|
|
|
|
details.appendChild(info);
|
|
|
|
message.parentNode.insertBefore(details, message.nextSibling);
|
|
|
|
|
|
|
|
window.clearTimeout(loadingSlowTimeout);
|
2017-12-16 21:19:51 +00:00
|
|
|
displayReload();
|
2017-12-16 23:14:58 +00:00
|
|
|
};
|
2017-05-09 13:12:12 +00:00
|
|
|
|
2017-12-16 23:14:58 +00:00
|
|
|
window.addEventListener("error", window.g_LoungeErrorHandler);
|
2018-06-05 12:29:43 +00:00
|
|
|
|
|
|
|
// Trigger early service worker registration
|
|
|
|
if ("serviceWorker" in navigator) {
|
|
|
|
navigator.serviceWorker.register("service-worker.js");
|
|
|
|
}
|
2017-12-16 23:14:58 +00:00
|
|
|
})();
|