mistercrunch closed pull request #4911: Fix for week_start_sunday and
week_ending_saturday
URL: https://github.com/apache/incubator-superset/pull/4911
This is a PR merged from a forked repository.
As GitHub hides the original diff on merge, it is displayed below for
the sake of provenance:
As this is a foreign pull request (from a fork), the diff is supplied
below (as it won't show otherwise due to GitHub magic):
diff --git a/superset/assets/spec/javascripts/modules/time_spec.js
b/superset/assets/spec/javascripts/modules/time_spec.js
new file mode 100644
index 0000000000..59dab8effe
--- /dev/null
+++ b/superset/assets/spec/javascripts/modules/time_spec.js
@@ -0,0 +1,58 @@
+import { it, describe } from 'mocha';
+import { expect } from 'chai';
+import { getPlaySliderParams } from '../../../src/modules/time';
+
+describe('getPlaySliderParams', () => {
+ it('is a function', () => {
+ assert.isFunction(getPlaySliderParams);
+ });
+
+ it('handles durations', () => {
+ const timestamps = [
+ new Date('2018-01-01'),
+ new Date('2018-01-02'),
+ new Date('2018-01-03'),
+ new Date('2018-01-04'),
+ new Date('2018-01-05'),
+ new Date('2018-01-06'),
+ new Date('2018-01-07'),
+ new Date('2018-01-08'),
+ new Date('2018-01-09'),
+ new Date('2018-01-10'),
+ ].map(d => d.getTime());
+ const { start, end, step, values, disabled } =
getPlaySliderParams(timestamps, 'P2D');
+ expect(new Date(start)).to.eql(new Date('2018-01-01'));
+ expect(new Date(end)).to.eql(new Date('2018-01-11'));
+ expect(step).to.equal(2 * 24 * 60 * 60 * 1000);
+ expect(values.map(v => new Date(v))).to.eql([
+ new Date('2018-01-01'),
+ new Date('2018-01-03'),
+ ]);
+ expect(disabled).to.equal(false);
+ });
+
+ it('handles intervals', () => {
+ const timestamps = [
+ new Date('2018-01-01'),
+ new Date('2018-01-02'),
+ new Date('2018-01-03'),
+ new Date('2018-01-04'),
+ new Date('2018-01-05'),
+ new Date('2018-01-06'),
+ new Date('2018-01-07'),
+ new Date('2018-01-08'),
+ new Date('2018-01-09'),
+ new Date('2018-01-10'),
+ ].map(d => d.getTime());
+ // 1970-01-03 was a Saturday
+ const { start, end, step, values, disabled } =
getPlaySliderParams(timestamps, 'P1W/1970-01-03T00:00:00Z');
+ expect(new Date(start)).to.eql(new Date('2017-12-30')); // Saturday
+ expect(new Date(end)).to.eql(new Date('2018-01-13')); // Saturday
+ expect(step).to.equal(7 * 24 * 60 * 60 * 1000);
+ expect(values.map(v => new Date(v))).to.eql([
+ new Date('2017-12-30'),
+ new Date('2018-01-06'),
+ ]);
+ expect(disabled).to.equal(false);
+ });
+});
diff --git a/superset/assets/src/explore/controls.jsx
b/superset/assets/src/explore/controls.jsx
index ffe264b547..b3248df454 100644
--- a/superset/assets/src/explore/controls.jsx
+++ b/superset/assets/src/explore/controls.jsx
@@ -776,8 +776,8 @@ export const controls = {
['P1D', '1 day'],
['P7D', '7 days'],
['P1W', 'week'],
- ['P1W', 'week_starting_sunday'],
- ['P1W', 'week_ending_saturday'],
+ ['week_starting_sunday', 'week starting Sunday'],
+ ['week_ending_saturday', 'week ending Saturday'],
['P1M', 'month'],
],
description: t('The time granularity for the visualization. Note that you
' +
diff --git a/superset/assets/src/modules/time.js
b/superset/assets/src/modules/time.js
index 0c13dae859..7ebc4d7766 100644
--- a/superset/assets/src/modules/time.js
+++ b/superset/assets/src/modules/time.js
@@ -4,11 +4,31 @@ import parseIsoDuration from 'parse-iso-duration';
export const getPlaySliderParams = function (timestamps, timeGrain) {
let start = Math.min(...timestamps);
let end = Math.max(...timestamps);
+ let step;
- // lock start and end to the closest steps
- const step = parseIsoDuration(timeGrain);
- start -= start % step;
- end += step - end % step;
+ if (timeGrain.indexOf('/') > 0) {
+ // Here, time grain is a time interval instead of a simple duration, either
+ // `reference/duration` or `duration/reference`. We need to parse the
+ // duration and make sure that start and end are in the right places. For
+ // example, if `reference` is a Saturday and `duration` is 1 week (P1W)
+ // then both start and end should be Saturdays.
+ const parts = timeGrain.split('/', 2);
+ let reference;
+ if (parts[0].endsWith('Z')) { // ISO string
+ reference = new Date(parts[0]).getTime();
+ step = parseIsoDuration(parts[1]);
+ } else {
+ reference = new Date(parts[1]).getTime();
+ step = parseIsoDuration(parts[0]);
+ }
+ start = reference + step * Math.floor((start - reference) / step);
+ end = reference + step * (Math.floor((end - reference) / step) + 1);
+ } else {
+ // lock start and end to the closest steps
+ step = parseIsoDuration(timeGrain);
+ start -= start % step;
+ end += step - end % step;
+ }
const values = timeGrain != null ? [start, start + step] : [start, end];
const disabled = timestamps.every(timestamp => timestamp === null);
diff --git a/superset/db_engine_specs.py b/superset/db_engine_specs.py
index e95b4d3928..dac6f241f3 100644
--- a/superset/db_engine_specs.py
+++ b/superset/db_engine_specs.py
@@ -446,6 +446,12 @@ class SqliteEngineSpec(BaseEngineSpec):
Grain('month', _('month'),
"DATE({col}, -strftime('%d', {col}) || ' days', '+1 day')",
'P1M'),
+ Grain('week_ending_saturday', _('week_ending_saturday'),
+ "DATE({col}, 'weekday 6')",
+ 'P1W/1970-01-03T00:00:00Z'),
+ Grain('week_start_sunday', _('week_start_sunday'),
+ "DATE({col}, 'weekday 0', '-7 days')",
+ '1969-12-28T00:00:00Z/P1W'),
)
@classmethod
@@ -577,11 +583,11 @@ class PrestoEngineSpec(BaseEngineSpec):
Grain('week_ending_saturday', _('week_ending_saturday'),
"date_add('day', 5, date_trunc('week', date_add('day', 1, "
'CAST({col} AS TIMESTAMP))))',
- 'P1W'),
+ 'P1W/1970-01-03T00:00:00Z'),
Grain('week_start_sunday', _('week_start_sunday'),
"date_add('day', -1, date_trunc('week', "
"date_add('day', 1, CAST({col} AS TIMESTAMP))))",
- 'P1W'),
+ '1969-12-28T00:00:00Z/P1W'),
Grain('year', _('year'),
"date_trunc('year', CAST({col} AS TIMESTAMP))",
'P1Y'),
@@ -1169,11 +1175,11 @@ class AthenaEngineSpec(BaseEngineSpec):
Grain('week_ending_saturday', _('week_ending_saturday'),
"date_add('day', 5, date_trunc('week', date_add('day', 1, "
'CAST({col} AS TIMESTAMP))))',
- 'P1W'),
+ 'P1W/1970-01-03T00:00:00Z'),
Grain('week_start_sunday', _('week_start_sunday'),
"date_add('day', -1, date_trunc('week', "
"date_add('day', 1, CAST({col} AS TIMESTAMP))))",
- 'P1W'),
+ '1969-12-28T00:00:00Z/P1W'),
)
@classmethod
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services