-
Notifications
You must be signed in to change notification settings - Fork 259
/
entry.js
61 lines (55 loc) · 1.65 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
const globeGif = require("./lib/Styles/globe.gif");
const polyfill = require("terriajs/lib/Core/polyfill");
require("./lib/Styles/loader.css");
function loadMainScript() {
// load the main chunk
return new Promise((resolve, reject) => {
require.ensure(
["terriajs/lib/Core/prerequisites"],
function (require) {
require("terriajs/lib/Core/prerequisites");
require.ensure(
["./index"],
function (require) {
resolve(require("./index"));
},
reject,
"index"
);
},
reject,
"index"
);
});
}
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);
polyfill(function () {
loadMainScript()
.catch(() => {
// Ignore errors and try to show the map anyway
})
.then(() => {
loaderDiv.classList.add("loader-ui-hide");
setTimeout(() => {
document.body.removeChild(loaderDiv);
}, 2000);
});
});
}
createLoader();