forked from TerriaJS/TerriaMap
-
Notifications
You must be signed in to change notification settings - Fork 10
/
entry.js
49 lines (43 loc) · 1.62 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
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();