This repository has been archived by the owner on Jan 29, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
entry.js
64 lines (58 loc) · 2.89 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
62
63
64
/*©agpl*************************************************************************
* *
* Napkin Globe – Map-data interaction solution for the Napkin platform *
* Copyright (C) 2020 Napkin AS *
* *
* This program is free software: you can redistribute it and/or modify *
* it under the terms of the GNU Affero General Public License as published by *
* the Free Software Foundation, either version 3 of the License, or *
* (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU Affero General Public License for more details. *
* *
* You should have received a copy of the GNU Affero General Public License *
* along with this program. If not, see <http://www.gnu.org/licenses/>. *
* *
*****************************************************************************©*/
const globeGif = require('./lib/Styles/globe.gif');
require('./lib/Styles/loader.css');
function loadMainScript() {
// load the main chunk
return new Promise((resolve, reject) => {
require.ensure(['./index'], function(require) {
resolve(require('./index'));
}, function(error) {
reject(error);
}, '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.append(loaderGif);
loaderDiv.append(loaderLeft);
loaderDiv.append(loaderRight);
loaderDiv.append(loaderGrabber);
loaderDiv.style.backgroundColor ='#383F4D';
document.body.appendChild(loaderDiv);
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();