Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
W
waterdataui
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Water Mission Area
Internet of Water
waterdataui
Commits
eea261b3
Commit
eea261b3
authored
4 years ago
by
Briggs, Aaron Shane
Browse files
Options
Downloads
Patches
Plain Diff
fix for issue of not add parameter code to state urls
parent
7bfd89a8
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
assets/src/scripts/monitoring-location/store/instantaneous-value-time-series-data.js
+4
-4
4 additions, 4 deletions
...ng-location/store/instantaneous-value-time-series-data.js
assets/src/scripts/web-services/models.js
+5
-4
5 additions, 4 deletions
assets/src/scripts/web-services/models.js
with
9 additions
and
8 deletions
assets/src/scripts/monitoring-location/store/instantaneous-value-time-series-data.js
+
4
−
4
View file @
eea261b3
...
...
@@ -139,11 +139,11 @@ const retrieveIVTimeSeries = function(siteno) {
* @param {Number} endTime - in epoch milliseconds
* @return {Function} which when dispatched returns a Promise
*/
const
retrieveCompareIVTimeSeries
=
function
(
siteno
,
period
,
startTime
,
endTime
)
{
const
retrieveCompareIVTimeSeries
=
function
(
siteno
,
period
,
startTime
,
endTime
,
parameterCode
)
{
return
function
(
dispatch
,
getState
)
{
const
tsRequestKey
=
getTsRequestKey
(
'
compare
'
,
period
)(
getState
());
dispatch
(
ivTimeSeriesStateActions
.
addIVTimeSeriesToLoadingKeys
([
tsRequestKey
]));
return
getPreviousYearTimeSeries
({
site
:
siteno
,
startTime
,
endTime
}).
then
(
return
getPreviousYearTimeSeries
({
site
:
siteno
,
startTime
,
endTime
,
parameterCode
}).
then
(
series
=>
{
const
collection
=
normalize
(
series
,
tsRequestKey
);
dispatch
(
Actions
.
addIVTimeSeriesCollection
(
collection
));
...
...
@@ -186,7 +186,7 @@ const retrieveCustomTimePeriodIVTimeSeries = function(siteno, parameterCd, perio
if
(
isPeriodCustom
(
period
))
{
dispatch
(
ivTimeSeriesStateActions
.
setUserInputsForSelectingTimespan
(
'
numberOfDaysFieldValue
'
,
parsedPeriodCodes
.
numberOfDaysFieldValue
));
}
dispatch
(
ivTimeSeriesStateActions
.
addIVTimeSeriesToLoadingKeys
([
tsRequestKey
]));
return
getTimeSeries
({
sites
:
[
siteno
],
params
:
[
parameterCd
],
period
:
period
}).
then
(
...
...
@@ -295,7 +295,7 @@ const retrieveExtendedIVTimeSeries = function(siteno, period, paramCd=null) {
}).
then
(
series
=>
{
const
collection
=
normalize
(
series
,
tsRequestKey
);
dispatch
(
Actions
.
retrieveCompareIVTimeSeries
(
siteno
,
period
,
startTime
,
endTime
));
dispatch
(
Actions
.
retrieveCompareIVTimeSeries
(
siteno
,
period
,
startTime
,
endTime
,
thisParamCd
));
dispatch
(
Actions
.
addIVTimeSeriesCollection
(
collection
));
dispatch
(
ivTimeSeriesStateActions
.
removeIVTimeSeriesFromLoadingKeys
([
tsRequestKey
]));
},
...
...
This diff is collapsed.
Click to expand it.
assets/src/scripts/web-services/models.js
+
5
−
4
View file @
eea261b3
import
{
utcFormat
}
from
'
d3-time-format
'
;
import
{
get
}
from
'
ui/ajax
'
;
import
config
from
'
ui/config
'
;
import
{
get
}
from
'
ui/ajax
'
;
// Define Water Services root URL - use global variable if defined, otherwise
// use production.
...
...
@@ -64,13 +63,15 @@ export const getTimeSeries = function({sites, params=null, startDate=null, endDa
});
};
export
const
getPreviousYearTimeSeries
=
function
({
site
,
startTime
,
endTime
})
{
export
const
getPreviousYearTimeSeries
=
function
({
site
,
startTime
,
endTime
,
parameterCode
})
{
parameterCode
=
parameterCode
?
[
parameterCode
]
:
null
;
let
lastYearStartTime
=
new
Date
(
startTime
);
let
lastYearEndTime
=
new
Date
(
endTime
);
lastYearStartTime
.
setFullYear
(
lastYearStartTime
.
getFullYear
()
-
1
);
lastYearEndTime
.
setFullYear
(
lastYearEndTime
.
getFullYear
()
-
1
);
return
getTimeSeries
({
sites
:
[
site
],
startDate
:
lastYearStartTime
,
endDate
:
lastYearEndTime
});
return
getTimeSeries
({
sites
:
[
site
],
startDate
:
lastYearStartTime
,
endDate
:
lastYearEndTime
,
params
:
parameterCode
});
};
export
const
queryWeatherService
=
function
(
latitude
,
longitude
)
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment