-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.tsx
141 lines (116 loc) · 4.27 KB
/
App.tsx
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
import React from 'react';
import './App.css';
import { Map, TileLayer } from 'react-leaflet'
import { GeoJsonObject } from 'geojson';
import MapLegendContainer, { MapLegend } from './Legend';
import CountyData from './CountyData';
import { PercentileData, CensusMapData, Columns } from './Types';
import InfoBoxContainer, { InfoBox } from './InfoBox';
import { VariableSelector } from './VariableChanger';
import CountyModal from './CountyModal';
import ReactModal from "react-modal";
interface AppState {
activeCounty?: string;
activeCountyData?: CensusMapData;
// The name of the active column per the PostgreSQL db
column: string;
modalOpen: boolean;
data?: GeoJsonObject;
percentiles?: PercentileData;
}
class App extends React.Component<{}, AppState> {
constructor(props: {}) {
super(props);
this.updateActiveCounty = this.updateActiveCounty.bind(this);
this.updateActiveCountyData = this.updateActiveCountyData.bind(this);
this.state = {
column: "HC01_EST_VC55",
modalOpen: false
};
}
get currentColumn() {
let data = Columns.get(this.state.column);
if (!data) {
throw new Error("Invalid column");
}
return data;
}
get modal() {
const countyData = this.state.activeCountyData;
if (countyData && this.state.data) {
return (
<CountyModal
isOpen={this.state.modalOpen}
close={() => this.setState({ modalOpen: false })}
data={countyData}
numCounties={this.state.data['features'].length}
/>
);
}
return <></>
}
updateActiveCounty(geoId: string) {
this.setState({ activeCounty: geoId });
}
updateActiveCountyData(data: CensusMapData) {
this.setState({ activeCountyData: data });
}
componentDidMount() {
fetch('http://vincela.com:8000/map')
.then(response => response.json())
.then(data => this.setState({ data }));
fetch(`http://vincela.com:8000/percentiles/${this.state.column}`)
.then(response => response.json())
.then(data => this.setState({ percentiles: data }));
}
updateColumn(colName: string) {
this.setState({ column: colName });
fetch(`http://vincela.com:8000/percentiles/${colName}`)
.then(response => response.json())
.then(data => {
this.setState({ percentiles: data });
});
}
openModal() {
this.setState({ modalOpen: true });
}
render() {
const position: [number, number] = [37.8, -96];
const counties = this.state.data && this.state.percentiles ? <CountyData
activeCounty={this.state.activeCounty}
column={this.state.column}
data={this.state.data}
percentiles={this.state.percentiles}
openModal={this.openModal.bind(this)}
updateActiveCounty={this.updateActiveCounty}
updateActiveCountyData={this.updateActiveCountyData}
/> : <></>
ReactModal.setAppElement(document.getElementById("root"));
return (
<>
{this.modal}
<Map center={position} zoom={4}>
<TileLayer
url="https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png"
attribution="© <a href="http://osm.org/copyright">OpenStreetMap</a> contributors"
/>
{counties}
<InfoBoxContainer />
<MapLegendContainer />
<InfoBox
data={this.state.activeCountyData}
column={this.state.column}
columnData={this.currentColumn}
/>
<VariableSelector updateColumn={this.updateColumn.bind(this)} />
<MapLegend
data={this.state.activeCountyData}
column={this.state.column}
percentiles={this.state.percentiles}
/>
</Map>
</>
);
}
}
export default App;