forked from TerriaJS/TerriaMap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathentry.js
41 lines (36 loc) · 1.26 KB
/
entry.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
import globeGif from "./lib/Styles/globe.gif";
import "./lib/Styles/loader.css";
async function loadMainScript() {
return import("terriajs/lib/Core/prerequisites")
.then(() => import("./index"))
.then(({ default: terriaPromise }) => terriaPromise);
}
function createLoader() {
const loaderDiv = document.createElement("div");
loaderDiv.classList.add("loader-ui");
const loaderGif = document.createElement("img");
loaderGif.src = globeGif;
const loaderLeft = document.createElement("div");
loaderLeft.classList.add("loader-ui-left");
const loaderGrabber = document.createElement("div");
loaderGrabber.classList.add("loader-ui-grabber");
const loaderRight = document.createElement("div");
loaderRight.classList.add("loader-ui-right");
loaderRight.appendChild(loaderGif);
loaderDiv.appendChild(loaderLeft);
loaderDiv.appendChild(loaderRight);
loaderDiv.appendChild(loaderGrabber);
loaderDiv.style.backgroundColor = "#383F4D";
document.body.appendChild(loaderDiv);
loadMainScript()
.catch((_err) => {
// Ignore errors and try to show the map anyway
})
.then(() => {
loaderDiv.classList.add("loader-ui-hide");
setTimeout(() => {
document.body.removeChild(loaderDiv);
}, 2000);
});
}
createLoader();