forked from esnet/react-timeseries-charts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyler.js
362 lines (342 loc) · 10.5 KB
/
styler.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
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
/**
* Copyright (c) 2016, The Regents of the University of California,
* through Lawrence Berkeley National Laboratory (subject to receipt
* of any required approvals from the U.S. Dept. of Energy).
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree.
*/
import _ from "underscore";
import colorbrewer from "colorbrewer";
/**
* For our Style we want to represent two things:
*
* 1. The overall style of an AreaChart should be consistent across a site
* 2. The specific style of a columnName (e.g. "pressure") should be consistent
*
* The overall style is implemented with methods specific to
* each chart type or entity:
*
* - lineChartStyle()
* - areaChartStyle()
* - legendStyle()
* - etc
*
* These will render out an object that can be passed into the
* charts themselves and will control the visual appearance,
* keyed by columnName. This abstracts away the SVG details of the
* underlying DOM elements.
*
* For the specific style we define here three out of the box parameters
* by which one column can be different from another when rendered:
* - color
* - width (of a line)
* - dashed or not
*
*/
export class Styler {
/**
* The columns define the style associated with a particular
* quantity, such as "inTraffic" or "temperature". The columns
* are an array, with each element being either a string, or
* and object defining the style.
*
* * Using a string makes the assumption that you want to use a
* color scheme, so you need to define that if you don't want the
* default. A color will be then assigned to each column based
* on the scheme. The string is the column name.
*
* * In the second case of providing an object, you define properties
* of the style yourself. Each object should contain a "key" property
* which is the column name and optionally the `width` and `dashed`
* property. If you don't supply the color, then the color
* will come from the scheme.
*
*/
constructor(columns, scheme = "Paired") {
this.columnStyles = {};
if (_.isArray(columns)) {
columns.forEach(column => {
if (_.isString(column)) {
this.columnStyles[column] = { key: column };
} else if (_.isObject(column)) {
const { key, ...style } = column;
this.columnStyles[key] = style;
}
});
}
this.columnNames = _.map(columns, c => {
const cc = _.isString(c) ? c : c.key;
return cc;
});
if (scheme && !_.has(colorbrewer, scheme)) {
throw new Error(
`Unknown scheme '${scheme}' supplied to Style constructor`
);
}
this.colorScheme = scheme;
}
numColumns() {
return this.columnNames.length;
}
/**
* Returns the color scheme with the appropiate number of colors.
* If there are more columns than the largest set in the scheme then
* just the largest scheme set will be returned.
* @param {number} columnCount The number of columns to apply the scheme to
* @return {array} An array with the scheme colors in it.
*/
colorLookup(columnCount) {
const maxSchemeSize = _.max(_.keys(colorbrewer[this.colorScheme]));
const colorLookupSize = columnCount > maxSchemeSize
? maxSchemeSize
: columnCount;
return this.colorScheme
? colorbrewer[this.colorScheme][colorLookupSize]
: [];
}
/**
*/
legendStyle(column, type) {
const numColumns = this.numColumns();
const colorLookup = this.colorLookup(numColumns);
const i = _.indexOf(this.columnNames, column);
const columnName = this.columnNames[i];
const { color, width = 1, dashed = false } = this.columnStyles[columnName];
const c = color || colorLookup[i % colorLookup.length];
let styleSymbol = {};
if (type === "swatch" || type === "dot") {
styleSymbol = {
fill: c,
opacity: 0.9,
stroke: c,
cursor: "pointer"
};
} else if (type === "line") {
styleSymbol = {
opacity: 0.9,
stroke: c,
strokeWidth: width,
cursor: "pointer"
};
if (dashed) {
styleSymbol.strokeDasharray = "4,2";
}
}
const labelStyle = {
fontSize: "normal",
color: "#333",
paddingRight: 10,
cursor: "pointer"
};
const valueStyle = {
fontSize: "smaller",
color: "#999",
cursor: "pointer"
};
const legendStyle = {
symbol: {
normal: { ...styleSymbol, opacity: 0.7 },
highlighted: { ...styleSymbol, opacity: 0.8 },
selected: { ...styleSymbol, opacity: 0.8 },
muted: { ...styleSymbol, opacity: 0.2 }
},
label: {
normal: { ...labelStyle, opacity: 0.7 },
highlighted: { ...labelStyle, opacity: 0.8 },
selected: { ...labelStyle, opacity: 0.8 },
muted: { ...labelStyle, opacity: 0.5 }
},
value: {
normal: { ...valueStyle, opacity: 0.7 },
highlighted: { ...valueStyle, opacity: 0.8 },
selected: { ...valueStyle, opacity: 0.8 },
muted: { ...valueStyle, opacity: 0.5 }
}
};
return legendStyle;
}
areaChartStyle() {
const style = {};
const numColumns = this.numColumns();
const colorLookup = this.colorLookup(numColumns);
let i = 0;
_.forEach(this.columnStyles, ({
color,
selected,
width = 1,
dashed = false
}, column) => {
const c = color || colorLookup[i % colorLookup.length];
const styleLine = {
stroke: c,
fill: "none",
strokeWidth: width
};
const styleSelectedLine = {
stroke: selected || color,
fill: "none",
strokeWidth: width
};
if (dashed) {
styleLine.strokeDasharray = "4,2";
}
const styleArea = {
fill: c,
stroke: "none"
};
const styleSelectedArea = {
fill: selected || color,
stroke: "none"
};
style[column] = {
line: {
normal: { ...styleLine, opacity: 0.9 },
highlighted: { ...styleLine, opacity: 1.0 },
selected: { ...styleSelectedLine, opacity: 1.0 },
muted: { ...styleLine, opacity: 0.4 }
},
area: {
normal: { ...styleArea, opacity: 0.7 },
highlighted: { ...styleArea, opacity: 0.8 },
selected: { ...styleSelectedArea, opacity: 0.8 },
muted: { ...styleArea, opacity: 0.2 }
}
};
i += 1;
});
return style;
}
lineChartStyle() {
const numColumns = this.numColumns();
const colorLookup = this.colorLookup(numColumns);
const style = {};
_.forEach(this.columnStyles, ({
color,
selected,
width = 1,
dashed = false
}, column) => {
const i = _.indexOf(this.columnNames, column);
const c = color || colorLookup[i % colorLookup.length];
const styleLine = {
stroke: c,
strokeWidth: width,
fill: "none"
};
const styleSelectedLine = {
stroke: selected || c,
strokeWidth: width,
fill: "none"
};
if (dashed) {
styleLine.strokeDasharray = "4,2";
}
style[column] = {
normal: { ...styleLine, opacity: 0.8, strokeWidth: width },
highlighted: { ...styleLine, opacity: 1.0, strokeWidth: width },
selected: { ...styleSelectedLine, opacity: 1.0, strokeWidth: width },
muted: { ...styleLine, opacity: 0.2, strokeWidth: width }
};
});
return style;
}
barChartStyle() {
const numColumns = this.numColumns();
const colorLookup = this.colorLookup(numColumns);
const style = {};
_.forEach(this.columnStyles, ({ color, selected }, column) => {
const i = _.indexOf(this.columnNames, column);
const c = color || colorLookup[i % colorLookup.length];
const fillStyle = {
fill: c
};
const selectedStyle = {
fill: selected || c
};
style[column] = {
normal: { ...fillStyle, opacity: 0.8 },
highlighted: { ...fillStyle, opacity: 1.0 },
selected: { ...selectedStyle, opacity: 1.0 },
muted: { ...fillStyle, opacity: 0.2 }
};
});
return style;
}
scatterChartStyle() {
const numColumns = this.numColumns();
const colorLookup = this.colorLookup(numColumns);
const style = {};
_.forEach(this.columnStyles, ({ color, selected }, column) => {
const i = _.indexOf(this.columnNames, column);
const c = color || colorLookup[i % colorLookup.length];
const fillStyle = {
fill: c
};
const selectedStyle = {
fill: selected || c
};
style[column] = {
normal: { ...fillStyle, opacity: 0.8 },
highlighted: { ...fillStyle, opacity: 1.0 },
selected: { ...selectedStyle, opacity: 1.0 },
muted: { ...fillStyle, opacity: 0.2 }
};
});
return style;
}
axisStyle(column) {
const numColumns = this.numColumns();
const colorLookup = this.colorLookup(numColumns);
const i = _.indexOf(this.columnNames, column);
const columnName = this.columnNames[i];
const { color } = this.columnStyles[columnName];
const c = color || colorLookup[i % colorLookup.length];
return {
labelColor: c
};
}
boxChartStyle() {
const style = {};
const numColumns = this.numColumns();
const colorLookup = this.colorLookup(numColumns);
let i = 0;
_.forEach(this.columnStyles, ({ color, selected }, column) => {
const c = color || colorLookup[i % colorLookup.length];
const styleArea = {
fill: c,
stroke: "none"
};
const styleSelectedArea = {
fill: selected || color,
stroke: "none"
};
style[column] = [
{
normal: { ...styleArea, opacity: 0.2 },
highlighted: { ...styleArea, opacity: 0.3 },
selected: { ...styleSelectedArea, opacity: 0.3 },
muted: { ...styleArea, opacity: 0.1 }
},
{
normal: { ...styleArea, opacity: 0.5 },
highlighted: { ...styleArea, opacity: 0.6 },
selected: { ...styleSelectedArea, opacity: 0.6 },
muted: { ...styleArea, opacity: 0.2 }
},
{
normal: { ...styleArea, opacity: 0.9 },
highlighted: { ...styleArea, opacity: 1.0 },
selected: { ...styleSelectedArea, opacity: 1.0 },
muted: { ...styleArea, opacity: 0.2 }
}
];
i += 1;
});
return style;
}
}
export default function styler(columns, scheme) {
return new Styler(columns, scheme);
}