Skip to content
Snippets Groups Projects
Commit 42fd289d authored by Williams, Darius Shamar's avatar Williams, Darius Shamar
Browse files

EoD

parent 5bd92b35
No related branches found
No related tags found
1 merge request!371WDFN - 710 - Inverting the DV graph for certain parameter codes
...@@ -13,7 +13,6 @@ import { ...@@ -13,7 +13,6 @@ import {
const drawDVTimeSeriesSelection = function(container, store, monitoringLocationId, initialParameterCode) { const drawDVTimeSeriesSelection = function(container, store, monitoringLocationId, initialParameterCode) {
const availableTimeSeries = getAvailableGWDVTimeSeries(store.getState()); const availableTimeSeries = getAvailableGWDVTimeSeries(store.getState());
const availableParameterCodes = new Set(availableTimeSeries.map(ts => ts.parameterCode)); const availableParameterCodes = new Set(availableTimeSeries.map(ts => ts.parameterCode));
store.dispatch(Actions.setCurrentDVParameterCode(initialParameterCode));
if (availableParameterCodes.size > 1) { if (availableParameterCodes.size > 1) {
container.append('div').append('legend') container.append('div').append('legend')
...@@ -37,7 +36,6 @@ const drawDVTimeSeriesSelection = function(container, store, monitoringLocationI ...@@ -37,7 +36,6 @@ const drawDVTimeSeriesSelection = function(container, store, monitoringLocationI
store.dispatch(Actions.retrieveDVTimeSeries(monitoringLocationId, timeSeries.mean)); store.dispatch(Actions.retrieveDVTimeSeries(monitoringLocationId, timeSeries.mean));
store.dispatch(Actions.retrieveDVTimeSeries(monitoringLocationId, timeSeries.max)); store.dispatch(Actions.retrieveDVTimeSeries(monitoringLocationId, timeSeries.max));
store.dispatch(Actions.setCurrentDVTimeSeriesIds(timeSeries.min, timeSeries.mean, timeSeries.max)); store.dispatch(Actions.setCurrentDVTimeSeriesIds(timeSeries.min, timeSeries.mean, timeSeries.max));
store.dispatch(Actions.setCurrentDVParameterCode(parameterCode));
}); });
inputContainer.append('label') inputContainer.append('label')
.attr('class', 'usa-radio__label') .attr('class', 'usa-radio__label')
......
...@@ -141,9 +141,6 @@ describe('monitoring-location/components/dailyValueHydrograph/graphControls', () ...@@ -141,9 +141,6 @@ describe('monitoring-location/components/dailyValueHydrograph/graphControls', ()
expect(firstRadioButton.property('checked')).toBe(true); expect(firstRadioButton.property('checked')).toBe(true);
}); });
it('Should update the DV parameter code', () => {
expect(store.getState().dailyValueTimeSeriesState.parameterCode).toBe('72019');
});
}); });
describe('drawGraphControls with one param code', () => { describe('drawGraphControls with one param code', () => {
......
...@@ -7,10 +7,11 @@ import { ...@@ -7,10 +7,11 @@ import {
getCurrentDVTimeSeriesTimeRange, getCurrentDVTimeSeriesTimeRange,
getCurrentDVTimeSeriesValueRange, getCurrentDVTimeSeriesValueRange,
getCurrentDVTimeSeriesData, getCurrentDVTimeSeriesData,
getDVParameterCode getAvailableDVTimeSeriesParameterCodes
} from 'ml/selectors/daily-value-time-series-selector'; } from 'ml/selectors/daily-value-time-series-selector';
import {getLayout} from './layout'; import {getLayout} from './layout';
import { parseInt } from 'lodash';
const REVERSE_AXIS_PARMS = [ const REVERSE_AXIS_PARMS = [
'72019', '72019',
...@@ -46,15 +47,15 @@ export const getXScale = memoize((kind) => createSelector( ...@@ -46,15 +47,15 @@ export const getXScale = memoize((kind) => createSelector(
export const getMainXScale = getXScale(); export const getMainXScale = getXScale();
export const getBrushXScale = getXScale('BRUSH'); export const getBrushXScale = getXScale('BRUSH');
const createYScale = function(layout, valueRange, parameterCode) { const createYScale = function(layout, valueRange, parameterCodes) {
const PADDING_RATIO = 0.2; const PADDING_RATIO = 0.2;
let yScale = scaleLinear(); let yScale = scaleLinear();
yScale.range([layout.height - layout.margin.top - layout.margin.bottom, 0]); yScale.range([0, layout.height - layout.margin.top - layout.margin.bottom]);
if (REVERSE_AXIS_PARMS.includes(parameterCode)) { parameterCodes.forEach((parameterCode) => {
yScale.range([layout.height - layout.margin.top - layout.margin.bottom, 0]); if (REVERSE_AXIS_PARMS.includes(parameterCode)) {
} else { yScale.range([layout.height - layout.margin.top - layout.margin.bottom, 0]);
yScale.range([0, layout.height - layout.margin.top - layout.margin.bottom]); }
} });
if (valueRange) { if (valueRange) {
const isPositive = valueRange.min > 0 && valueRange.max > 0; const isPositive = valueRange.min > 0 && valueRange.max > 0;
...@@ -82,8 +83,8 @@ export const getMainYScale = createSelector( ...@@ -82,8 +83,8 @@ export const getMainYScale = createSelector(
getLayout('MAIN'), getLayout('MAIN'),
getCurrentDVTimeSeriesData, getCurrentDVTimeSeriesData,
getXScale('MAIN'), getXScale('MAIN'),
getDVParameterCode, getAvailableDVTimeSeriesParameterCodes,
(layout, allTSData, xScale, parameterCode) => { (layout, allTSData, xScale, parameterCodes) => {
const [startTime, endTime] = xScale.domain(); const [startTime, endTime] = xScale.domain();
let minValues = []; let minValues = [];
let maxValues = []; let maxValues = [];
...@@ -105,7 +106,7 @@ export const getMainYScale = createSelector( ...@@ -105,7 +106,7 @@ export const getMainYScale = createSelector(
max: Math.max(...maxValues) max: Math.max(...maxValues)
}; };
} }
return createYScale(layout, valueRange, parameterCode); return createYScale(layout, valueRange, parameterCodes);
} }
); );
...@@ -115,8 +116,9 @@ export const getMainYScale = createSelector( ...@@ -115,8 +116,9 @@ export const getMainYScale = createSelector(
export const getBrushYScale = createSelector( export const getBrushYScale = createSelector(
getLayout('BRUSH'), getLayout('BRUSH'),
getCurrentDVTimeSeriesValueRange, getCurrentDVTimeSeriesValueRange,
(layout, valueRange) => { getAvailableDVTimeSeriesParameterCodes,
return createYScale(layout, valueRange); (layout, valueRange, parameterCodes) => {
return createYScale(layout, valueRange, parameterCodes);
} }
); );
......
...@@ -57,6 +57,19 @@ export const getAvailableGWDVTimeSeries = createSelector( ...@@ -57,6 +57,19 @@ export const getAvailableGWDVTimeSeries = createSelector(
} }
); );
/*
* Selector function to get all the current DV parameter codes
*/
export const getAvailableDVTimeSeriesParameterCodes = createSelector(
getAvailableDVTimeSeries,
(timeSeriesArray) => {
if(!timeSeriesArray.length) {
return [];
};
return timeSeriesArray.map((item) => item.parameterCode);
}
);
/* /*
* Selector function takes a parameter code and returns an Object with min, mean, max properties that * Selector function takes a parameter code and returns an Object with min, mean, max properties that
* contain the available string tsIds for that parameter code. * contain the available string tsIds for that parameter code.
......
...@@ -79,19 +79,6 @@ const clearDVGraphBrushOffset = function() { ...@@ -79,19 +79,6 @@ const clearDVGraphBrushOffset = function() {
}; };
}; };
/*
* Synchronous action to set the current parameter code for the dv graph
* @param {String} parameterCode
* @return {Object} Redux Action
*/
const setCurrentDVParameterCode = function(parameterCode) {
return {
type: 'SET_DV_PARAMETER_CODE',
parameterCode
};
};
/* /*
* Redux asynchronous action to fetch the available time series and * Redux asynchronous action to fetch the available time series and
* update the store. The dispatched action returns a Promise. * update the store. The dispatched action returns a Promise.
...@@ -192,11 +179,6 @@ export const dailyValueTimeSeriesStateReducer = function(dailyValueTimeSeriesSta ...@@ -192,11 +179,6 @@ export const dailyValueTimeSeriesStateReducer = function(dailyValueTimeSeriesSta
...dailyValueTimeSeriesState, ...dailyValueTimeSeriesState,
dvGraphBrushOffset: undefined dvGraphBrushOffset: undefined
}; };
case 'SET_DV_PARAMETER_CODE':
return {
...dailyValueTimeSeriesState,
parameterCode: action.parameterCode
};
default: default:
return dailyValueTimeSeriesState; return dailyValueTimeSeriesState;
} }
...@@ -210,6 +192,5 @@ export const Actions = { ...@@ -210,6 +192,5 @@ export const Actions = {
retrieveAvailableDVTimeSeries, retrieveAvailableDVTimeSeries,
retrieveDVTimeSeries, retrieveDVTimeSeries,
setDVGraphBrushOffset, setDVGraphBrushOffset,
clearDVGraphBrushOffset, clearDVGraphBrushOffset
setCurrentDVParameterCode
}; };
\ No newline at end of file
...@@ -173,14 +173,6 @@ describe('monitoring-location/store/daily-value-time-series module', () => { ...@@ -173,14 +173,6 @@ describe('monitoring-location/store/daily-value-time-series module', () => {
expect(store.getState().dailyValueTimeSeriesState.dvGraphBrushOffset).not.toBeDefined(); expect(store.getState().dailyValueTimeSeriesState.dvGraphBrushOffset).not.toBeDefined();
}); });
}); });
describe('Actions.setCurrentDVParameterCode', () => {
it('updates brush offset', () => {
store.dispatch(Actions.setCurrentDVParameterCode('12345'));
expect(store.getState().dailyValueTimeSeriesState.parameterCode).toEqual('12345');
});
});
}); });
}); });
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment