Newer
Older
import {createSelector} from 'reselect';
import {getCurrentTimeSeriesLineSegments} from './time-series-data';
import {defineLineMarker, defineTextOnlyMarker} from '../../../d3-rendering/markers';
const tsLineMarkers = function(lineClasses) {
let result = [];
if (lineClasses.default) {
result.push(defineLineMarker(null, 'line-segment ts-dv', 'Provisional'));
result.push(defineLineMarker(null, 'line-segment approved ts-dv', 'Approved'));
result.push(defineLineMarker(null, 'line-segment estimated ts-dv', 'Estimated'));
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
}
return result;
};
/**
* create elements for the legend in the svg
*
* @param {Object} displayItems - Object containing Object containing default, estimated and approved properties.
* @return {Array} - Returns an array of markers.
*/
const createLegendMarkers = function(displayItems) {
const legendMarkers = [];
if (displayItems) {
const currentMarkers = [
...tsLineMarkers(displayItems)
];
if (currentMarkers.length) {
legendMarkers.push([
defineTextOnlyMarker('', null, 'ts-legend-current-text'),
...currentMarkers
]);
}
}
return legendMarkers;
};
export const getUniqueClasses = createSelector(
getCurrentTimeSeriesLineSegments,
(tsLineSegments) => {
let result = {
default: false,
approved: false,
estimated: false
};
tsLineSegments.forEach((segment) => {
result.approved = result.approved || segment.approvals.includes('Approved');
result.estimated = result.estimated || segment.approvals.includes('Estimated');
result.default = result.default || segment.approvals.length === 0;
});
return result;
}
);
/*
* Factory function that returns an array of array of markers to be used for the
* time series graph legend
* @return {Array of Array} of markers
*/
export const getLegendMarkerRows = createSelector(
getUniqueClasses,
displayItems => {