-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_controller.jsx
417 lines (399 loc) · 16 KB
/
_controller.jsx
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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
import React, { PureComponent } from 'react'
import sift from 'sift'
import { useHistory } from 'react-router-dom'
import { Button, LinearProgress, Badge } from 'react-md'
import { OlReact, SingleFeatureSelector } from '../../modules/ol-react'
import { clusterLayer, terrestrisBaseMap } from '../../modules/atlas/layers'
import { clusterSource } from '../../modules/atlas/sources'
import { clusterStyle1, clusterStyle2 } from '../../modules/atlas/styles'
import { SideMenu, SideMenuFilter, GlobalStateContext } from '../../modules/shared-components'
import ApplySitesFilter from './_apply-sites-filter'
import FeatureDetail from './_feature-detail'
import downloadMapData from './_download'
import getFeatureIds from './_feature-ids'
const buttonStyle = disabled => ({
color: disabled ? 'rgba(255,255,255,0.3)' : 'rgba(255,255,255,1)',
})
const mainMenuIconStyle = disabled => ({
color: disabled ? 'rgba(0,0,0,0.3)' : 'rgba(0,0,0,1)',
backgroundColor: disabled ? 'rgba(0,0,0,0.3)' : 'rgba(255,255,255,0.7)',
})
const badgeStyle = disabled => ({
color: disabled ? 'rgba(0,0,0,0.3)' : 'rgba(0,0,0,1)',
})
let timer
function resizeMap() {
clearTimeout(timer)
timer = setTimeout(() => this.updateSize(), 1000)
}
const badgeContainer = {
position: 'absolute',
right: 0,
zIndex: 21,
borderRadius: '100%',
margin: `10px 10px`,
padding: '5px',
}
class AtlasController extends PureComponent {
constructor(props) {
super(props)
// Specify the data
const data = {}
this.data = data
data.sites = props.data.sites
data.xrefSitesNetworks = props.data.xrefSitesNetworks
data.networks = props.data.networks.filter(
sift({ id: { $in: data.xrefSitesNetworks.map(x => x.network_id) } })
)
data.xrefNetworksVariables = props.data.xrefNetworksVariables.filter(
sift({ network_id: { $in: data.networks.map(x => x.id) } })
)
data.variables = props.data.variables.filter(
sift({ id: { $in: data.xrefNetworksVariables.map(x => x.variable_id) } })
)
data.xrefProtocolsVariables = props.data.xrefProtocolsVariables.filter(
sift({ variable_id: { $in: data.variables.map(v => v.id) } })
)
data.protocols = props.data.protocols.filter(
sift({ id: { $in: data.xrefProtocolsVariables.map(x => x.protocol_id) } })
)
// Create layers
this.clusteredSites = clusterSource({ data: data.sites, locAttribute: 'xyz' })
this.clusteredSitesLayer = clusterLayer({
source: this.clusteredSites,
id: 'sites',
style: clusterStyle1,
})
this.layers = [this.clusteredSitesLayer, terrestrisBaseMap()]
}
componentDidMount() {
setTimeout(() => window.dispatchEvent(new Event('resize-map')), 100)
}
render() {
const { layers, data, props } = this
const { history } = props
const {
sites,
networks,
variables,
protocols,
xrefSitesNetworks,
xrefNetworksVariables,
xrefProtocolsVariables,
} = data
return (
<GlobalStateContext.Consumer>
{({
updateGlobalState,
selectedSites,
selectedNetworks,
selectedVariables,
selectedProtocols,
searchResults,
loadingSearchResults,
searchErrors,
}) => {
const searchResultLength =
searchErrors?.length || 0
? 0
: searchResults
?.map(r => r?.result?.result_length || 0)
.reduce((sum, val) => sum + val, 0)
return (
<OlReact
viewOptions={{
zoom: 3.5,
}}
style={{ position: 'absolute', top: 0, bottom: 0, left: 0, right: 0 }}
layers={layers}
>
{({ map }) => {
// This makes the map redraw when the sidenav changes sizes
window.removeEventListener('resize-map', resizeMap)
window.addEventListener('resize-map', resizeMap.bind(map))
return (
<ApplySitesFilter
sites={sites}
selectedSites={selectedSites}
selectedNetworks={selectedNetworks}
selectedVariables={selectedVariables}
selectedProtocols={selectedProtocols}
xrefSitesNetworks={xrefSitesNetworks}
xrefNetworksVariables={xrefNetworksVariables}
xrefProtocolsVariables={xrefProtocolsVariables}
updateMapLayer={({ source }) => this.clusteredSitesLayer.setSource(source)}
>
{/* Display a progress bar while search is loading */}
<LinearProgress
id="loading-progress-indicator"
style={Object.assign(
{ margin: 0, position: 'absolute' },
loadingSearchResults
? {}
: {
display: 'none',
}
)}
/>
{/* Side Filter menu */}
<SideMenu
toolbarActions={[
<Button
key={0}
disabled={
selectedSites.length ||
selectedNetworks.length ||
selectedVariables.length ||
selectedProtocols.length
? false
: true
}
primary
onClick={() =>
updateGlobalState({
selectedSites: [],
selectedNetworks: [],
selectedVariables: [],
selectedProtocols: [],
})
}
icon
>
refresh
</Button>,
]}
control={({ toggleMenu }) => (
<Button
className="sf-side-menu"
tooltipLabel="Filter"
tooltipPosition="left"
style={{
position: 'absolute',
top: 0,
right: 0,
margin: '10px',
zIndex: 21,
}}
swapTheming
primary
icon
onClick={toggleMenu}
>
filter_list
</Button>
)}
>
<SideMenuFilter
sites={sites}
networks={networks}
variables={variables}
protocols={protocols}
/>
</SideMenu>
{/* Feature click panel, all shown features, WITH menu */}
<SideMenu
style={{ minWidth: '100%', overflowY: 'auto', zIndex: 999 }}
control={({ toggleMenu }) => (
<Button
tooltipLabel="View site info"
tooltipPosition="left"
swapTheming
primary
style={{
position: 'absolute',
top: 50,
right: 0,
margin: '10px',
zIndex: 21,
}}
icon
onClick={toggleMenu}
>
bar_chart
</Button>
)}
>
<div style={{ padding: 0, height: 'calc(100% - 67px)' }}>
<FeatureDetail
toolbarActions={[]}
getFeatureIds={() => getFeatureIds({ map })}
map={map}
/>
</div>
</SideMenu>
{/* Reset buton */}
<Button
tooltipLabel="Reset the filter selection"
tooltipPosition="left"
style={Object.assign(
[
...selectedSites,
...selectedNetworks,
...selectedVariables,
...selectedProtocols,
].length > 0
? {}
: {
backgroundColor: 'grey',
color: 'black',
opacity: 0.4,
},
{ position: 'absolute', top: 100, right: 0, margin: '10px', zIndex: 21 }
)}
swapTheming
primary
icon
disabled={
[
...selectedSites,
...selectedNetworks,
...selectedVariables,
...selectedProtocols,
].length > 0
? false
: true
}
onClick={() =>
updateGlobalState({
selectedSites: [],
selectedNetworks: [],
selectedVariables: [],
selectedProtocols: [],
})
}
>
refresh
</Button>
{/* Search results error button */}
<div style={{ ...badgeContainer, bottom: 0 }}>
<Badge
style={searchErrors?.length > 0 ? {} : { display: 'none' }}
key={89}
badgeStyle={badgeStyle(searchErrors?.length > 0 ? false : true)}
badgeContent={searchErrors?.length || -1}
badgeId={'search-results-errors'}
>
<Button
style={mainMenuIconStyle(searchErrors?.length ? false : true)}
disabled={searchErrors?.length ? false : true}
tooltipLabel={`${searchErrors?.length} error${
searchErrors?.length === 1 ? '' : 's'
} occurred searching metadata`}
onClick={() =>
alert(
'Please alert SEACRIFOG administrators that search errors are occurring'
)
}
icon
>
error
</Button>
</Badge>
</div>
{/* Search results button */}
<div style={{ ...badgeContainer, bottom: 0 }}>
<Badge
style={searchErrors?.length < 1 ? {} : { display: 'none' }}
key={91}
badgeStyle={badgeStyle(searchResultLength > 0 ? false : true)}
badgeContent={
searchResults
?.map(r => r?.result?.result_length || 0)
.reduce((sum, val) => sum + val, 0) || -1
}
badgeId={'search-results-notification'}
>
<Button
tooltipLabel={`Organizations searched: ${
searchResults?.length
}. Records found: ${searchResults
?.map(r => r.result.result_length)
.reduce((sum, val) => sum + val, 0)}`}
tooltipPosition="left"
disabled={searchResultLength > 0 ? false : true}
style={mainMenuIconStyle(searchResultLength > 0 ? false : true)}
onClick={() => history.push(`/search-results`)}
icon
>
storage
</Button>
</Badge>
</div>
{/* Feature click panel (individual feature, no menu) */}
<SingleFeatureSelector
map={map}
unselectedStyle={clusterStyle1}
selectedStyle={clusterStyle2}
onFeatureSelect={selectedFeature =>
updateGlobalState({
selectedSites: selectedFeature
.get('features')
.map(feature => feature.get('id')),
})
}
>
{({ selectedFeature, unselectFeature }) =>
selectedFeature ? (
<div
style={{
zIndex: 1,
position: 'absolute',
margin: '12px 0 12px 12px',
top: 0,
bottom: 0,
left: 0,
right: 64,
display: selectedFeature ? 'inherit' : 'none',
opacity: 0.8,
}}
>
<FeatureDetail
toolbarActions={[
<Button
key={0}
tooltipLabel={'Download data for selected features'}
disabled={
selectedFeature.get('features').length > 500 ? true : false
}
onClick={async () =>
downloadMapData({
ids: selectedFeature
.get('features')
.map(feature => feature.get('id')),
})
}
icon
style={buttonStyle(
selectedFeature.get('features').length > 500 ? true : false
)}
>
save_alt
</Button>,
<Button key={1} onClick={() => unselectFeature()} icon>
close
</Button>,
]}
getFeatureIds={() =>
selectedFeature.get('features').map(feature => feature.get('id'))
}
/>
</div>
) : (
''
)
}
</SingleFeatureSelector>
</ApplySitesFilter>
)
}}
</OlReact>
)
}}
</GlobalStateContext.Consumer>
)
}
}
export default ({ ...props }) => {
const history = useHistory()
return <AtlasController {...props} history={history} />
}