forked from apache/superset
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(plugins): Time Comparison Utils (apache#27145)
- Loading branch information
1 parent
f496345
commit be55ad3
Showing
22 changed files
with
855 additions
and
365 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
47 changes: 47 additions & 0 deletions
47
superset-frontend/packages/superset-ui-core/src/time-comparison/README.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
<!-- | ||
Licensed to the Apache Software Foundation (ASF) under one | ||
or more contributor license agreements. See the NOTICE file | ||
distributed with this work for additional information | ||
regarding copyright ownership. The ASF licenses this file | ||
to you under the Apache License, Version 2.0 (the | ||
"License"); you may not use this file except in compliance | ||
with the License. You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, | ||
software distributed under the License is distributed on an | ||
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
KIND, either express or implied. See the License for the | ||
specific language governing permissions and limitations | ||
under the License. | ||
--> | ||
|
||
## @superset-ui/core/time-comparison | ||
|
||
This is a collection of methods used to support Time Comparison in charts. | ||
|
||
#### Example usage | ||
|
||
```js | ||
import { getComparisonTimeRangeInfo } from '@superset-ui/core'; | ||
const { since, until } = getComparisonTimeRangeInfo( | ||
adhocFilters, | ||
extraFormData, | ||
); | ||
console.log(adhocFilters, extraFormData); | ||
``` | ||
|
||
or | ||
|
||
```js | ||
import { ComparisonTimeRangeType } from '@superset-ui/core'; | ||
ComparisonTimeRangeType.Custom; // 'c' | ||
ComparisonTimeRangeType.InheritRange; // 'r' | ||
``` | ||
|
||
#### API | ||
|
||
`fn(args)` | ||
|
||
- Do something |
67 changes: 67 additions & 0 deletions
67
superset-frontend/packages/superset-ui-core/src/time-comparison/getComparisonFilters.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
/** | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
|
||
import { QueryFormData } from '../query'; | ||
import { AdhocFilter } from '../types'; | ||
|
||
/** | ||
* This method is used to get the query filters to be applied to the comparison query after | ||
* overriding the time range in case an extra form data is provided. | ||
* For example when rendering a chart that uses time comparison in a dashboard with time filters. | ||
* @param formData - the form data | ||
* @param extraFormData - the extra form data | ||
* @returns the query filters to be applied to the comparison query | ||
*/ | ||
export const getComparisonFilters = ( | ||
formData: QueryFormData, | ||
extraFormData: any, | ||
): AdhocFilter[] => { | ||
const timeFilterIndex: number = | ||
formData.adhoc_filters?.findIndex( | ||
filter => 'operator' in filter && filter.operator === 'TEMPORAL_RANGE', | ||
) ?? -1; | ||
|
||
const timeFilter: AdhocFilter | null = | ||
timeFilterIndex !== -1 && formData.adhoc_filters | ||
? formData.adhoc_filters[timeFilterIndex] | ||
: null; | ||
|
||
if ( | ||
timeFilter && | ||
'comparator' in timeFilter && | ||
typeof timeFilter.comparator === 'string' | ||
) { | ||
if (extraFormData?.time_range) { | ||
timeFilter.comparator = extraFormData.time_range; | ||
} | ||
} | ||
|
||
const comparisonQueryFilter = timeFilter ? [timeFilter] : []; | ||
|
||
const otherFilters = formData.adhoc_filters?.filter( | ||
(_value: any, index: number) => timeFilterIndex !== index, | ||
); | ||
const comparisonQueryFilters = otherFilters | ||
? [...comparisonQueryFilter, ...otherFilters] | ||
: comparisonQueryFilter; | ||
|
||
return comparisonQueryFilters; | ||
}; | ||
|
||
export default getComparisonFilters; |
65 changes: 65 additions & 0 deletions
65
superset-frontend/packages/superset-ui-core/src/time-comparison/getComparisonInfo.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
/** | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
|
||
import { QueryFormData } from '../query'; | ||
import { getComparisonFilters } from './getComparisonFilters'; | ||
import { ComparisonTimeRangeType } from './types'; | ||
|
||
/** | ||
* This is the main function to get the comparison info. It will return the formData | ||
* that a viz can use to query the comparison data and the time shift text needed for | ||
* the comparison time range based on the control value. | ||
* @param formData | ||
* @param timeComparison | ||
* @param extraFormData | ||
* @returns the processed formData | ||
*/ | ||
|
||
export const getComparisonInfo = ( | ||
formData: QueryFormData, | ||
timeComparison: string, | ||
extraFormData: any, | ||
): QueryFormData => { | ||
let comparisonFormData; | ||
|
||
if (timeComparison !== ComparisonTimeRangeType.Custom) { | ||
comparisonFormData = { | ||
...formData, | ||
adhoc_filters: getComparisonFilters(formData, extraFormData), | ||
extra_form_data: { | ||
...extraFormData, | ||
time_range: undefined, | ||
}, | ||
}; | ||
} else { | ||
// This is when user selects Custom as time comparison | ||
comparisonFormData = { | ||
...formData, | ||
adhoc_filters: formData.adhoc_custom, | ||
extra_form_data: { | ||
...extraFormData, | ||
time_range: undefined, | ||
}, | ||
}; | ||
} | ||
|
||
return comparisonFormData; | ||
}; | ||
|
||
export default getComparisonInfo; |
23 changes: 23 additions & 0 deletions
23
superset-frontend/packages/superset-ui-core/src/time-comparison/index.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
|
||
export * from './types'; | ||
|
||
export { default as getComparisonInfo } from './getComparisonInfo'; | ||
export { default as getComparisonFilters } from './getComparisonFilters'; |
30 changes: 30 additions & 0 deletions
30
superset-frontend/packages/superset-ui-core/src/time-comparison/types.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
|
||
/** | ||
* Supported comparison time ranges | ||
*/ | ||
|
||
export enum ComparisonTimeRangeType { | ||
Custom = 'c', | ||
InheritedRange = 'r', | ||
Month = 'm', | ||
Week = 'w', | ||
Year = 'y', | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
37 changes: 37 additions & 0 deletions
37
...set-frontend/packages/superset-ui-core/src/validator/validateTimeComparisonRangeValues.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
|
||
import { ComparisonTimeRangeType } from '../time-comparison'; | ||
import { t } from '../translation'; | ||
import { ensureIsArray } from '../utils'; | ||
|
||
export const validateTimeComparisonRangeValues = ( | ||
timeRangeValue?: any, | ||
controlValue?: any, | ||
) => { | ||
const isCustomTimeRange = timeRangeValue === ComparisonTimeRangeType.Custom; | ||
const isCustomControlEmpty = controlValue?.every( | ||
(val: any) => ensureIsArray(val).length === 0, | ||
); | ||
return isCustomTimeRange && isCustomControlEmpty | ||
? [t('Filters for comparison must have a value')] | ||
: []; | ||
}; | ||
|
||
export default validateTimeComparisonRangeValues; |
Oops, something went wrong.