Newer
Older
/**
* Hydrograph charting module.
*/
const { select } = require('d3-selection');
Naab, Daniel James
committed
const { line } = require('d3-shape');
Naab, Daniel James
committed
const { createSelector, createStructuredSelector } = require('reselect');
const { addSVGAccessibility, addSROnlyTable } = require('../../accessibility');
Naab, Daniel James
committed
const { dispatch, link, provide } = require('../../lib/redux');
Naab, Daniel James
committed
const { appendAxes, axesSelector } = require('./axes');
Yan, Andrew N.
committed
const { ASPECT_RATIO_PERCENT, MARGIN, CIRCLE_RADIUS, layoutSelector } = require('./layout');
const { drawSimpleLegend, legendDisplaySelector, createLegendMarkers } = require('./legend');
const { plotSeriesSelectTable, availableTimeseriesSelector } = require('./parameters');
Naab, Daniel James
committed
const { pointsSelector, lineSegmentsSelector, isVisibleSelector, titleSelector, descriptionSelector } = require('./timeseries');
const { xScaleSelector, yScaleSelector } = require('./scales');
const { Actions, configureStore } = require('./store');
const { createTooltip } = require('./tooltip');
const drawMessage = function (elem, message) {
// Set up parent element and SVG
elem.innerHTML = '';
const alertBox = elem
.append('div')
.attr('class', 'usa-alert usa-alert-warning')
.append('div')
.attr('class', 'usa-alert-body');
alertBox
.append('h3')
.attr('class', 'usa-alert-heading')
.html('Hydrograph Alert');
alertBox
.append('p')
Naab, Daniel James
committed
const plotDataLine = function (elem, {visible, lines, tsDataKey, xScale, yScale}) {
const elemId = 'ts-' + tsDataKey;
elem.selectAll(`#${elemId}`).remove();
Naab, Daniel James
committed
if (!visible) {
Naab, Daniel James
committed
const tsLine = line()
.x(d => xScale(new Date(d.time)))
.y(d => yScale(d.value));
for (let line of lines) {
elem.append('path')
.datum(line.points)
.classed('line', true)
Naab, Daniel James
committed
.classed('approved', line.classes.approved)
.classed('estimated', line.classes.estimated)
.attr('data-title', tsDataKey)
.attr('id', `ts-${tsDataKey}`)
.attr('d', tsLine);
}
const plotLegend = function(elem, {displayItems, width}) {
elem.select('.legend').remove();
let markers = createLegendMarkers(displayItems);
drawSimpleLegend(elem, markers, width);
Bucknell, Mary S.
committed
const plotMedianPoints = function (elem, {visible, xscale, yscale, medianStatsData, showLabel}) {
elem.select('#median-points').remove();
Naab, Daniel James
committed
if (!visible) {
return;
}
const container = elem
.append('g')
.attr('id', 'median-points');
container.selectAll('medianPoint')
.data(medianStatsData)
.enter()
.append('circle')
.attr('class', 'median-data-series')
.attr('r', CIRCLE_RADIUS)
.attr('cx', function(d) {
})
.attr('cy', function(d) {
Bucknell, Mary S.
committed
.on('click', dispatch(function() {
return Actions.showMedianStatsLabel(!showLabel);
}));
Bucknell, Mary S.
committed
if (showLabel) {
container.selectAll('medianPointText')
.data(medianStatsData)
.enter()
.append('text')
.text(function(d) {
return d.label;
})
.attr('id', 'median-text')
.attr('x', function(d) {
return xscale(d.time) + 5;
})
.attr('y', function(d) {
return yscale(d.value);
});
Bucknell, Mary S.
committed
}
Naab, Daniel James
committed
const timeSeriesGraph = function (elem) {
elem.append('div')
.attr('class', 'hydrograph-container')
.style('padding-bottom', ASPECT_RATIO_PERCENT)
.append('svg')
Bucknell, Mary S.
committed
.call(link((elem, layout) => elem.attr('viewBox', `0 0 ${layout.width} ${layout.height}`), layoutSelector))
Naab, Daniel James
committed
.call(link(addSVGAccessibility, createStructuredSelector({
Naab, Daniel James
committed
titleSelector,
descriptionSelector,
Naab, Daniel James
committed
isInteractive: () => true
})))
displayItems: legendDisplaySelector,
width: state => state.width
.append('g')
.attr('transform', `translate(${MARGIN.left},${MARGIN.top})`)
Naab, Daniel James
committed
.call(link(appendAxes, axesSelector))
.call(link(plotDataLine, createStructuredSelector({
Naab, Daniel James
committed
visible: isVisibleSelector('current'),
Naab, Daniel James
committed
lines: lineSegmentsSelector('current'),
Naab, Daniel James
committed
xScale: xScaleSelector('current'),
yScale: yScaleSelector,
Naab, Daniel James
committed
tsDataKey: () => 'current'
Naab, Daniel James
committed
})))
Naab, Daniel James
committed
.call(link(plotDataLine, createStructuredSelector({
Naab, Daniel James
committed
visible: isVisibleSelector('compare'),
Naab, Daniel James
committed
lines: lineSegmentsSelector('compare'),
Naab, Daniel James
committed
xScale: xScaleSelector('compare'),
yScale: yScaleSelector,
Naab, Daniel James
committed
tsDataKey: () => 'compare'
Naab, Daniel James
committed
})))
.call(link(createTooltip, createStructuredSelector({
Naab, Daniel James
committed
xScale: xScaleSelector('current'),
yScale: yScaleSelector,
compareXScale: xScaleSelector('compare'),
currentTsData: pointsSelector('current'),
compareTsData: pointsSelector('compare'),
isCompareVisible: isVisibleSelector('compare')
Bucknell, Mary S.
committed
})))
.call(link(plotMedianPoints, createStructuredSelector({
visible: isVisibleSelector('medianStatistics'),
xscale: xScaleSelector('current'),
yscale: yScaleSelector,
medianStatsData: pointsSelector('medianStatistics'),
showLabel: (state) => state.showMedianStatsLabel
Naab, Daniel James
committed
})));
elem.call(link(plotSeriesSelectTable, createStructuredSelector({
availableTimeseries: availableTimeseriesSelector
})));
elem.append('div')
.call(link(addSROnlyTable, createStructuredSelector({
columnNames: createSelector(
Naab, Daniel James
committed
titleSelector,
(title) => [title, 'Time']
),
data: createSelector(
pointsSelector('current'),
points => points.map((value) => {
return [value.value, value.time];
})
),
describeById: () => 'time-series-sr-desc',
describeByText: () => 'current time series data in tabular format'
})));
elem.append('div')
.call(link(addSROnlyTable, createStructuredSelector({
columnNames: createSelector(
Naab, Daniel James
committed
titleSelector,
(title) => [`Median ${title}`, 'Time']
),
data: createSelector(
pointsSelector('medianStatistics'),
points => points.map((value) => {
return [value.value, value.time];
})
),
describeById: () => 'median-statistics-sr-desc',
describeByText: () => 'median statistical data in tabular format'
Naab, Daniel James
committed
})));
};
const attachToNode = function (node, {siteno} = {}) {
if (!siteno) {
select(node).call(drawMessage, 'No data is available.');
return;
Bucknell, Mary S.
committed
}
let store = configureStore({
width: node.offsetWidth
});
select(node)
.call(provide(store))
Naab, Daniel James
committed
.call(timeSeriesGraph)
.select('.hydrograph-last-year-input')
.on('change', dispatch(function () {
return Actions.toggleTimeseries('compare', this.checked);
}));
Bucknell, Mary S.
committed
window.onresize = function() {
store.dispatch(Actions.resizeTimeseriesPlot(node.offsetWidth));
};
store.dispatch(Actions.retrieveTimeseries(siteno));
};
module.exports = {attachToNode, timeSeriesGraph};