@adaptabletools/adaptable 12.1.6 → 12.1.8-canary.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/base.css +11 -49
- package/bundle.cjs.js +106 -106
- package/index.css +13 -60
- package/package.json +1 -1
- package/publishTimestamp.d.ts +1 -1
- package/publishTimestamp.js +1 -1
- package/src/AdaptableInterfaces/IAdaptable.d.ts +2 -0
- package/src/AdaptableOptions/ColumnOptions.d.ts +2 -4
- package/src/AdaptableOptions/FilterOptions.d.ts +12 -0
- package/src/AdaptableOptions/FinancePluginOptions.d.ts +22 -1
- package/src/AdaptableOptions/StateOptions.d.ts +25 -12
- package/src/Api/ColumnApi.d.ts +5 -0
- package/src/Api/ExportApi.d.ts +5 -0
- package/src/Api/FilterApi.d.ts +23 -0
- package/src/Api/FlashingCellApi.d.ts +8 -0
- package/src/Api/GridApi.d.ts +1 -0
- package/src/Api/Implementation/ColumnApiImpl.d.ts +1 -0
- package/src/Api/Implementation/ColumnApiImpl.js +5 -1
- package/src/Api/Implementation/ExportApiImpl.d.ts +3 -1
- package/src/Api/Implementation/ExportApiImpl.js +19 -3
- package/src/Api/Implementation/FilterApiImpl.d.ts +5 -0
- package/src/Api/Implementation/FilterApiImpl.js +35 -3
- package/src/Api/Implementation/FlashingCellApiImpl.d.ts +1 -0
- package/src/Api/Implementation/FlashingCellApiImpl.js +4 -0
- package/src/Api/Implementation/GridApiImpl.d.ts +1 -0
- package/src/Api/Implementation/InternalApiImpl.d.ts +0 -1
- package/src/Api/Implementation/InternalApiImpl.js +0 -3
- package/src/Api/Implementation/PredicateApiImpl.js +4 -0
- package/src/Api/Implementation/QueryLanguageApiImpl.js +9 -1
- package/src/Api/InternalApi.d.ts +0 -1
- package/src/Api/SystemStatusApi.d.ts +1 -1
- package/src/Api/ToolPanelApi.d.ts +1 -1
- package/src/PredefinedConfig/CalculatedColumnState.d.ts +2 -2
- package/src/PredefinedConfig/Common/AdaptablePredicate.js +30 -10
- package/src/PredefinedConfig/Common/AdaptableQuery.js +1 -1
- package/src/PredefinedConfig/Common/AggregationColumns.d.ts +6 -0
- package/src/PredefinedConfig/Common/AggregationColumns.js +4 -0
- package/src/PredefinedConfig/Common/ColumnFilter.d.ts +2 -2
- package/src/PredefinedConfig/Common/Enums.d.ts +0 -15
- package/src/PredefinedConfig/Common/Enums.js +1 -18
- package/src/PredefinedConfig/Common/SpecialColumnSettings.d.ts +6 -6
- package/src/PredefinedConfig/ExportState.d.ts +12 -4
- package/src/PredefinedConfig/LayoutState.d.ts +2 -1
- package/src/PredefinedConfig/PopupState.d.ts +1 -2
- package/src/Redux/ActionsReducers/AlertRedux.d.ts +1 -1
- package/src/Redux/ActionsReducers/AlertRedux.js +1 -1
- package/src/Redux/ActionsReducers/ConditionalStyleRedux.d.ts +1 -1
- package/src/Redux/ActionsReducers/ConditionalStyleRedux.js +1 -1
- package/src/Redux/ActionsReducers/CustomSortRedux.d.ts +1 -1
- package/src/Redux/ActionsReducers/CustomSortRedux.js +1 -1
- package/src/Redux/ActionsReducers/FlashingCellRedux.d.ts +1 -1
- package/src/Redux/ActionsReducers/FlashingCellRedux.js +1 -1
- package/src/Redux/ActionsReducers/FormatColumnRedux.d.ts +1 -1
- package/src/Redux/ActionsReducers/FormatColumnRedux.js +1 -1
- package/src/Redux/ActionsReducers/LayoutRedux.d.ts +28 -0
- package/src/Redux/ActionsReducers/LayoutRedux.js +80 -2
- package/src/Redux/ActionsReducers/PlusMinusRedux.d.ts +1 -1
- package/src/Redux/ActionsReducers/PlusMinusRedux.js +1 -1
- package/src/Redux/ActionsReducers/PopupRedux.d.ts +0 -2
- package/src/Redux/ActionsReducers/PopupRedux.js +1 -28
- package/src/Redux/ActionsReducers/ScheduleRedux.d.ts +5 -5
- package/src/Redux/ActionsReducers/ScheduleRedux.js +5 -5
- package/src/Redux/ActionsReducers/ShortcutRedux.d.ts +1 -1
- package/src/Redux/ActionsReducers/ShortcutRedux.js +1 -1
- package/src/Redux/ActionsReducers/SystemRedux.d.ts +1 -2
- package/src/Redux/ActionsReducers/SystemRedux.js +1 -2
- package/src/Redux/Store/AdaptableStore.js +20 -6
- package/src/Strategy/AlertModule.d.ts +1 -0
- package/src/Strategy/AlertModule.js +20 -0
- package/src/Strategy/CalculatedColumnModule.js +2 -2
- package/src/Strategy/ExportModule.d.ts +0 -1
- package/src/Strategy/ExportModule.js +0 -16
- package/src/Strategy/FilterModule.js +6 -0
- package/src/Strategy/FlashingCellModule.js +2 -2
- package/src/Strategy/Interface/IModule.d.ts +4 -0
- package/src/Strategy/LayoutModule.js +20 -20
- package/src/Strategy/Utilities/FormatColumn/getFormatColumnStyleViewItems.js +16 -1
- package/src/Strategy/Utilities/Layout/getLayoutFilterViewItems.js +15 -11
- package/src/Utilities/Constants/DocumentationLinkConstants.d.ts +1 -0
- package/src/Utilities/Constants/DocumentationLinkConstants.js +2 -1
- package/src/Utilities/Defaults/DefaultAdaptableOptions.js +2 -0
- package/src/Utilities/ExpressionFunctions/aggregatedBooleanExpressionFunctions.d.ts +12 -2
- package/src/Utilities/ExpressionFunctions/aggregatedBooleanExpressionFunctions.js +30 -66
- package/src/Utilities/ExpressionFunctions/aggregatedScalarExpressionFunctions.d.ts +22 -6
- package/src/Utilities/ExpressionFunctions/aggregatedScalarExpressionFunctions.js +423 -220
- package/src/Utilities/ExpressionFunctions/expressionFunctionUtils.d.ts +7 -1
- package/src/Utilities/ExpressionFunctions/expressionFunctionUtils.js +23 -7
- package/src/Utilities/ExpressionFunctions/scalarAggregationHelper.d.ts +0 -1
- package/src/Utilities/ExpressionFunctions/scalarAggregationHelper.js +6 -54
- package/src/Utilities/ExpressionFunctions/scalarExpressionFunctions.js +17 -5
- package/src/Utilities/Helpers/CalendarHelper.js +10 -7
- package/src/Utilities/Helpers/DateHelper.d.ts +0 -26
- package/src/Utilities/Helpers/DateHelper.js +2 -32
- package/src/Utilities/Interface/MessagePopups.d.ts +0 -4
- package/src/Utilities/ObjectFactory.d.ts +6 -4
- package/src/Utilities/ObjectFactory.js +30 -17
- package/src/Utilities/Services/AggregatedScalarLiveValue.d.ts +25 -0
- package/src/Utilities/Services/AggregatedScalarLiveValue.js +103 -0
- package/src/Utilities/Services/AlertService.d.ts +0 -1
- package/src/Utilities/Services/AlertService.js +5 -17
- package/src/Utilities/Services/CalculatedColumnExpressionService.d.ts +4 -4
- package/src/Utilities/Services/CalculatedColumnExpressionService.js +29 -154
- package/src/Utilities/Services/Interface/ICalculatedColumnExpressionService.d.ts +2 -2
- package/src/Utilities/Services/Interface/IQueryLanguageService.d.ts +6 -3
- package/src/Utilities/Services/QueryLanguageService.d.ts +6 -3
- package/src/Utilities/Services/QueryLanguageService.js +23 -6
- package/src/Utilities/Services/ReportService.js +47 -46
- package/src/View/AdaptableView.js +1 -2
- package/src/View/CalculatedColumn/Utilities/getCalculatedColumnSettingsTags.d.ts +2 -0
- package/src/View/CalculatedColumn/Utilities/{getCalculatedColumnSettingTags.js → getCalculatedColumnSettingsTags.js} +5 -3
- package/src/View/CalculatedColumn/Wizard/CalculatedColumnDefinitionWizardSection.d.ts +10 -0
- package/src/View/CalculatedColumn/Wizard/CalculatedColumnDefinitionWizardSection.js +80 -0
- package/src/View/CalculatedColumn/Wizard/CalculatedColumnExpressionWizardSection.js +21 -15
- package/src/View/CalculatedColumn/Wizard/CalculatedColumnSettingsWizardSection.d.ts +1 -2
- package/src/View/CalculatedColumn/Wizard/CalculatedColumnSettingsWizardSection.js +10 -53
- package/src/View/CalculatedColumn/Wizard/CalculatedColumnWizard.js +14 -3
- package/src/View/Components/AdaptableDateInput/index.js +1 -1
- package/src/View/Components/AdaptableObjectList/AdaptableObjectCompactList.js +42 -6
- package/src/View/Components/AdaptableObjectList/AdaptableObjectList.js +1 -1
- package/src/View/Components/EntityRulesEditor/index.js +26 -5
- package/src/View/Components/FilterForm/FilterForm.js +8 -4
- package/src/View/Components/FilterForm/ListBoxFilterForm.js +1 -0
- package/src/View/Components/FilterForm/QuickFilterForm.js +10 -6
- package/src/View/Components/PermittedValuesSelector/PermitedValuesSelector.d.ts +9 -0
- package/src/View/Components/PermittedValuesSelector/PermitedValuesSelector.js +28 -0
- package/src/View/Components/PermittedValuesSelector/index.d.ts +1 -0
- package/src/View/Components/PermittedValuesSelector/index.js +5 -0
- package/src/View/Components/Popups/AdaptablePopup/Navigation.js +2 -2
- package/src/View/Components/Popups/AdaptableToaster.js +2 -7
- package/src/View/Components/Popups/WindowPopups/windowFactory.d.ts +0 -1
- package/src/View/Components/Popups/WindowPopups/windowFactory.js +1 -4
- package/src/View/Export/ExportViewPanel.d.ts +1 -2
- package/src/View/Export/ExportViewPanel.js +2 -6
- package/src/View/Export/Wizard/ReportColumnTypeWizard.d.ts +1 -2
- package/src/View/Export/Wizard/ReportColumnTypeWizard.js +11 -12
- package/src/View/Export/Wizard/ReportRowTypeWizard.d.ts +1 -2
- package/src/View/Export/Wizard/ReportRowTypeWizard.js +12 -13
- package/src/View/Export/Wizard/ReportSettingsWizard.js +1 -2
- package/src/View/Filter/FilterViewPanel.js +20 -4
- package/src/View/FormatColumn/Wizard/FormatColumnFormatWizardSection.js +1 -1
- package/src/View/FreeTextColumn/FreeTextColumnSummary.js +1 -2
- package/src/View/FreeTextColumn/Wizard/FreeTextColumnSettingsWizardSection.d.ts +1 -1
- package/src/View/FreeTextColumn/Wizard/FreeTextColumnWizard.js +1 -1
- package/src/View/Layout/Wizard/{LayoutEditor → Components}/ColumnLabels.d.ts +0 -0
- package/src/View/Layout/Wizard/{LayoutEditor → Components}/ColumnLabels.js +0 -0
- package/src/View/Layout/Wizard/LayoutWizard.js +1 -0
- package/src/View/Layout/Wizard/sections/AggregationsSection.d.ts +1 -0
- package/src/View/Layout/Wizard/sections/AggregationsSection.js +69 -8
- package/src/View/Layout/Wizard/sections/ColumnsSection.js +1 -1
- package/src/View/Query/QueryViewPanel.js +1 -1
- package/src/agGrid/Adaptable.d.ts +11 -3
- package/src/agGrid/Adaptable.js +224 -150
- package/src/agGrid/agGridHelper.d.ts +1 -0
- package/src/agGrid/agGridHelper.js +5 -3
- package/src/agGrid/agGridMenuHelper.d.ts +1 -0
- package/src/agGrid/agGridMenuHelper.js +4 -2
- package/src/agGrid/weightedAverage.d.ts +6 -0
- package/src/agGrid/weightedAverage.js +66 -0
- package/src/bundle-dependencies/bundles/react-toastify/index.js +1 -1
- package/src/components/ExpressionEditor/BaseEditorInput.d.ts +1 -0
- package/src/components/ExpressionEditor/BaseEditorInput.js +2 -3
- package/src/components/ExpressionEditor/EditorInput.d.ts +1 -1
- package/src/components/ExpressionEditor/EditorInput.js +24 -4
- package/src/components/ExpressionEditor/{EditorInputReactive.d.ts → EditorInputWithWhereClause.d.ts} +3 -3
- package/src/components/ExpressionEditor/{EditorInputReactive.js → EditorInputWithWhereClause.js} +6 -5
- package/src/components/ExpressionEditor/editorButtonsAggregatedBoolean.d.ts +2 -0
- package/src/components/ExpressionEditor/{editorButtonsReactive.js → editorButtonsAggregatedBoolean.js} +22 -37
- package/src/components/ExpressionEditor/editorButtonsAggregatedScalar.js +5 -10
- package/src/components/ExpressionEditor/editorButtonsCumulativeAggregatedScalar.d.ts +2 -0
- package/src/components/ExpressionEditor/editorButtonsCumulativeAggregatedScalar.js +50 -0
- package/src/components/ExpressionEditor/editorButtonsObservable.d.ts +2 -0
- package/src/components/ExpressionEditor/editorButtonsObservable.js +40 -0
- package/src/components/ExpressionEditor/index.d.ts +1 -1
- package/src/components/ExpressionEditor/index.js +26 -5
- package/src/metamodel/adaptable.metamodel.d.ts +55 -1
- package/src/metamodel/adaptable.metamodel.js +1 -1
- package/src/types.d.ts +3 -3
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/src/View/CalculatedColumn/Utilities/getCalculatedColumnSettingTags.d.ts +0 -2
- package/src/View/Layout/LayoutEditorStandalonePopup.d.ts +0 -3
- package/src/View/Layout/LayoutEditorStandalonePopup.js +0 -78
- package/src/View/Layout/Wizard/LayoutEditor/ColumnList.d.ts +0 -27
- package/src/View/Layout/Wizard/LayoutEditor/ColumnList.js +0 -86
- package/src/View/Layout/Wizard/LayoutEditor/ColumnSortList.d.ts +0 -16
- package/src/View/Layout/Wizard/LayoutEditor/ColumnSortList.js +0 -89
- package/src/View/Layout/Wizard/LayoutEditor/PivotList.d.ts +0 -15
- package/src/View/Layout/Wizard/LayoutEditor/PivotList.js +0 -70
- package/src/View/Layout/Wizard/LayoutEditor/RowGroupsList.d.ts +0 -15
- package/src/View/Layout/Wizard/LayoutEditor/RowGroupsList.js +0 -70
- package/src/View/Layout/Wizard/LayoutEditor/droppableIds.d.ts +0 -7
- package/src/View/Layout/Wizard/LayoutEditor/droppableIds.js +0 -11
- package/src/View/Layout/Wizard/LayoutEditor/getItemStyle.d.ts +0 -6
- package/src/View/Layout/Wizard/LayoutEditor/getItemStyle.js +0 -26
- package/src/View/Layout/Wizard/LayoutEditor/index.d.ts +0 -9
- package/src/View/Layout/Wizard/LayoutEditor/index.js +0 -367
- package/src/View/Layout/Wizard/LayoutEditor/reducer.d.ts +0 -28
- package/src/View/Layout/Wizard/LayoutEditor/reducer.js +0 -46
- package/src/View/Layout/Wizard/LayoutEditor/utils.d.ts +0 -10
- package/src/View/Layout/Wizard/LayoutEditor/utils.js +0 -14
- package/src/View/Layout/Wizard/LayoutEditorWizard.d.ts +0 -30
- package/src/View/Layout/Wizard/LayoutEditorWizard.js +0 -132
- package/src/components/ExpressionEditor/editorButtonsReactive.d.ts +0 -2
|
@@ -25,11 +25,10 @@ class AlertService {
|
|
|
25
25
|
createReactiveAlert(alertDefinition) {
|
|
26
26
|
// if there is already a reactive alert for this definition, delete it (possible in case of editing definitions),
|
|
27
27
|
this.deleteReactiveAlert(alertDefinition);
|
|
28
|
-
if (!alertDefinition.Rule.ObservableExpression
|
|
29
|
-
!alertDefinition.Rule.AggregatedBooleanExpression) {
|
|
28
|
+
if (!alertDefinition.Rule.ObservableExpression) {
|
|
30
29
|
return;
|
|
31
30
|
}
|
|
32
|
-
const isValidExpression = this.
|
|
31
|
+
const isValidExpression = this.adaptableApi.queryLanguageApi.isValidObservableExpression(alertDefinition.Rule.ObservableExpression, ModuleConstants_1.AlertModuleId, `Invalid Alert rule with observable expression `);
|
|
33
32
|
if (!isValidExpression) {
|
|
34
33
|
LoggingHelper_1.LogAdaptableWarning(`Could NOT create reactive alert due to invalid Rule definition!`, alertDefinition.Rule);
|
|
35
34
|
return;
|
|
@@ -58,21 +57,10 @@ class AlertService {
|
|
|
58
57
|
this.reactiveAlertsMap.delete(alertDefinition.Uuid);
|
|
59
58
|
}
|
|
60
59
|
}
|
|
61
|
-
isValidExpression(rule) {
|
|
62
|
-
return rule.ObservableExpression
|
|
63
|
-
? this.adaptableApi.queryLanguageApi.isValidObservableExpression(rule.ObservableExpression, ModuleConstants_1.AlertModuleId, `Invalid Alert rule with observable expression `)
|
|
64
|
-
: rule.AggregatedBooleanExpression
|
|
65
|
-
? this.adaptableApi.queryLanguageApi.isValidAggregatedBooleanExpression(rule.AggregatedBooleanExpression, ModuleConstants_1.AlertModuleId, `Invalid Alert rule with aggregation expression `)
|
|
66
|
-
: false;
|
|
67
|
-
}
|
|
68
60
|
evaluateReactiveExpression(rule) {
|
|
69
|
-
return
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
.evaluateObservableExpression(rule.ObservableExpression, ModuleConstants_1.AlertModuleId)
|
|
73
|
-
: this.adaptableApi.internalApi
|
|
74
|
-
.getQueryLanguageService()
|
|
75
|
-
.evaluateAggregatedBooleanExpression(rule.AggregatedBooleanExpression, ModuleConstants_1.AlertModuleId);
|
|
61
|
+
return this.adaptableApi.internalApi
|
|
62
|
+
.getQueryLanguageService()
|
|
63
|
+
.evaluateObservableExpression(rule.ObservableExpression, ModuleConstants_1.AlertModuleId);
|
|
76
64
|
}
|
|
77
65
|
}
|
|
78
66
|
exports.AlertService = AlertService;
|
|
@@ -4,12 +4,12 @@ import { AdaptableCalculatedColumnQuery, CalculatedColumn } from '../../Predefin
|
|
|
4
4
|
import { AdaptableApi } from '../../../types';
|
|
5
5
|
export declare class CalculatedColumnExpressionService implements ICalculatedColumnExpressionService {
|
|
6
6
|
private adaptableApi;
|
|
7
|
-
private
|
|
7
|
+
private aggregatedScalarLiveValuesMap;
|
|
8
8
|
constructor(adaptableApi: AdaptableApi);
|
|
9
9
|
destroy(): void;
|
|
10
10
|
getCalculatedColumnDataType(calculatedColumnQuery: AdaptableCalculatedColumnQuery): 'String' | 'Number' | 'Boolean' | 'Date';
|
|
11
11
|
isCalculatedColumnQueryValid(calculatedColumnQuery: AdaptableCalculatedColumnQuery): boolean;
|
|
12
|
-
evaluateCalculatedColumnQuery(calculatedColumn: CalculatedColumn,
|
|
13
|
-
|
|
14
|
-
|
|
12
|
+
evaluateCalculatedColumnQuery(calculatedColumn: CalculatedColumn, rowNode: RowNode): any;
|
|
13
|
+
createAggregatedScalarLiveValue(calculatedColumn: CalculatedColumn): void;
|
|
14
|
+
destroyAggregatedScalarLiveValue(calculatedColumn: CalculatedColumn): void;
|
|
15
15
|
}
|
|
@@ -3,11 +3,11 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.CalculatedColumnExpressionService = void 0;
|
|
4
4
|
const LoggingHelper_1 = require("../Helpers/LoggingHelper");
|
|
5
5
|
const ModuleConstants_1 = require("../Constants/ModuleConstants");
|
|
6
|
-
const
|
|
6
|
+
const AggregatedScalarLiveValue_1 = require("./AggregatedScalarLiveValue");
|
|
7
7
|
class CalculatedColumnExpressionService {
|
|
8
8
|
constructor(adaptableApi) {
|
|
9
9
|
this.adaptableApi = adaptableApi;
|
|
10
|
-
this.
|
|
10
|
+
this.aggregatedScalarLiveValuesMap = new Map();
|
|
11
11
|
this.adaptableApi = adaptableApi;
|
|
12
12
|
this.adaptableApi.internalApi
|
|
13
13
|
.getDataService()
|
|
@@ -17,12 +17,12 @@ class CalculatedColumnExpressionService {
|
|
|
17
17
|
return;
|
|
18
18
|
}
|
|
19
19
|
const refreshedCalculatedColumns = [];
|
|
20
|
-
this.
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
refreshedCalculatedColumns.push(
|
|
20
|
+
this.aggregatedScalarLiveValuesMap.forEach((aggregatedScalarLiveValue, calculatedColumnId) => {
|
|
21
|
+
const calculatedColumn = this.adaptableApi.calculatedColumnApi.getCalculatedColumnById(calculatedColumnId);
|
|
22
|
+
const columnDependencies = this.adaptableApi.calculatedColumnApi.getReferencedColumnIdsForCalculatedColumn(calculatedColumn);
|
|
23
|
+
if (columnDependencies.includes(cellDataChangedInfo.column.columnId)) {
|
|
24
|
+
aggregatedScalarLiveValue.refresh();
|
|
25
|
+
refreshedCalculatedColumns.push(calculatedColumn.ColumnId);
|
|
26
26
|
}
|
|
27
27
|
});
|
|
28
28
|
if (refreshedCalculatedColumns.length) {
|
|
@@ -31,9 +31,10 @@ class CalculatedColumnExpressionService {
|
|
|
31
31
|
});
|
|
32
32
|
this.adaptableApi.eventApi.on('GridDataChanged', () => {
|
|
33
33
|
const refreshedCalculatedColumns = [];
|
|
34
|
-
this.
|
|
35
|
-
|
|
36
|
-
|
|
34
|
+
this.aggregatedScalarLiveValuesMap.forEach((aggregatedScalarLiveValue, calculatedColumnId) => {
|
|
35
|
+
const calculatedColumn = this.adaptableApi.calculatedColumnApi.getCalculatedColumnById(calculatedColumnId);
|
|
36
|
+
aggregatedScalarLiveValue.refresh();
|
|
37
|
+
refreshedCalculatedColumns.push(calculatedColumn.ColumnId);
|
|
37
38
|
});
|
|
38
39
|
if (refreshedCalculatedColumns.length) {
|
|
39
40
|
this.adaptableApi.gridApi.refreshCells(null, refreshedCalculatedColumns);
|
|
@@ -41,9 +42,8 @@ class CalculatedColumnExpressionService {
|
|
|
41
42
|
});
|
|
42
43
|
}
|
|
43
44
|
destroy() {
|
|
44
|
-
|
|
45
|
-
this.
|
|
46
|
-
this.aggregatedScalarCalculatedColumnsMap = null;
|
|
45
|
+
this.aggregatedScalarLiveValuesMap.clear();
|
|
46
|
+
this.aggregatedScalarLiveValuesMap = null;
|
|
47
47
|
}
|
|
48
48
|
getCalculatedColumnDataType(calculatedColumnQuery) {
|
|
49
49
|
try {
|
|
@@ -99,21 +99,21 @@ class CalculatedColumnExpressionService {
|
|
|
99
99
|
// if query has neither a ScalarExpression nor an AggregatedScalarExpression => it can only be false
|
|
100
100
|
return false;
|
|
101
101
|
}
|
|
102
|
-
evaluateCalculatedColumnQuery(calculatedColumn,
|
|
102
|
+
evaluateCalculatedColumnQuery(calculatedColumn, rowNode) {
|
|
103
103
|
var _a, _b, _c, _d, _e;
|
|
104
104
|
try {
|
|
105
|
-
if (this.adaptableApi.gridApi.isGroupRowNode(
|
|
105
|
+
if (this.adaptableApi.gridApi.isGroupRowNode(rowNode)) {
|
|
106
106
|
return undefined;
|
|
107
107
|
}
|
|
108
108
|
// no validation here, this function has to be as performant as possible
|
|
109
109
|
if ((_a = calculatedColumn === null || calculatedColumn === void 0 ? void 0 : calculatedColumn.Query) === null || _a === void 0 ? void 0 : _a.ScalarExpression) {
|
|
110
110
|
return this.adaptableApi.internalApi
|
|
111
111
|
.getQueryLanguageService()
|
|
112
|
-
.evaluateScalarExpression(calculatedColumn.Query.ScalarExpression, ModuleConstants_1.CalculatedColumnModuleId,
|
|
112
|
+
.evaluateScalarExpression(calculatedColumn.Query.ScalarExpression, ModuleConstants_1.CalculatedColumnModuleId, rowNode);
|
|
113
113
|
}
|
|
114
114
|
if ((_b = calculatedColumn === null || calculatedColumn === void 0 ? void 0 : calculatedColumn.Query) === null || _b === void 0 ? void 0 : _b.AggregatedScalarExpression) {
|
|
115
|
-
const
|
|
116
|
-
return
|
|
115
|
+
const aggregatedScalarLiveValue = this.aggregatedScalarLiveValuesMap.get(calculatedColumn.Uuid);
|
|
116
|
+
return aggregatedScalarLiveValue === null || aggregatedScalarLiveValue === void 0 ? void 0 : aggregatedScalarLiveValue.getAggregatedValueForRow(rowNode);
|
|
117
117
|
}
|
|
118
118
|
}
|
|
119
119
|
catch (error) {
|
|
@@ -121,149 +121,24 @@ class CalculatedColumnExpressionService {
|
|
|
121
121
|
return null;
|
|
122
122
|
}
|
|
123
123
|
}
|
|
124
|
-
|
|
125
|
-
var _a, _b;
|
|
124
|
+
createAggregatedScalarLiveValue(calculatedColumn) {
|
|
125
|
+
var _a, _b, _c;
|
|
126
126
|
// if there is already an aggregated scalar, delete it (possible when editing)
|
|
127
|
-
this.
|
|
127
|
+
this.destroyAggregatedScalarLiveValue(calculatedColumn);
|
|
128
128
|
if ((_a = calculatedColumn.Query) === null || _a === void 0 ? void 0 : _a.AggregatedScalarExpression) {
|
|
129
129
|
try {
|
|
130
|
-
const
|
|
131
|
-
|
|
130
|
+
const aggregatedScalarLiveValue = new AggregatedScalarLiveValue_1.AggregatedScalarLiveValue({
|
|
131
|
+
aggregatedScalarExpression: (_b = calculatedColumn.Query) === null || _b === void 0 ? void 0 : _b.AggregatedScalarExpression,
|
|
132
|
+
}, ModuleConstants_1.CalculatedColumnModuleId, this.adaptableApi);
|
|
133
|
+
this.aggregatedScalarLiveValuesMap.set(calculatedColumn.Uuid, aggregatedScalarLiveValue);
|
|
132
134
|
}
|
|
133
135
|
catch (e) {
|
|
134
|
-
LoggingHelper_1.LogAdaptableError(`Creating CalculatedColumn ('${(
|
|
136
|
+
LoggingHelper_1.LogAdaptableError(`Creating CalculatedColumn ('${(_c = calculatedColumn.Query) === null || _c === void 0 ? void 0 : _c.AggregatedScalarExpression}') failed!\n${e.message}`);
|
|
135
137
|
}
|
|
136
138
|
}
|
|
137
139
|
}
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
(_a = this.aggregatedScalarCalculatedColumnsMap.get(calculatedColumn.Uuid)) === null || _a === void 0 ? void 0 : _a.destroy();
|
|
141
|
-
this.aggregatedScalarCalculatedColumnsMap.delete(calculatedColumn.Uuid);
|
|
140
|
+
destroyAggregatedScalarLiveValue(calculatedColumn) {
|
|
141
|
+
this.aggregatedScalarLiveValuesMap.delete(calculatedColumn.Uuid);
|
|
142
142
|
}
|
|
143
143
|
}
|
|
144
144
|
exports.CalculatedColumnExpressionService = CalculatedColumnExpressionService;
|
|
145
|
-
class AggregatedScalarCalculatedColumn {
|
|
146
|
-
constructor(calculatedColumn, adaptableApi) {
|
|
147
|
-
this.calculatedColumn = calculatedColumn;
|
|
148
|
-
this.adaptableApi = adaptableApi;
|
|
149
|
-
const aggregationConfig = this.adaptableApi.internalApi
|
|
150
|
-
.getQueryLanguageService()
|
|
151
|
-
.evaluateAggregatedScalarExpression(calculatedColumn.Query.AggregatedScalarExpression, ModuleConstants_1.CalculatedColumnModuleId);
|
|
152
|
-
this.expressionEvaluation = aggregationConfig.value;
|
|
153
|
-
this.aggregationResult = this.computeAggregatedValue(this.expressionEvaluation);
|
|
154
|
-
// currently we support only one reducer
|
|
155
|
-
this.aggregationReducerName = Object.keys(this.expressionEvaluation.aggregationParams.reducers)[0];
|
|
156
|
-
}
|
|
157
|
-
destroy() {
|
|
158
|
-
this.expressionEvaluation = null;
|
|
159
|
-
this.calculatedColumn = null;
|
|
160
|
-
this.adaptableApi = null;
|
|
161
|
-
this.aggregationResult = null;
|
|
162
|
-
}
|
|
163
|
-
getAggregatedColumnValue(rowNode) {
|
|
164
|
-
const aggregationValue = this.getAggregationValue(rowNode);
|
|
165
|
-
if (this.expressionEvaluation.rowValueGetter) {
|
|
166
|
-
return this.expressionEvaluation.rowValueGetter(rowNode, aggregationValue);
|
|
167
|
-
}
|
|
168
|
-
return aggregationValue;
|
|
169
|
-
}
|
|
170
|
-
refreshAggregatedColumnValue() {
|
|
171
|
-
const aggregationConfig = this.adaptableApi.internalApi
|
|
172
|
-
.getQueryLanguageService()
|
|
173
|
-
.evaluateAggregatedScalarExpression(this.calculatedColumn.Query.AggregatedScalarExpression, ModuleConstants_1.CalculatedColumnModuleId);
|
|
174
|
-
this.expressionEvaluation = aggregationConfig.value;
|
|
175
|
-
this.aggregationResult = this.computeAggregatedValue(this.expressionEvaluation);
|
|
176
|
-
}
|
|
177
|
-
getCalculatedColumnId() {
|
|
178
|
-
return this.calculatedColumn.ColumnId;
|
|
179
|
-
}
|
|
180
|
-
getColumnDependencies() {
|
|
181
|
-
return this.expressionEvaluation.columnDependencies;
|
|
182
|
-
}
|
|
183
|
-
computeAggregatedValue(expressionEvaluation) {
|
|
184
|
-
var _a;
|
|
185
|
-
const gridRowNodes = this.adaptableApi.gridApi.getAllRowNodes();
|
|
186
|
-
// we iterate over the RowNode list (we need this to handle complex column values (nested values, valueGetters etc)
|
|
187
|
-
// so we will map the fieldNames to RowNode.data
|
|
188
|
-
const mapReducerValueGetter = (fieldName) => {
|
|
189
|
-
return (rowNode) => {
|
|
190
|
-
return this.adaptableApi.gridApi.getRawValueFromRowNode(rowNode, fieldName);
|
|
191
|
-
};
|
|
192
|
-
};
|
|
193
|
-
Object.values(expressionEvaluation.aggregationParams.reducers).forEach((aggregationReducer) => {
|
|
194
|
-
aggregationReducer.getter = mapReducerValueGetter(aggregationReducer.field);
|
|
195
|
-
// nullify the field to force the fallback on the getter fn
|
|
196
|
-
aggregationReducer.field = null;
|
|
197
|
-
});
|
|
198
|
-
const mapGroupByToKey = (fieldName) => {
|
|
199
|
-
return (_unusableProperty, rowNode) => this.adaptableApi.gridApi.getRawValueFromRowNode(rowNode, fieldName);
|
|
200
|
-
};
|
|
201
|
-
(_a = expressionEvaluation.aggregationParams.groupBy) === null || _a === void 0 ? void 0 : _a.forEach((groupByDef) => {
|
|
202
|
-
groupByDef.toKey = mapGroupByToKey(groupByDef.field);
|
|
203
|
-
});
|
|
204
|
-
if (!expressionEvaluation.cumulateOver) {
|
|
205
|
-
let aggregatedRowNodes = gridRowNodes;
|
|
206
|
-
if (expressionEvaluation.sortByColumn) {
|
|
207
|
-
const sortByColumn = expressionEvaluation.sortByColumn;
|
|
208
|
-
const getRowNodeValue = (rowNode, columnId) => this.adaptableApi.gridApi.getRawValueFromRowNode(rowNode, columnId);
|
|
209
|
-
if (expressionEvaluation.filterUndefinedValues) {
|
|
210
|
-
aggregatedRowNodes = gridRowNodes.filter((node) => {
|
|
211
|
-
const rowValue = getRowNodeValue(node, sortByColumn);
|
|
212
|
-
return rowValue != undefined;
|
|
213
|
-
});
|
|
214
|
-
}
|
|
215
|
-
// currently, we support only ascending sorting
|
|
216
|
-
aggregatedRowNodes.sort((first, second) => {
|
|
217
|
-
const firstValue = getRowNodeValue(first, sortByColumn);
|
|
218
|
-
const secondValue = getRowNodeValue(second, sortByColumn);
|
|
219
|
-
if (firstValue < secondValue) {
|
|
220
|
-
return -1;
|
|
221
|
-
}
|
|
222
|
-
if (firstValue > secondValue) {
|
|
223
|
-
return 1;
|
|
224
|
-
}
|
|
225
|
-
return 0;
|
|
226
|
-
});
|
|
227
|
-
}
|
|
228
|
-
return scalarAggregationHelper_1.aggregate(expressionEvaluation.aggregationParams, aggregatedRowNodes);
|
|
229
|
-
}
|
|
230
|
-
else {
|
|
231
|
-
// 1. sort grid data by given OVER column
|
|
232
|
-
const sortByColumn = expressionEvaluation.cumulateOver;
|
|
233
|
-
const getRowNodeValue = (rowNode, columnId) => this.adaptableApi.gridApi.getRawValueFromRowNode(rowNode, columnId);
|
|
234
|
-
// currently, we support only ascending sorting
|
|
235
|
-
gridRowNodes.sort((first, second) => {
|
|
236
|
-
const firstValue = getRowNodeValue(first, sortByColumn);
|
|
237
|
-
const secondValue = getRowNodeValue(second, sortByColumn);
|
|
238
|
-
if (firstValue < secondValue) {
|
|
239
|
-
return -1;
|
|
240
|
-
}
|
|
241
|
-
if (firstValue > secondValue) {
|
|
242
|
-
return 1;
|
|
243
|
-
}
|
|
244
|
-
return 0;
|
|
245
|
-
});
|
|
246
|
-
// 2. add primary key column as the most specific groupBy
|
|
247
|
-
if (!expressionEvaluation.aggregationParams.groupBy) {
|
|
248
|
-
expressionEvaluation.aggregationParams.groupBy = [];
|
|
249
|
-
}
|
|
250
|
-
const gridPrimaryKeyColumn = this.adaptableApi.internalApi.getAdaptableOptions().primaryKey;
|
|
251
|
-
// !! aggregationParams mutated
|
|
252
|
-
expressionEvaluation.aggregationParams.groupBy.push({
|
|
253
|
-
field: gridPrimaryKeyColumn,
|
|
254
|
-
toKey: mapGroupByToKey(gridPrimaryKeyColumn),
|
|
255
|
-
});
|
|
256
|
-
// 3. cumulate
|
|
257
|
-
return scalarAggregationHelper_1.cumulate(expressionEvaluation.aggregationParams, gridRowNodes);
|
|
258
|
-
}
|
|
259
|
-
}
|
|
260
|
-
getAggregationValue(rowNode) {
|
|
261
|
-
var _a, _b;
|
|
262
|
-
if ((_a = this.expressionEvaluation.aggregationParams.groupBy) === null || _a === void 0 ? void 0 : _a.length) {
|
|
263
|
-
const groupColumns = this.expressionEvaluation.aggregationParams.groupBy.map((groupByParam) => groupByParam.field);
|
|
264
|
-
const groupKeys = groupColumns.map((groupColumnName) => this.adaptableApi.gridApi.getRawValueFromRowNode(rowNode, groupColumnName));
|
|
265
|
-
return (_b = this.aggregationResult.deepMap.get(groupKeys)) === null || _b === void 0 ? void 0 : _b.reducerResults[this.aggregationReducerName];
|
|
266
|
-
}
|
|
267
|
-
return this.aggregationResult.reducerResults[this.aggregationReducerName];
|
|
268
|
-
}
|
|
269
|
-
}
|
|
@@ -5,6 +5,6 @@ export interface ICalculatedColumnExpressionService extends IAdaptableService {
|
|
|
5
5
|
isCalculatedColumnQueryValid(calculatedColumnQuery: AdaptableCalculatedColumnQuery): boolean;
|
|
6
6
|
evaluateCalculatedColumnQuery(calculatedColumn: CalculatedColumn, rowNode: RowNode): any;
|
|
7
7
|
getCalculatedColumnDataType(calculatedColumnQuery: AdaptableCalculatedColumnQuery): 'String' | 'Number' | 'Boolean' | 'Date';
|
|
8
|
-
|
|
9
|
-
|
|
8
|
+
createAggregatedScalarLiveValue(calculatedColumn: CalculatedColumn): void;
|
|
9
|
+
destroyAggregatedScalarLiveValue(calculatedColumn: CalculatedColumn): void;
|
|
10
10
|
}
|
|
@@ -3,14 +3,15 @@ import { IAdaptableService } from './IAdaptableService';
|
|
|
3
3
|
import { RowNode } from '@ag-grid-community/all-modules';
|
|
4
4
|
import { CellDataChangedInfo } from '../../../PredefinedConfig/Common/CellDataChangedInfo';
|
|
5
5
|
import { AdaptableModule } from '../../../PredefinedConfig/Common/Types';
|
|
6
|
-
import {
|
|
6
|
+
import { ScalarAggregationParameter } from '../../ExpressionFunctions/aggregatedScalarExpressionFunctions';
|
|
7
7
|
import { ModuleExpressionFunctions } from '../../../AdaptableOptions/AdaptableQLOptions';
|
|
8
|
+
import { BooleanAggregationParameter } from '../../ExpressionFunctions/aggregatedBooleanExpressionFunctions';
|
|
8
9
|
export interface IQueryLanguageService extends IAdaptableService {
|
|
9
10
|
evaluateBooleanExpression(expression: string, module: AdaptableModule, rowNode: RowNode): boolean;
|
|
10
11
|
evaluateScalarExpression(expression: string, module: AdaptableModule, rowNode: RowNode): any;
|
|
11
12
|
evaluateObservableExpression(expression: string, module: AdaptableModule): Observable<CellDataChangedInfo>;
|
|
12
|
-
evaluateAggregatedBooleanExpression(expression: string, module: AdaptableModule):
|
|
13
|
-
evaluateAggregatedScalarExpression(expression: string, module: AdaptableModule):
|
|
13
|
+
evaluateAggregatedBooleanExpression(expression: string, module: AdaptableModule): BooleanAggregationParameter;
|
|
14
|
+
evaluateAggregatedScalarExpression(expression: string, module: AdaptableModule): ScalarAggregationParameter;
|
|
14
15
|
validateBoolean(expression: string, module: AdaptableModule, config?: {
|
|
15
16
|
force?: boolean;
|
|
16
17
|
}): {
|
|
@@ -29,7 +30,9 @@ export interface IQueryLanguageService extends IAdaptableService {
|
|
|
29
30
|
isValid: boolean;
|
|
30
31
|
errorMessage: string;
|
|
31
32
|
};
|
|
33
|
+
computeAggregatedBooleanValue(expression: string, module: AdaptableModule): boolean;
|
|
32
34
|
getModuleExpressionFunctions(module: AdaptableModule): ModuleExpressionFunctions;
|
|
33
35
|
getColumnsFromExpression(input: string): string[];
|
|
34
36
|
getNamedQueryNamesFromExpression(input: string): string[];
|
|
37
|
+
isCumulativeAggregate(input: string): boolean;
|
|
35
38
|
}
|
|
@@ -4,8 +4,9 @@ import { CellDataChangedInfo } from '../../PredefinedConfig/Common/CellDataChang
|
|
|
4
4
|
import { RowNode } from '@ag-grid-community/all-modules';
|
|
5
5
|
import { AdaptableModule } from '../../PredefinedConfig/Common/Types';
|
|
6
6
|
import { ModuleExpressionFunctions } from '../../AdaptableOptions/AdaptableQLOptions';
|
|
7
|
-
import {
|
|
7
|
+
import { ScalarAggregationParameter } from '../ExpressionFunctions/aggregatedScalarExpressionFunctions';
|
|
8
8
|
import { AdaptableApi } from '../../../types';
|
|
9
|
+
import { BooleanAggregationParameter } from '../ExpressionFunctions/aggregatedBooleanExpressionFunctions';
|
|
9
10
|
export declare class QueryLanguageService implements IQueryLanguageService {
|
|
10
11
|
private adaptableApi;
|
|
11
12
|
private cacheBooleanValidation;
|
|
@@ -16,9 +17,9 @@ export declare class QueryLanguageService implements IQueryLanguageService {
|
|
|
16
17
|
constructor(adaptableApi: AdaptableApi);
|
|
17
18
|
evaluateBooleanExpression(expression: string, module: AdaptableModule, rowNode: any): any;
|
|
18
19
|
evaluateScalarExpression(expression: string, module: AdaptableModule, rowNode: RowNode): any;
|
|
19
|
-
evaluateAggregatedScalarExpression(expression: string, module: AdaptableModule):
|
|
20
|
+
evaluateAggregatedScalarExpression(expression: string, module: AdaptableModule): ScalarAggregationParameter;
|
|
20
21
|
evaluateObservableExpression(reactiveExpression: string, module: AdaptableModule): Observable<CellDataChangedInfo>;
|
|
21
|
-
evaluateAggregatedBooleanExpression(aggregationExpression: string, module: AdaptableModule):
|
|
22
|
+
evaluateAggregatedBooleanExpression(aggregationExpression: string, module: AdaptableModule): BooleanAggregationParameter;
|
|
22
23
|
validateBoolean(expressionInput: string, module: AdaptableModule, config?: {
|
|
23
24
|
force?: boolean;
|
|
24
25
|
}): {
|
|
@@ -37,8 +38,10 @@ export declare class QueryLanguageService implements IQueryLanguageService {
|
|
|
37
38
|
isValid: boolean;
|
|
38
39
|
errorMessage: string;
|
|
39
40
|
};
|
|
41
|
+
computeAggregatedBooleanValue(expression: string, module: AdaptableModule): boolean;
|
|
40
42
|
getColumnsFromExpression(input?: string): string[];
|
|
41
43
|
getNamedQueryNamesFromExpression(input?: string): string[];
|
|
44
|
+
isCumulativeAggregate(input: string): boolean;
|
|
42
45
|
getModuleExpressionFunctions(module: AdaptableModule): ModuleExpressionFunctions;
|
|
43
46
|
destroy(): void;
|
|
44
47
|
private getBooleanAndScalarFunctions;
|
|
@@ -5,6 +5,7 @@ const tslib_1 = require("tslib");
|
|
|
5
5
|
const parser = tslib_1.__importStar(require("../../parser/src"));
|
|
6
6
|
const rxjs_1 = require("rxjs");
|
|
7
7
|
const LoggingHelper_1 = require("../Helpers/LoggingHelper");
|
|
8
|
+
const AggregatedScalarLiveValue_1 = require("./AggregatedScalarLiveValue");
|
|
8
9
|
class QueryLanguageService {
|
|
9
10
|
constructor(adaptableApi) {
|
|
10
11
|
this.adaptableApi = adaptableApi;
|
|
@@ -49,13 +50,13 @@ class QueryLanguageService {
|
|
|
49
50
|
evaluateAggregatedBooleanExpression(aggregationExpression, module) {
|
|
50
51
|
const moduleExpressionFunctions = this.getModuleExpressionFunctions(module);
|
|
51
52
|
const booleanAndScalarFunctions = this.getBooleanAndScalarFunctions(moduleExpressionFunctions);
|
|
52
|
-
const
|
|
53
|
+
const aggregationEvaluation = parser.evaluate(aggregationExpression, {
|
|
53
54
|
node: aggregationExpression,
|
|
54
55
|
adaptableApi: this.adaptableApi,
|
|
55
56
|
functions: moduleExpressionFunctions.aggregatedBooleanFunctions,
|
|
56
57
|
whereClauseFunctions: booleanAndScalarFunctions,
|
|
57
58
|
});
|
|
58
|
-
return
|
|
59
|
+
return aggregationEvaluation;
|
|
59
60
|
}
|
|
60
61
|
validateBoolean(expressionInput = '', module, config = { force: false }) {
|
|
61
62
|
var _a;
|
|
@@ -170,15 +171,16 @@ class QueryLanguageService {
|
|
|
170
171
|
return result;
|
|
171
172
|
}
|
|
172
173
|
try {
|
|
173
|
-
const
|
|
174
|
-
if (
|
|
174
|
+
const evaluationResult = this.evaluateAggregatedBooleanExpression(expression, module);
|
|
175
|
+
if (evaluationResult.type !== 'aggregationBoolean') {
|
|
175
176
|
const result = {
|
|
176
177
|
isValid: false,
|
|
177
|
-
errorMessage:
|
|
178
|
+
errorMessage: 'provided AggregatedBBoolean expression does not evaluate to a supported aggregation',
|
|
178
179
|
};
|
|
179
180
|
this.cacheAggregatedBooleanValidation.set(cacheKey, result);
|
|
180
181
|
return result;
|
|
181
182
|
}
|
|
183
|
+
// no exception,so everything seems to be fine
|
|
182
184
|
const result = { isValid: true, errorMessage: '' };
|
|
183
185
|
this.cacheAggregatedBooleanValidation.set(cacheKey, result);
|
|
184
186
|
return result;
|
|
@@ -208,7 +210,7 @@ class QueryLanguageService {
|
|
|
208
210
|
}
|
|
209
211
|
try {
|
|
210
212
|
const evaluationResult = this.evaluateAggregatedScalarExpression(expression, module);
|
|
211
|
-
if (evaluationResult.type !== '
|
|
213
|
+
if (evaluationResult.type !== 'aggregationScalar') {
|
|
212
214
|
const result = {
|
|
213
215
|
isValid: false,
|
|
214
216
|
errorMessage: 'provided AggregatedScalar expression does not evaluate to a supported aggregation',
|
|
@@ -230,12 +232,27 @@ class QueryLanguageService {
|
|
|
230
232
|
return result;
|
|
231
233
|
}
|
|
232
234
|
}
|
|
235
|
+
computeAggregatedBooleanValue(expression, module) {
|
|
236
|
+
const booleanAggregationParameter = this.evaluateAggregatedBooleanExpression(expression, module);
|
|
237
|
+
const aggregatedScalarExpressionEvaluation = booleanAggregationParameter.scalarAggregation.value;
|
|
238
|
+
const aggregatedScalarLiveValue = new AggregatedScalarLiveValue_1.AggregatedScalarLiveValue({ aggregatedScalarExpressionEvaluation }, module, this.adaptableApi);
|
|
239
|
+
const allAggregationValues = aggregatedScalarLiveValue.getAllAggregationValues();
|
|
240
|
+
const numericOperand = booleanAggregationParameter.conditionValue;
|
|
241
|
+
const booleanConditionFn = booleanAggregationParameter.conditionFn;
|
|
242
|
+
return allAggregationValues.some((aggregationValue) => {
|
|
243
|
+
return booleanConditionFn(aggregationValue, numericOperand);
|
|
244
|
+
});
|
|
245
|
+
}
|
|
233
246
|
getColumnsFromExpression(input = '') {
|
|
234
247
|
return this.getNodesFromExpression(input, 'COL');
|
|
235
248
|
}
|
|
236
249
|
getNamedQueryNamesFromExpression(input = '') {
|
|
237
250
|
return this.getNodesFromExpression(input, 'QUERY');
|
|
238
251
|
}
|
|
252
|
+
isCumulativeAggregate(input) {
|
|
253
|
+
var _a;
|
|
254
|
+
return !!((_a = this.getNodesFromExpression(input, 'CUMUL')) === null || _a === void 0 ? void 0 : _a.length);
|
|
255
|
+
}
|
|
239
256
|
// Returns the ExpressionFunctions available for the given Module as specified in the `QueryLanguageOptions.moduleExpressionFunctions`
|
|
240
257
|
// if there are no specific functions defined, it falls back to the default values
|
|
241
258
|
getModuleExpressionFunctions(module) {
|