-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathprofileManager.js
285 lines (284 loc) · 6.96 KB
/
profileManager.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
/**
* @file Acts kind of like a content management system to conditionally inject the HTML sections for a given profile.
* This file is imported into webpack.common to conditionally load partials with template logic specified in profile.hbs
*
* For example, NGTL has no apportionment data, so this is set to false. If data becomes available, this can be set to true to
* immediately load that section based on the corresponding handlebars template for apportionment.
*
* Right now, each profile is hard coded. I kind of like it this way, because it reduces the chance of a
* section accidentally being loaded,and the boolean settings in this file are unlikely to change much once the project is complete.
*
* As more sections are added to the profiles, each featuring dynamic content, the need for a pattern like this becomes more clear.
* This looks like a bit of a mess, but its better than doing something like loading the HTML for each section,
* and then hiding the sections that are not needed for that profile based on the input company_data.
*
* There is still a bit of risk here because the true|false setting here should/need to match the {build: true|false} parameter in the
* data file for each pipeline & section. For example, if ngtl.traffic.map is accidentally set to false, the js
* in ../traffic/trafficDashboard.js may still try to load the dashboard, but it wont be able to find the required HTML id's.
*
* TODO: test what happens when the options in this file are entered incorrectly, and make sure that
* the js dashboard files handle it properly.
*
*/
export const pm = {
NGTL: {
commodity: "natural-gas",
name: "NOVA Gas Transmission Ltd. (NGTL)",
sections: {
traffic: { map: true, noMap: false },
apportion: false,
tolls: true,
safety: true,
},
},
Alliance: {
commodity: "natural-gas",
name: "Alliance Pipeline",
sections: {
traffic: { map: true, noMap: false },
tolls: true,
apportion: false,
safety: true,
},
},
TCPL: {
commodity: "natural-gas",
name: "TransCanada’s Canadian Mainline",
sections: {
traffic: { map: true, noMap: false },
apportion: false,
tolls: true,
safety: true,
},
},
Westcoast: {
commodity: "natural-gas",
name: "Westcoast Pipeline",
sections: {
traffic: { map: true, noMap: false },
apportion: false,
tolls: true,
safety: true,
},
},
Brunswick: {
commodity: "natural-gas",
name: "Emera Brunswick",
sections: {
traffic: { map: false, noMap: true },
apportion: false,
tolls: true,
safety: true,
},
},
MNP: {
commodity: "natural-gas",
name: "Maritimes & Northeast",
sections: {
traffic: { map: true, noMap: false },
apportion: false,
tolls: true,
safety: true,
},
},
ManyIslands: {
commodity: "natural-gas",
name: "Many Islands",
sections: {
traffic: { map: false, noMap: false },
apportion: false,
tolls: true,
safety: true,
},
},
TQM: {
commodity: "natural-gas",
name: "Trans Québec & Maritimes",
sections: {
traffic: { map: true, noMap: false },
apportion: false,
tolls: true,
safety: true,
},
},
Vector: {
commodity: "natural-gas",
name: "Vector",
sections: {
traffic: { map: false, noMap: false },
apportion: false,
tolls: true,
safety: true,
},
},
Foothills: {
commodity: "natural-gas",
name: "Foothills",
sections: {
traffic: { map: true, noMap: false },
apportion: false,
tolls: true,
safety: true,
},
},
EnbridgeMainline: {
commodity: "oil-and-liquids",
name: "Enbridge Canadian Mainline",
sections: {
traffic: { map: true, noMap: false },
apportion: true,
tolls: true,
safety: true,
},
},
EnbridgeLine9: {
commodity: "oil-and-liquids",
name: "Enbridge Line 9",
sections: {
traffic: { map: false, noMap: true },
apportion: false,
tolls: true,
safety: false,
},
},
Keystone: {
commodity: "oil-and-liquids",
name: "Keystone Pipeline",
sections: {
traffic: { map: true, noMap: false },
apportion: true,
tolls: true,
safety: true,
},
},
TransMountain: {
commodity: "oil-and-liquids",
name: "Trans Mountain",
sections: {
traffic: { map: true, noMap: false },
apportion: true,
tolls: true,
safety: true,
},
},
Cochin: {
commodity: "oil-and-liquids",
name: "Cochin Pipeline",
sections: {
traffic: { map: true, noMap: false },
apportion: true,
tolls: true,
safety: true,
},
},
SouthernLights: {
commodity: "oil-and-liquids",
name: "Southern Lights",
sections: {
traffic: { map: false, noMap: true },
apportion: false,
tolls: true,
safety: true,
},
},
EnbridgeBakken: {
commodity: "oil-and-liquids",
name: "Enbridge Bakken",
sections: {
traffic: { map: false, noMap: false },
apportion: false,
tolls: true,
safety: true,
},
},
NormanWells: {
commodity: "oil-and-liquids",
name: "Enbridge Norman Wells",
sections: {
traffic: { map: true, noMap: false },
apportion: true,
tolls: true,
safety: true,
},
},
Express: {
commodity: "oil-and-liquids",
name: "Express",
sections: {
traffic: { map: false, noMap: false },
apportion: false,
tolls: true,
safety: true,
},
},
TransNorthern: {
commodity: "oil-and-liquids",
name: "Trans-Northern",
sections: {
traffic: { map: false, noMap: true },
apportion: false,
tolls: true,
safety: true,
},
},
Genesis: {
commodity: "oil-and-liquids",
name: "Genesis",
sections: {
traffic: { map: false, noMap: false },
apportion: false,
tolls: true,
safety: true,
},
},
Montreal: {
commodity: "oil-and-liquids",
name: "Montreal",
sections: {
traffic: { map: false, noMap: true },
apportion: false,
tolls: true,
safety: true,
},
},
Westspur: {
commodity: "oil-and-liquids",
name: "Westspur",
sections: {
traffic: { map: false, noMap: true },
apportion: false,
tolls: true,
safety: true,
},
},
Aurora: {
commodity: "oil-and-liquids",
name: "Aurora",
sections: {
traffic: { map: false, noMap: false },
apportion: false,
tolls: true,
safety: true,
},
},
MilkRiver: {
commodity: "oil-and-liquids",
name: "Milk River",
sections: {
traffic: { map: false, noMap: false },
apportion: false,
tolls: true,
safety: true,
},
},
Wascana: {
commodity: "oil-and-liquids",
name: "Wascana",
sections: {
traffic: { map: false, noMap: false },
apportion: false,
tolls: true,
safety: true,
},
},
};