-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.js
217 lines (191 loc) · 5.46 KB
/
App.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
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
import AppLoading from 'expo-app-loading';
import * as Font from 'expo-font';
import * as Linking from 'expo-linking';
import { StatusBar } from 'expo-status-bar';
import React, { PureComponent } from 'react';
import { Animated } from 'react-native';
import {
fetchData,
getFilteredClients,
transformClientData,
transformControllerData,
} from './src/api/fetchUtils';
import StackNavigator from './src/components/navigation/StackNavigator';
import {
controllerTypes,
panelStates,
panelTransitionDuration,
CONTROLLER_URL,
UPDATE_INTERVAL,
STATUS_URL,
} from './src/config/constants.json';
export default class App extends PureComponent {
// Initialize component state and fetch manager
state = {
clientDataUrls: [],
fontsLoaded: false,
isLoading: false,
clients: [],
focusedClient: {},
polygonCoords: {},
filters: {
clientTypes: {
PILOT: true,
ATC: true,
},
controllerTypes: Object.fromEntries(
Object.keys(controllerTypes).map(key => [key, true]),
),
aircraft: '',
airline: '',
airport: '',
},
panelPosition: new Animated.Value(panelStates.COLLAPSED),
panelPositionValue: panelStates.COLLAPSED,
};
componentDidMount() {
this.fetchClientDataUrls();
}
componentDidUpdate(_, prevState) {
const { clientDataUrls } = this.state;
if (!prevState.clientDataUrls.length && clientDataUrls.length) {
this.fetchAllData(true);
}
}
componentWillUnmount() {
if (this.timer) clearTimeout(this.timer);
}
setAsyncState = async newState => {
await new Promise(resolve => this.setState({ ...newState }, resolve));
};
setFilters = newFilters =>
this.setState(({ filters: oldFilters }) => ({
filters: {
...oldFilters,
...newFilters,
},
}));
setFocusedClient = focusedClient => {
this.setPanelPosition(panelStates[`EXPANDED_${focusedClient.type}`]);
this.setState({ focusedClient });
};
setPanelPosition(newPosition) {
// Animate info panel position change
const { panelPosition } = this.state;
Animated.timing(panelPosition, {
toValue: newPosition,
duration: panelTransitionDuration,
useNativeDriver: true,
}).start();
this.setState({
panelPositionValue: newPosition,
});
}
collapsePanel = () => {
const { panelPositionValue } = this.state;
// Check if panel is collapsed, exit app if it is
if (panelPositionValue === panelStates.COLLAPSED) {
return false;
}
// Collapse panel and remove focused client
this.setPanelPosition(panelStates.COLLAPSED);
this.setState({
focusedClient: {},
});
return true;
};
loadFonts = async () => {
/* eslint-disable global-require */
await Font.loadAsync({
Roboto_Regular: require('./assets/fonts/Roboto/Roboto-Regular.ttf'),
Roboto_Condensed_Regular: require('./assets/fonts/Roboto_Condensed/RobotoCondensed-Regular.ttf'),
Roboto_Mono: require('./assets/fonts/Roboto_Mono/RobotoMono-Regular.ttf'),
});
/* eslint-enable global-require */
};
fetchClientDataUrls = async () => {
const status = await fetchData(
STATUS_URL,
'Unable to fetch client data URL',
);
await this.setAsyncState({
clientDataUrls: status?.data?.v3 || [],
});
};
fetchControllerData = async isInitialFetch => {
const controllerData = await fetchData(
CONTROLLER_URL,
isInitialFetch ? 'Unable to fetch ARTCC data' : '',
);
this.setAsyncState({
polygonCoords: transformControllerData(controllerData?.data),
});
};
fetchClientData = async () => {
const { clientDataUrls, polygonCoords } = this.state;
const clientData = await fetchData(
clientDataUrls,
'Unable to fetch client data',
);
await this.setAsyncState({
clients: transformClientData(clientData, polygonCoords),
});
};
fetchAllData = async isInitialFetch => {
const { polygonCoords } = this.state;
this.setState({ isLoading: true });
if (!Object.keys(polygonCoords).length) {
await this.fetchControllerData(isInitialFetch);
}
await this.fetchClientData();
this.setState({ isLoading: false });
if (this.timer) clearTimeout(this.timer);
this.timer = setTimeout(() => this.fetchAllData(), UPDATE_INTERVAL);
};
render() {
const {
clients,
filters,
fontsLoaded,
isLoading,
focusedClient,
polygonCoords,
panelPosition,
} = this.state;
const filteredClients = getFilteredClients(clients, filters);
// Otherwise show top-level view
return (
<>
{fontsLoaded ? (
<StackNavigator
uriPrefix={Linking.makeUrl('/')}
screenProps={{
isLoading,
filters,
filteredClients,
focusedClient,
polygonCoords,
panelPosition,
updateData: this.fetchAllData,
setFilters: this.setFilters,
setFocusedClient: this.setFocusedClient,
collapsePanel: this.collapsePanel,
}}
/>
) : (
<AppLoading
startAsync={this.loadFonts}
onFinish={() =>
this.setState({
fontsLoaded: true,
})
}
onError={console.warn}
/>
)}
{/* eslint-disable-next-line react/style-prop-object */}
<StatusBar style="light" />
</>
);
}
}