-
Notifications
You must be signed in to change notification settings - Fork 0
/
AirPollMain.js
290 lines (276 loc) · 6.4 KB
/
AirPollMain.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
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
import * as firebase from 'firebase/app';
import 'firebase/firestore';
import './nouislider.css'; //for webpack dependency tree
import { firebaseCredentials } from './FirebaseCredentials';
import { initDVController, filteredDataPointListener } from './DataVisualisationController';
import { initFilterPanel, addDataPoint } from './Filter';
function initApp() {
const dataPointsDbRef = initDatabase();
const map = initMap();
initDVController(map);
// Used to easily add mock data points to database
addMapClickListener(map, dataPointsDbRef);
initFilterPanel(filteredDataPointListener);
addDatabaseListener(dataPointsDbRef, addDataPoint);
addMapThemeController(map);
}
// Used in google maps library loaded callback
window.initApp = initApp;
function initDatabase() {
const config = firebaseCredentials(); //Firebase API keys
firebase.initializeApp(config);
firebase.firestore().settings({timestampsInSnapshots: true});
firebase.firestore().enablePersistence({experimentalTabSynchronization: true})
.catch(function (err) {
console.error('Failed offline persistence: ', err.code);
});
return firebase.firestore().collection('data');
}
function initMap() {
return new google.maps.Map(document.getElementById('map'), {
center: {lat: 50.9365, lng: -1.396},
zoom: 15,
//hide points of interest and public transport
styles: mapDarkThemeStyle,
disableDoubleClickZoom: true,
streetViewControl: false,
fullscreenControl: false,
});
}
function addMapClickListener(map, dataPointsDbRef) {
map.addListener('click', function (mapLayer) {
getRandomValues((treatment, sensorID) => {
const dataPoint = {
lat: mapLayer.latLng.lat(),
lng: mapLayer.latLng.lng(),
value: Math.floor((Math.random() * 100)).toString(),
timestamp: Date.now(),
sensorID: sensorID,
treatment: treatment,
};
addNewDataPointClickToDb(dataPointsDbRef, dataPoint);
});
});
}
function getRandomValues(callback) {
let randomVal = Math.random();
let treatment = randomVal < 0.3 ? 'A' :
randomVal < 0.7 ? 'B' : 'C';
let sensorID = 'test' + randomVal.toString()[2] + treatment;
callback(treatment, sensorID);
}
function addNewDataPointClickToDb(dataPointsDbRef, dataPoint) {
dataPointsDbRef.add(dataPoint).then(function (docRef) {
console.log('Document written with ID: ', docRef.id);
}).catch(function (error) {
console.error('Error adding document: ', error);
});
}
// Gets all data points from database (oldest first) and new data points as they are added
function addDatabaseListener(dataPointsDbRef, callback) {
dataPointsDbRef.orderBy('timestamp', 'asc').onSnapshot(function (snapshot) {
snapshot.docChanges().forEach(function (docChange) {
if (docChange.type === 'added') {
callback(docChange.doc.data());
}
});
});
}
// todo: will eventually move to new theme controller file (with more themes)
function addMapThemeController(map) {
const toggleThemeButton = document.getElementById('toggleTheme');
toggleThemeButton.onclick = function () {
let showDarkTheme = (toggleThemeButton.innerText === 'Switch to Dark Theme');
// Set toggle button text
toggleThemeButton.innerText = showDarkTheme ? 'Switch to Light Theme' : 'Switch to Dark Theme';
// Set map theme
map.setOptions({styles: showDarkTheme ? mapDarkThemeStyle : mapLightThemeStyle});
// Set text color
document.body.style.color = showDarkTheme ? '#ffffff' : '#33333375';
// Set panel background
let panels = document.getElementsByClassName('panel');
for (let panel of panels) {
if (showDarkTheme) {
panel.classList.add('darkPanel');
} else {
panel.classList.remove('darkPanel');
}
}
};
}
const mapLightThemeStyle = [
{
featureType: 'poi',
stylers: [{visibility: 'off'}],
}, {
featureType: 'transit.station',
stylers: [{visibility: 'off'}],
},
];
const mapDarkThemeStyle = [
{
'featureType': 'all',
'elementType': 'labels.text.fill',
'stylers': [
{
'saturation': 36,
},
{
'color': '#000000',
},
{
'lightness': 40,
},
],
},
{
'featureType': 'all',
'elementType': 'labels.text.stroke',
'stylers': [
{
'visibility': 'on',
},
{
'color': '#000000',
},
{
'lightness': 16,
},
],
},
{
'featureType': 'all',
'elementType': 'labels.icon',
'stylers': [
{
'visibility': 'off',
},
],
},
{
'featureType': 'administrative',
'elementType': 'geometry.fill',
'stylers': [
{
'color': '#000000',
},
{
'lightness': 20,
},
],
},
{
'featureType': 'administrative',
'elementType': 'geometry.stroke',
'stylers': [
{
'color': '#000000',
},
{
'lightness': 17,
},
{
'weight': 1.2,
},
],
},
{
'featureType': 'landscape',
'elementType': 'geometry',
'stylers': [
{
'color': '#000000',
},
{
'lightness': 20,
},
],
},
{
'featureType': 'poi',
'elementType': 'geometry',
'stylers': [
{
'color': '#000000',
},
{
'lightness': 21,
},
],
},
{
'featureType': 'road.highway',
'elementType': 'geometry.fill',
'stylers': [
{
'color': '#000000',
},
{
'lightness': 17,
},
],
},
{
'featureType': 'road.highway',
'elementType': 'geometry.stroke',
'stylers': [
{
'color': '#000000',
},
{
'lightness': 29,
},
{
'weight': 0.2,
},
],
},
{
'featureType': 'road.arterial',
'elementType': 'geometry',
'stylers': [
{
'color': '#000000',
},
{
'lightness': 18,
},
],
},
{
'featureType': 'road.local',
'elementType': 'geometry',
'stylers': [
{
'color': '#000000',
},
{
'lightness': 16,
},
],
},
{
'featureType': 'transit',
'elementType': 'geometry',
'stylers': [
{
'color': '#000000',
},
{
'lightness': 19,
},
],
},
{
'featureType': 'water',
'elementType': 'geometry',
'stylers': [
{
'color': '#000000',
},
{
'lightness': 17,
},
],
},
];