forked from NASA-AMMOS/MMGIS
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathApp.js
More file actions
124 lines (114 loc) · 3.63 KB
/
Copy pathApp.js
File metadata and controls
124 lines (114 loc) · 3.63 KB
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
import React from 'react'
import essence from './essence/essence'
import $ from 'jquery'
import LandingPage from './essence/LandingPage/LandingPage'
import F_ from './essence/Basics/Formulae_/Formulae_'
import calls from './pre/calls'
import UserInterfaceLayout from './essence/Basics/UserInterface_/components/Layout/UserInterfaceLayout'
import ToastRenderer from './design-system/components/Toast/ToastRenderer'
// Ensure useReactUI is always set (defensive fallback for non-standard bootstrap)
;(function () {
if (typeof window.mmgisglobal === 'undefined') window.mmgisglobal = {}
window.mmgisglobal.useReactUI = true
})()
//Start MMGIS
$(document).ready(function () {
const browser = F_.getBrowser()
if (browser === 'firefox') {
$('body').css({
'scrollbar-color': 'var(--color-a2) transparent',
'scrollbar-width': 'thin',
})
}
calls.api(
'get_generaloptions',
{},
function (resp) {
mmgisglobal.options = resp.options
initApp()
},
function (err) {
mmgisglobal.options = {}
initApp()
}
)
})
function initApp() {
if (window.mmgisglobal.FORCE_CONFIG_PATH) {
const u = window.location.href.split('?s=')
if (!u[1]) {
//Not a shortened URL
LandingPage.init(null, false, window.mmgisglobal.FORCE_CONFIG_PATH)
} else {
calls.api(
'shortener_expand',
{
short: u[1],
},
function (s) {
//Set and update the url
const url = u[0] + s.body.url
window.history.replaceState('', '', url)
LandingPage.init(
null,
false,
window.mmgisglobal.FORCE_CONFIG_PATH
)
},
function (e) {
LandingPage.init(
null,
true,
window.mmgisglobal.FORCE_CONFIG_PATH
)
}
)
}
} else {
calls.api(
'missions',
{},
function (s) {
const missions = (s.missions || [])
.slice()
.sort((a, b) => a.localeCompare(b, undefined, { sensitivity: 'base' }))
continueOn(missions)
},
function (e) {
continueOn([])
}
)
function continueOn(missions) {
const u = window.location.href.split('?s=')
if (!u[1]) {
//Not a shortened URL
LandingPage.init(missions)
} else {
calls.api(
'shortener_expand',
{
short: u[1],
},
function (s) {
//Set and update the url
const url = u[0] + s.body.url
window.history.replaceState('', '', url)
LandingPage.init(missions)
},
function (e) {
LandingPage.init(missions, true)
}
)
}
}
}
}
function App() {
return (
<div className='App'>
<UserInterfaceLayout />
<ToastRenderer />
</div>
)
}
export default App