@finos/legend-data-cube 0.0.2
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/LICENSE +201 -0
- package/README.md +3 -0
- package/lib/application/DataCubeDocumentation.d.ts +22 -0
- package/lib/application/DataCubeDocumentation.d.ts.map +1 -0
- package/lib/application/DataCubeDocumentation.js +23 -0
- package/lib/application/DataCubeDocumentation.js.map +1 -0
- package/lib/components/DataCube.d.ts +19 -0
- package/lib/components/DataCube.d.ts.map +1 -0
- package/lib/components/DataCube.js +67 -0
- package/lib/components/DataCube.js.map +1 -0
- package/lib/components/DataCubeProvider.d.ts +27 -0
- package/lib/components/DataCubeProvider.d.ts.map +1 -0
- package/lib/components/DataCubeProvider.js +34 -0
- package/lib/components/DataCubeProvider.js.map +1 -0
- package/lib/components/application/DataCubeAlert.d.ts +44 -0
- package/lib/components/application/DataCubeAlert.d.ts.map +1 -0
- package/lib/components/application/DataCubeAlert.js +83 -0
- package/lib/components/application/DataCubeAlert.js.map +1 -0
- package/lib/components/application/DataCubeDocumentationPanel.d.ts +19 -0
- package/lib/components/application/DataCubeDocumentationPanel.d.ts.map +1 -0
- package/lib/components/application/DataCubeDocumentationPanel.js +32 -0
- package/lib/components/application/DataCubeDocumentationPanel.js.map +1 -0
- package/lib/components/application/DataCubeLayoutManager.d.ts +27 -0
- package/lib/components/application/DataCubeLayoutManager.d.ts.map +1 -0
- package/lib/components/application/DataCubeLayoutManager.js +116 -0
- package/lib/components/application/DataCubeLayoutManager.js.map +1 -0
- package/lib/components/application/DataCubeSettingsPanel.d.ts +19 -0
- package/lib/components/application/DataCubeSettingsPanel.d.ts.map +1 -0
- package/lib/components/application/DataCubeSettingsPanel.js +53 -0
- package/lib/components/application/DataCubeSettingsPanel.js.map +1 -0
- package/lib/components/editor/DataCubeEditor.d.ts +22 -0
- package/lib/components/editor/DataCubeEditor.d.ts.map +1 -0
- package/lib/components/editor/DataCubeEditor.js +51 -0
- package/lib/components/editor/DataCubeEditor.js.map +1 -0
- package/lib/components/editor/DataCubeEditorColumnPropertiesPanel.d.ts +22 -0
- package/lib/components/editor/DataCubeEditorColumnPropertiesPanel.d.ts.map +1 -0
- package/lib/components/editor/DataCubeEditorColumnPropertiesPanel.js +274 -0
- package/lib/components/editor/DataCubeEditorColumnPropertiesPanel.js.map +1 -0
- package/lib/components/editor/DataCubeEditorColumnsPanel.d.ts +22 -0
- package/lib/components/editor/DataCubeEditorColumnsPanel.d.ts.map +1 -0
- package/lib/components/editor/DataCubeEditorColumnsPanel.js +35 -0
- package/lib/components/editor/DataCubeEditorColumnsPanel.js.map +1 -0
- package/lib/components/editor/DataCubeEditorColumnsSelector.d.ts +32 -0
- package/lib/components/editor/DataCubeEditorColumnsSelector.d.ts.map +1 -0
- package/lib/components/editor/DataCubeEditorColumnsSelector.js +307 -0
- package/lib/components/editor/DataCubeEditorColumnsSelector.js.map +1 -0
- package/lib/components/editor/DataCubeEditorGeneralPropertiesPanel.d.ts +22 -0
- package/lib/components/editor/DataCubeEditorGeneralPropertiesPanel.d.ts.map +1 -0
- package/lib/components/editor/DataCubeEditorGeneralPropertiesPanel.js +167 -0
- package/lib/components/editor/DataCubeEditorGeneralPropertiesPanel.js.map +1 -0
- package/lib/components/editor/DataCubeEditorHorizontalPivotsPanel.d.ts +22 -0
- package/lib/components/editor/DataCubeEditorHorizontalPivotsPanel.d.ts.map +1 -0
- package/lib/components/editor/DataCubeEditorHorizontalPivotsPanel.js +29 -0
- package/lib/components/editor/DataCubeEditorHorizontalPivotsPanel.js.map +1 -0
- package/lib/components/editor/DataCubeEditorSortsPanel.d.ts +22 -0
- package/lib/components/editor/DataCubeEditorSortsPanel.d.ts.map +1 -0
- package/lib/components/editor/DataCubeEditorSortsPanel.js +62 -0
- package/lib/components/editor/DataCubeEditorSortsPanel.js.map +1 -0
- package/lib/components/editor/DataCubeEditorVerticalPivotsPanel.d.ts +22 -0
- package/lib/components/editor/DataCubeEditorVerticalPivotsPanel.d.ts.map +1 -0
- package/lib/components/editor/DataCubeEditorVerticalPivotsPanel.js +25 -0
- package/lib/components/editor/DataCubeEditorVerticalPivotsPanel.js.map +1 -0
- package/lib/components/extend/DataCubeColumnEditor.d.ts +22 -0
- package/lib/components/extend/DataCubeColumnEditor.d.ts.map +1 -0
- package/lib/components/extend/DataCubeColumnEditor.js +169 -0
- package/lib/components/extend/DataCubeColumnEditor.js.map +1 -0
- package/lib/components/filter/DataCubeFilterEditor.d.ts +22 -0
- package/lib/components/filter/DataCubeFilterEditor.d.ts.map +1 -0
- package/lib/components/filter/DataCubeFilterEditor.js +312 -0
- package/lib/components/filter/DataCubeFilterEditor.js.map +1 -0
- package/lib/components/grid/DataCubeGrid.d.ts +27 -0
- package/lib/components/grid/DataCubeGrid.d.ts.map +1 -0
- package/lib/components/grid/DataCubeGrid.js +241 -0
- package/lib/components/grid/DataCubeGrid.js.map +1 -0
- package/lib/components/grid/DataCubeGridShared.d.ts +18 -0
- package/lib/components/grid/DataCubeGridShared.d.ts.map +1 -0
- package/lib/components/grid/DataCubeGridShared.js +25 -0
- package/lib/components/grid/DataCubeGridShared.js.map +1 -0
- package/lib/components/shared/DataCubeFormUtils.d.ts +54 -0
- package/lib/components/shared/DataCubeFormUtils.d.ts.map +1 -0
- package/lib/components/shared/DataCubeFormUtils.js +251 -0
- package/lib/components/shared/DataCubeFormUtils.js.map +1 -0
- package/lib/components/shared/DataCubePureCodeEditorUtils.d.ts +22 -0
- package/lib/components/shared/DataCubePureCodeEditorUtils.d.ts.map +1 -0
- package/lib/components/shared/DataCubePureCodeEditorUtils.js +64 -0
- package/lib/components/shared/DataCubePureCodeEditorUtils.js.map +1 -0
- package/lib/index.css +17 -0
- package/lib/index.css.map +1 -0
- package/lib/index.d.ts +21 -0
- package/lib/index.d.ts.map +1 -0
- package/lib/index.js +21 -0
- package/lib/index.js.map +1 -0
- package/lib/package.json +89 -0
- package/lib/stores/DataCubeState.d.ts +32 -0
- package/lib/stores/DataCubeState.d.ts.map +1 -0
- package/lib/stores/DataCubeState.js +84 -0
- package/lib/stores/DataCubeState.js.map +1 -0
- package/lib/stores/DataCubeViewState.d.ts +50 -0
- package/lib/stores/DataCubeViewState.d.ts.map +1 -0
- package/lib/stores/DataCubeViewState.js +109 -0
- package/lib/stores/DataCubeViewState.js.map +1 -0
- package/lib/stores/core/DataCubeConfiguration.d.ts +107 -0
- package/lib/stores/core/DataCubeConfiguration.d.ts.map +1 -0
- package/lib/stores/core/DataCubeConfiguration.js +185 -0
- package/lib/stores/core/DataCubeConfiguration.js.map +1 -0
- package/lib/stores/core/DataCubeConfigurationBuilder.d.ts +25 -0
- package/lib/stores/core/DataCubeConfigurationBuilder.d.ts.map +1 -0
- package/lib/stores/core/DataCubeConfigurationBuilder.js +50 -0
- package/lib/stores/core/DataCubeConfigurationBuilder.js.map +1 -0
- package/lib/stores/core/DataCubeInfoState.d.ts +33 -0
- package/lib/stores/core/DataCubeInfoState.d.ts.map +1 -0
- package/lib/stores/core/DataCubeInfoState.js +48 -0
- package/lib/stores/core/DataCubeInfoState.js.map +1 -0
- package/lib/stores/core/DataCubeQueryBuilder.d.ts +35 -0
- package/lib/stores/core/DataCubeQueryBuilder.d.ts.map +1 -0
- package/lib/stores/core/DataCubeQueryBuilder.js +130 -0
- package/lib/stores/core/DataCubeQueryBuilder.js.map +1 -0
- package/lib/stores/core/DataCubeQueryBuilderUtils.d.ts +50 -0
- package/lib/stores/core/DataCubeQueryBuilderUtils.d.ts.map +1 -0
- package/lib/stores/core/DataCubeQueryBuilderUtils.js +320 -0
- package/lib/stores/core/DataCubeQueryBuilderUtils.js.map +1 -0
- package/lib/stores/core/DataCubeQueryEngine.d.ts +224 -0
- package/lib/stores/core/DataCubeQueryEngine.d.ts.map +1 -0
- package/lib/stores/core/DataCubeQueryEngine.js +286 -0
- package/lib/stores/core/DataCubeQueryEngine.js.map +1 -0
- package/lib/stores/core/DataCubeQuerySnapshot.d.ts +89 -0
- package/lib/stores/core/DataCubeQuerySnapshot.d.ts.map +1 -0
- package/lib/stores/core/DataCubeQuerySnapshot.js +82 -0
- package/lib/stores/core/DataCubeQuerySnapshot.js.map +1 -0
- package/lib/stores/core/DataCubeQuerySnapshotBuilder.d.ts +33 -0
- package/lib/stores/core/DataCubeQuerySnapshotBuilder.d.ts.map +1 -0
- package/lib/stores/core/DataCubeQuerySnapshotBuilder.js +260 -0
- package/lib/stores/core/DataCubeQuerySnapshotBuilder.js.map +1 -0
- package/lib/stores/core/DataCubeQuerySnapshotBuilderUtils.d.ts +30 -0
- package/lib/stores/core/DataCubeQuerySnapshotBuilderUtils.d.ts.map +1 -0
- package/lib/stores/core/DataCubeQuerySnapshotBuilderUtils.js +125 -0
- package/lib/stores/core/DataCubeQuerySnapshotBuilderUtils.js.map +1 -0
- package/lib/stores/core/DataCubeQuerySnapshotManager.d.ts +47 -0
- package/lib/stores/core/DataCubeQuerySnapshotManager.d.ts.map +1 -0
- package/lib/stores/core/DataCubeQuerySnapshotManager.js +84 -0
- package/lib/stores/core/DataCubeQuerySnapshotManager.js.map +1 -0
- package/lib/stores/core/aggregation/DataCubeQueryAggregateOperation.d.ts +28 -0
- package/lib/stores/core/aggregation/DataCubeQueryAggregateOperation.d.ts.map +1 -0
- package/lib/stores/core/aggregation/DataCubeQueryAggregateOperation.js +25 -0
- package/lib/stores/core/aggregation/DataCubeQueryAggregateOperation.js.map +1 -0
- package/lib/stores/core/aggregation/DataCubeQueryAggregateOperation__Average.d.ts +27 -0
- package/lib/stores/core/aggregation/DataCubeQueryAggregateOperation__Average.d.ts.map +1 -0
- package/lib/stores/core/aggregation/DataCubeQueryAggregateOperation__Average.js +39 -0
- package/lib/stores/core/aggregation/DataCubeQueryAggregateOperation__Average.js.map +1 -0
- package/lib/stores/core/aggregation/DataCubeQueryAggregateOperation__Count.d.ts +27 -0
- package/lib/stores/core/aggregation/DataCubeQueryAggregateOperation__Count.d.ts.map +1 -0
- package/lib/stores/core/aggregation/DataCubeQueryAggregateOperation__Count.js +47 -0
- package/lib/stores/core/aggregation/DataCubeQueryAggregateOperation__Count.js.map +1 -0
- package/lib/stores/core/aggregation/DataCubeQueryAggregateOperation__First.d.ts +27 -0
- package/lib/stores/core/aggregation/DataCubeQueryAggregateOperation__First.d.ts.map +1 -0
- package/lib/stores/core/aggregation/DataCubeQueryAggregateOperation__First.js +44 -0
- package/lib/stores/core/aggregation/DataCubeQueryAggregateOperation__First.js.map +1 -0
- package/lib/stores/core/aggregation/DataCubeQueryAggregateOperation__JoinStrings.d.ts +27 -0
- package/lib/stores/core/aggregation/DataCubeQueryAggregateOperation__JoinStrings.d.ts.map +1 -0
- package/lib/stores/core/aggregation/DataCubeQueryAggregateOperation__JoinStrings.js +53 -0
- package/lib/stores/core/aggregation/DataCubeQueryAggregateOperation__JoinStrings.js.map +1 -0
- package/lib/stores/core/aggregation/DataCubeQueryAggregateOperation__Last.d.ts +27 -0
- package/lib/stores/core/aggregation/DataCubeQueryAggregateOperation__Last.d.ts.map +1 -0
- package/lib/stores/core/aggregation/DataCubeQueryAggregateOperation__Last.js +44 -0
- package/lib/stores/core/aggregation/DataCubeQueryAggregateOperation__Last.js.map +1 -0
- package/lib/stores/core/aggregation/DataCubeQueryAggregateOperation__Max.d.ts +27 -0
- package/lib/stores/core/aggregation/DataCubeQueryAggregateOperation__Max.d.ts.map +1 -0
- package/lib/stores/core/aggregation/DataCubeQueryAggregateOperation__Max.js +39 -0
- package/lib/stores/core/aggregation/DataCubeQueryAggregateOperation__Max.js.map +1 -0
- package/lib/stores/core/aggregation/DataCubeQueryAggregateOperation__Min.d.ts +27 -0
- package/lib/stores/core/aggregation/DataCubeQueryAggregateOperation__Min.d.ts.map +1 -0
- package/lib/stores/core/aggregation/DataCubeQueryAggregateOperation__Min.js +39 -0
- package/lib/stores/core/aggregation/DataCubeQueryAggregateOperation__Min.js.map +1 -0
- package/lib/stores/core/aggregation/DataCubeQueryAggregateOperation__StdDevPopulation.d.ts +27 -0
- package/lib/stores/core/aggregation/DataCubeQueryAggregateOperation__StdDevPopulation.d.ts.map +1 -0
- package/lib/stores/core/aggregation/DataCubeQueryAggregateOperation__StdDevPopulation.js +39 -0
- package/lib/stores/core/aggregation/DataCubeQueryAggregateOperation__StdDevPopulation.js.map +1 -0
- package/lib/stores/core/aggregation/DataCubeQueryAggregateOperation__StdDevSample.d.ts +27 -0
- package/lib/stores/core/aggregation/DataCubeQueryAggregateOperation__StdDevSample.d.ts.map +1 -0
- package/lib/stores/core/aggregation/DataCubeQueryAggregateOperation__StdDevSample.js +39 -0
- package/lib/stores/core/aggregation/DataCubeQueryAggregateOperation__StdDevSample.js.map +1 -0
- package/lib/stores/core/aggregation/DataCubeQueryAggregateOperation__Sum.d.ts +27 -0
- package/lib/stores/core/aggregation/DataCubeQueryAggregateOperation__Sum.d.ts.map +1 -0
- package/lib/stores/core/aggregation/DataCubeQueryAggregateOperation__Sum.js +39 -0
- package/lib/stores/core/aggregation/DataCubeQueryAggregateOperation__Sum.js.map +1 -0
- package/lib/stores/core/aggregation/DataCubeQueryAggregateOperation__UniqueValue.d.ts +27 -0
- package/lib/stores/core/aggregation/DataCubeQueryAggregateOperation__UniqueValue.d.ts.map +1 -0
- package/lib/stores/core/aggregation/DataCubeQueryAggregateOperation__UniqueValue.js +44 -0
- package/lib/stores/core/aggregation/DataCubeQueryAggregateOperation__UniqueValue.js.map +1 -0
- package/lib/stores/core/aggregation/DataCubeQueryAggregateOperation__VariancePopulation.d.ts +27 -0
- package/lib/stores/core/aggregation/DataCubeQueryAggregateOperation__VariancePopulation.d.ts.map +1 -0
- package/lib/stores/core/aggregation/DataCubeQueryAggregateOperation__VariancePopulation.js +39 -0
- package/lib/stores/core/aggregation/DataCubeQueryAggregateOperation__VariancePopulation.js.map +1 -0
- package/lib/stores/core/aggregation/DataCubeQueryAggregateOperation__VarianceSample.d.ts +27 -0
- package/lib/stores/core/aggregation/DataCubeQueryAggregateOperation__VarianceSample.d.ts.map +1 -0
- package/lib/stores/core/aggregation/DataCubeQueryAggregateOperation__VarianceSample.js +39 -0
- package/lib/stores/core/aggregation/DataCubeQueryAggregateOperation__VarianceSample.js.map +1 -0
- package/lib/stores/core/filter/DataCubeQueryFilterEditorState.d.ts +36 -0
- package/lib/stores/core/filter/DataCubeQueryFilterEditorState.d.ts.map +1 -0
- package/lib/stores/core/filter/DataCubeQueryFilterEditorState.js +153 -0
- package/lib/stores/core/filter/DataCubeQueryFilterEditorState.js.map +1 -0
- package/lib/stores/core/filter/DataCubeQueryFilterOperation.d.ts +32 -0
- package/lib/stores/core/filter/DataCubeQueryFilterOperation.d.ts.map +1 -0
- package/lib/stores/core/filter/DataCubeQueryFilterOperation.js +48 -0
- package/lib/stores/core/filter/DataCubeQueryFilterOperation.js.map +1 -0
- package/lib/stores/core/filter/DataCubeQueryFilterOperation__Contain.d.ts +34 -0
- package/lib/stores/core/filter/DataCubeQueryFilterOperation__Contain.d.ts.map +1 -0
- package/lib/stores/core/filter/DataCubeQueryFilterOperation__Contain.js +59 -0
- package/lib/stores/core/filter/DataCubeQueryFilterOperation__Contain.js.map +1 -0
- package/lib/stores/core/filter/DataCubeQueryFilterOperation__ContainCaseInsensitive.d.ts +34 -0
- package/lib/stores/core/filter/DataCubeQueryFilterOperation__ContainCaseInsensitive.d.ts.map +1 -0
- package/lib/stores/core/filter/DataCubeQueryFilterOperation__ContainCaseInsensitive.js +64 -0
- package/lib/stores/core/filter/DataCubeQueryFilterOperation__ContainCaseInsensitive.js.map +1 -0
- package/lib/stores/core/filter/DataCubeQueryFilterOperation__EndWith.d.ts +34 -0
- package/lib/stores/core/filter/DataCubeQueryFilterOperation__EndWith.d.ts.map +1 -0
- package/lib/stores/core/filter/DataCubeQueryFilterOperation__EndWith.js +59 -0
- package/lib/stores/core/filter/DataCubeQueryFilterOperation__EndWith.js.map +1 -0
- package/lib/stores/core/filter/DataCubeQueryFilterOperation__EndWithCaseInsensitive.d.ts +34 -0
- package/lib/stores/core/filter/DataCubeQueryFilterOperation__EndWithCaseInsensitive.d.ts.map +1 -0
- package/lib/stores/core/filter/DataCubeQueryFilterOperation__EndWithCaseInsensitive.js +64 -0
- package/lib/stores/core/filter/DataCubeQueryFilterOperation__EndWithCaseInsensitive.js.map +1 -0
- package/lib/stores/core/filter/DataCubeQueryFilterOperation__Equal.d.ts +34 -0
- package/lib/stores/core/filter/DataCubeQueryFilterOperation__Equal.d.ts.map +1 -0
- package/lib/stores/core/filter/DataCubeQueryFilterOperation__Equal.js +136 -0
- package/lib/stores/core/filter/DataCubeQueryFilterOperation__Equal.js.map +1 -0
- package/lib/stores/core/filter/DataCubeQueryFilterOperation__EqualCaseInsensitive.d.ts +34 -0
- package/lib/stores/core/filter/DataCubeQueryFilterOperation__EqualCaseInsensitive.d.ts.map +1 -0
- package/lib/stores/core/filter/DataCubeQueryFilterOperation__EqualCaseInsensitive.js +64 -0
- package/lib/stores/core/filter/DataCubeQueryFilterOperation__EqualCaseInsensitive.js.map +1 -0
- package/lib/stores/core/filter/DataCubeQueryFilterOperation__EqualCaseInsensitiveColumn.d.ts +34 -0
- package/lib/stores/core/filter/DataCubeQueryFilterOperation__EqualCaseInsensitiveColumn.d.ts.map +1 -0
- package/lib/stores/core/filter/DataCubeQueryFilterOperation__EqualCaseInsensitiveColumn.js +64 -0
- package/lib/stores/core/filter/DataCubeQueryFilterOperation__EqualCaseInsensitiveColumn.js.map +1 -0
- package/lib/stores/core/filter/DataCubeQueryFilterOperation__EqualColumn.d.ts +34 -0
- package/lib/stores/core/filter/DataCubeQueryFilterOperation__EqualColumn.d.ts.map +1 -0
- package/lib/stores/core/filter/DataCubeQueryFilterOperation__EqualColumn.js +65 -0
- package/lib/stores/core/filter/DataCubeQueryFilterOperation__EqualColumn.js.map +1 -0
- package/lib/stores/core/filter/DataCubeQueryFilterOperation__GreaterThan.d.ts +34 -0
- package/lib/stores/core/filter/DataCubeQueryFilterOperation__GreaterThan.d.ts.map +1 -0
- package/lib/stores/core/filter/DataCubeQueryFilterOperation__GreaterThan.js +67 -0
- package/lib/stores/core/filter/DataCubeQueryFilterOperation__GreaterThan.js.map +1 -0
- package/lib/stores/core/filter/DataCubeQueryFilterOperation__GreaterThanColumn.d.ts +34 -0
- package/lib/stores/core/filter/DataCubeQueryFilterOperation__GreaterThanColumn.d.ts.map +1 -0
- package/lib/stores/core/filter/DataCubeQueryFilterOperation__GreaterThanColumn.js +64 -0
- package/lib/stores/core/filter/DataCubeQueryFilterOperation__GreaterThanColumn.js.map +1 -0
- package/lib/stores/core/filter/DataCubeQueryFilterOperation__GreaterThanOrEqual.d.ts +34 -0
- package/lib/stores/core/filter/DataCubeQueryFilterOperation__GreaterThanOrEqual.d.ts.map +1 -0
- package/lib/stores/core/filter/DataCubeQueryFilterOperation__GreaterThanOrEqual.js +67 -0
- package/lib/stores/core/filter/DataCubeQueryFilterOperation__GreaterThanOrEqual.js.map +1 -0
- package/lib/stores/core/filter/DataCubeQueryFilterOperation__GreaterThanOrEqualColumn.d.ts +34 -0
- package/lib/stores/core/filter/DataCubeQueryFilterOperation__GreaterThanOrEqualColumn.d.ts.map +1 -0
- package/lib/stores/core/filter/DataCubeQueryFilterOperation__GreaterThanOrEqualColumn.js +64 -0
- package/lib/stores/core/filter/DataCubeQueryFilterOperation__GreaterThanOrEqualColumn.js.map +1 -0
- package/lib/stores/core/filter/DataCubeQueryFilterOperation__IsNotNull.d.ts +31 -0
- package/lib/stores/core/filter/DataCubeQueryFilterOperation__IsNotNull.d.ts.map +1 -0
- package/lib/stores/core/filter/DataCubeQueryFilterOperation__IsNotNull.js +64 -0
- package/lib/stores/core/filter/DataCubeQueryFilterOperation__IsNotNull.js.map +1 -0
- package/lib/stores/core/filter/DataCubeQueryFilterOperation__IsNull.d.ts +31 -0
- package/lib/stores/core/filter/DataCubeQueryFilterOperation__IsNull.d.ts.map +1 -0
- package/lib/stores/core/filter/DataCubeQueryFilterOperation__IsNull.js +64 -0
- package/lib/stores/core/filter/DataCubeQueryFilterOperation__IsNull.js.map +1 -0
- package/lib/stores/core/filter/DataCubeQueryFilterOperation__LessThan.d.ts +34 -0
- package/lib/stores/core/filter/DataCubeQueryFilterOperation__LessThan.d.ts.map +1 -0
- package/lib/stores/core/filter/DataCubeQueryFilterOperation__LessThan.js +67 -0
- package/lib/stores/core/filter/DataCubeQueryFilterOperation__LessThan.js.map +1 -0
- package/lib/stores/core/filter/DataCubeQueryFilterOperation__LessThanColumn.d.ts +34 -0
- package/lib/stores/core/filter/DataCubeQueryFilterOperation__LessThanColumn.d.ts.map +1 -0
- package/lib/stores/core/filter/DataCubeQueryFilterOperation__LessThanColumn.js +64 -0
- package/lib/stores/core/filter/DataCubeQueryFilterOperation__LessThanColumn.js.map +1 -0
- package/lib/stores/core/filter/DataCubeQueryFilterOperation__LessThanOrEqual.d.ts +34 -0
- package/lib/stores/core/filter/DataCubeQueryFilterOperation__LessThanOrEqual.d.ts.map +1 -0
- package/lib/stores/core/filter/DataCubeQueryFilterOperation__LessThanOrEqual.js +67 -0
- package/lib/stores/core/filter/DataCubeQueryFilterOperation__LessThanOrEqual.js.map +1 -0
- package/lib/stores/core/filter/DataCubeQueryFilterOperation__LessThanOrEqualColumn.d.ts +34 -0
- package/lib/stores/core/filter/DataCubeQueryFilterOperation__LessThanOrEqualColumn.d.ts.map +1 -0
- package/lib/stores/core/filter/DataCubeQueryFilterOperation__LessThanOrEqualColumn.js +64 -0
- package/lib/stores/core/filter/DataCubeQueryFilterOperation__LessThanOrEqualColumn.js.map +1 -0
- package/lib/stores/core/filter/DataCubeQueryFilterOperation__NotContain.d.ts +34 -0
- package/lib/stores/core/filter/DataCubeQueryFilterOperation__NotContain.d.ts.map +1 -0
- package/lib/stores/core/filter/DataCubeQueryFilterOperation__NotContain.js +59 -0
- package/lib/stores/core/filter/DataCubeQueryFilterOperation__NotContain.js.map +1 -0
- package/lib/stores/core/filter/DataCubeQueryFilterOperation__NotEndWith.d.ts +34 -0
- package/lib/stores/core/filter/DataCubeQueryFilterOperation__NotEndWith.d.ts.map +1 -0
- package/lib/stores/core/filter/DataCubeQueryFilterOperation__NotEndWith.js +59 -0
- package/lib/stores/core/filter/DataCubeQueryFilterOperation__NotEndWith.js.map +1 -0
- package/lib/stores/core/filter/DataCubeQueryFilterOperation__NotEqual.d.ts +34 -0
- package/lib/stores/core/filter/DataCubeQueryFilterOperation__NotEqual.d.ts.map +1 -0
- package/lib/stores/core/filter/DataCubeQueryFilterOperation__NotEqual.js +69 -0
- package/lib/stores/core/filter/DataCubeQueryFilterOperation__NotEqual.js.map +1 -0
- package/lib/stores/core/filter/DataCubeQueryFilterOperation__NotEqualCaseInsensitive.d.ts +34 -0
- package/lib/stores/core/filter/DataCubeQueryFilterOperation__NotEqualCaseInsensitive.d.ts.map +1 -0
- package/lib/stores/core/filter/DataCubeQueryFilterOperation__NotEqualCaseInsensitive.js +64 -0
- package/lib/stores/core/filter/DataCubeQueryFilterOperation__NotEqualCaseInsensitive.js.map +1 -0
- package/lib/stores/core/filter/DataCubeQueryFilterOperation__NotEqualCaseInsensitiveColumn.d.ts +34 -0
- package/lib/stores/core/filter/DataCubeQueryFilterOperation__NotEqualCaseInsensitiveColumn.d.ts.map +1 -0
- package/lib/stores/core/filter/DataCubeQueryFilterOperation__NotEqualCaseInsensitiveColumn.js +64 -0
- package/lib/stores/core/filter/DataCubeQueryFilterOperation__NotEqualCaseInsensitiveColumn.js.map +1 -0
- package/lib/stores/core/filter/DataCubeQueryFilterOperation__NotEqualColumn.d.ts +34 -0
- package/lib/stores/core/filter/DataCubeQueryFilterOperation__NotEqualColumn.d.ts.map +1 -0
- package/lib/stores/core/filter/DataCubeQueryFilterOperation__NotEqualColumn.js +65 -0
- package/lib/stores/core/filter/DataCubeQueryFilterOperation__NotEqualColumn.js.map +1 -0
- package/lib/stores/core/filter/DataCubeQueryFilterOperation__NotStartWith.d.ts +34 -0
- package/lib/stores/core/filter/DataCubeQueryFilterOperation__NotStartWith.d.ts.map +1 -0
- package/lib/stores/core/filter/DataCubeQueryFilterOperation__NotStartWith.js +59 -0
- package/lib/stores/core/filter/DataCubeQueryFilterOperation__NotStartWith.js.map +1 -0
- package/lib/stores/core/filter/DataCubeQueryFilterOperation__StartWith.d.ts +34 -0
- package/lib/stores/core/filter/DataCubeQueryFilterOperation__StartWith.d.ts.map +1 -0
- package/lib/stores/core/filter/DataCubeQueryFilterOperation__StartWith.js +59 -0
- package/lib/stores/core/filter/DataCubeQueryFilterOperation__StartWith.js.map +1 -0
- package/lib/stores/core/filter/DataCubeQueryFilterOperation__StartWithCaseInsensitive.d.ts +34 -0
- package/lib/stores/core/filter/DataCubeQueryFilterOperation__StartWithCaseInsensitive.d.ts.map +1 -0
- package/lib/stores/core/filter/DataCubeQueryFilterOperation__StartWithCaseInsensitive.js +64 -0
- package/lib/stores/core/filter/DataCubeQueryFilterOperation__StartWithCaseInsensitive.js.map +1 -0
- package/lib/stores/editor/DataCubeEditorColumnPropertiesPanelState.d.ts +37 -0
- package/lib/stores/editor/DataCubeEditorColumnPropertiesPanelState.d.ts.map +1 -0
- package/lib/stores/editor/DataCubeEditorColumnPropertiesPanelState.js +68 -0
- package/lib/stores/editor/DataCubeEditorColumnPropertiesPanelState.js.map +1 -0
- package/lib/stores/editor/DataCubeEditorColumnsPanelState.d.ts +58 -0
- package/lib/stores/editor/DataCubeEditorColumnsPanelState.d.ts.map +1 -0
- package/lib/stores/editor/DataCubeEditorColumnsPanelState.js +127 -0
- package/lib/stores/editor/DataCubeEditorColumnsPanelState.js.map +1 -0
- package/lib/stores/editor/DataCubeEditorColumnsSelectorState.d.ts +42 -0
- package/lib/stores/editor/DataCubeEditorColumnsSelectorState.d.ts.map +1 -0
- package/lib/stores/editor/DataCubeEditorColumnsSelectorState.js +75 -0
- package/lib/stores/editor/DataCubeEditorColumnsSelectorState.js.map +1 -0
- package/lib/stores/editor/DataCubeEditorGeneralPropertiesPanelState.d.ts +35 -0
- package/lib/stores/editor/DataCubeEditorGeneralPropertiesPanelState.d.ts.map +1 -0
- package/lib/stores/editor/DataCubeEditorGeneralPropertiesPanelState.js +59 -0
- package/lib/stores/editor/DataCubeEditorGeneralPropertiesPanelState.js.map +1 -0
- package/lib/stores/editor/DataCubeEditorHorizontalPivotsPanelState.d.ts +38 -0
- package/lib/stores/editor/DataCubeEditorHorizontalPivotsPanelState.d.ts.map +1 -0
- package/lib/stores/editor/DataCubeEditorHorizontalPivotsPanelState.js +75 -0
- package/lib/stores/editor/DataCubeEditorHorizontalPivotsPanelState.js.map +1 -0
- package/lib/stores/editor/DataCubeEditorMutableConfiguration.d.ts +107 -0
- package/lib/stores/editor/DataCubeEditorMutableConfiguration.d.ts.map +1 -0
- package/lib/stores/editor/DataCubeEditorMutableConfiguration.js +467 -0
- package/lib/stores/editor/DataCubeEditorMutableConfiguration.js.map +1 -0
- package/lib/stores/editor/DataCubeEditorPanelState.d.ts +29 -0
- package/lib/stores/editor/DataCubeEditorPanelState.d.ts.map +1 -0
- package/lib/stores/editor/DataCubeEditorPanelState.js +17 -0
- package/lib/stores/editor/DataCubeEditorPanelState.js.map +1 -0
- package/lib/stores/editor/DataCubeEditorSortsPanelState.d.ts +41 -0
- package/lib/stores/editor/DataCubeEditorSortsPanelState.d.ts.map +1 -0
- package/lib/stores/editor/DataCubeEditorSortsPanelState.js +86 -0
- package/lib/stores/editor/DataCubeEditorSortsPanelState.js.map +1 -0
- package/lib/stores/editor/DataCubeEditorState.d.ts +64 -0
- package/lib/stores/editor/DataCubeEditorState.d.ts.map +1 -0
- package/lib/stores/editor/DataCubeEditorState.js +155 -0
- package/lib/stores/editor/DataCubeEditorState.js.map +1 -0
- package/lib/stores/editor/DataCubeEditorVerticalPivotsPanelState.d.ts +35 -0
- package/lib/stores/editor/DataCubeEditorVerticalPivotsPanelState.d.ts.map +1 -0
- package/lib/stores/editor/DataCubeEditorVerticalPivotsPanelState.js +58 -0
- package/lib/stores/editor/DataCubeEditorVerticalPivotsPanelState.js.map +1 -0
- package/lib/stores/engine/DataCubeApplicationEngine.d.ts +55 -0
- package/lib/stores/engine/DataCubeApplicationEngine.d.ts.map +1 -0
- package/lib/stores/engine/DataCubeApplicationEngine.js +33 -0
- package/lib/stores/engine/DataCubeApplicationEngine.js.map +1 -0
- package/lib/stores/engine/DataCubeEngine.d.ts +124 -0
- package/lib/stores/engine/DataCubeEngine.d.ts.map +1 -0
- package/lib/stores/engine/DataCubeEngine.js +182 -0
- package/lib/stores/engine/DataCubeEngine.js.map +1 -0
- package/lib/stores/engine/DataCubeLayoutManagerState.d.ts +62 -0
- package/lib/stores/engine/DataCubeLayoutManagerState.d.ts.map +1 -0
- package/lib/stores/engine/DataCubeLayoutManagerState.js +133 -0
- package/lib/stores/engine/DataCubeLayoutManagerState.js.map +1 -0
- package/lib/stores/engine/DataCubeQuery.d.ts +40 -0
- package/lib/stores/engine/DataCubeQuery.d.ts.map +1 -0
- package/lib/stores/engine/DataCubeQuery.js +79 -0
- package/lib/stores/engine/DataCubeQuery.js.map +1 -0
- package/lib/stores/extend/DataCubeColumnEditorState.d.ts +61 -0
- package/lib/stores/extend/DataCubeColumnEditorState.d.ts.map +1 -0
- package/lib/stores/extend/DataCubeColumnEditorState.js +260 -0
- package/lib/stores/extend/DataCubeColumnEditorState.js.map +1 -0
- package/lib/stores/extend/DataCubeExtendManagerState.d.ts +46 -0
- package/lib/stores/extend/DataCubeExtendManagerState.d.ts.map +1 -0
- package/lib/stores/extend/DataCubeExtendManagerState.js +119 -0
- package/lib/stores/extend/DataCubeExtendManagerState.js.map +1 -0
- package/lib/stores/filter/DataCubeFilterEditorState.d.ts +61 -0
- package/lib/stores/filter/DataCubeFilterEditorState.d.ts.map +1 -0
- package/lib/stores/filter/DataCubeFilterEditorState.js +228 -0
- package/lib/stores/filter/DataCubeFilterEditorState.js.map +1 -0
- package/lib/stores/grid/DataCubeGridClientEngine.d.ts +93 -0
- package/lib/stores/grid/DataCubeGridClientEngine.d.ts.map +1 -0
- package/lib/stores/grid/DataCubeGridClientEngine.js +364 -0
- package/lib/stores/grid/DataCubeGridClientEngine.js.map +1 -0
- package/lib/stores/grid/DataCubeGridClientExportEngine.d.ts +31 -0
- package/lib/stores/grid/DataCubeGridClientExportEngine.d.ts.map +1 -0
- package/lib/stores/grid/DataCubeGridClientExportEngine.js +152 -0
- package/lib/stores/grid/DataCubeGridClientExportEngine.js.map +1 -0
- package/lib/stores/grid/DataCubeGridConfigurationBuilder.d.ts +180 -0
- package/lib/stores/grid/DataCubeGridConfigurationBuilder.d.ts.map +1 -0
- package/lib/stores/grid/DataCubeGridConfigurationBuilder.js +649 -0
- package/lib/stores/grid/DataCubeGridConfigurationBuilder.js.map +1 -0
- package/lib/stores/grid/DataCubeGridControllerState.d.ts +89 -0
- package/lib/stores/grid/DataCubeGridControllerState.d.ts.map +1 -0
- package/lib/stores/grid/DataCubeGridControllerState.js +342 -0
- package/lib/stores/grid/DataCubeGridControllerState.js.map +1 -0
- package/lib/stores/grid/DataCubeGridMenuBuilder.d.ts +19 -0
- package/lib/stores/grid/DataCubeGridMenuBuilder.d.ts.map +1 -0
- package/lib/stores/grid/DataCubeGridMenuBuilder.js +687 -0
- package/lib/stores/grid/DataCubeGridMenuBuilder.js.map +1 -0
- package/lib/stores/grid/DataCubeGridQueryBuilder.d.ts +23 -0
- package/lib/stores/grid/DataCubeGridQueryBuilder.d.ts.map +1 -0
- package/lib/stores/grid/DataCubeGridQueryBuilder.js +130 -0
- package/lib/stores/grid/DataCubeGridQueryBuilder.js.map +1 -0
- package/lib/stores/grid/DataCubeGridQuerySnapshotBuilder.d.ts +27 -0
- package/lib/stores/grid/DataCubeGridQuerySnapshotBuilder.d.ts.map +1 -0
- package/lib/stores/grid/DataCubeGridQuerySnapshotBuilder.js +66 -0
- package/lib/stores/grid/DataCubeGridQuerySnapshotBuilder.js.map +1 -0
- package/lib/stores/grid/DataCubeGridState.d.ts +55 -0
- package/lib/stores/grid/DataCubeGridState.d.ts.map +1 -0
- package/lib/stores/grid/DataCubeGridState.js +114 -0
- package/lib/stores/grid/DataCubeGridState.js.map +1 -0
- package/package.json +89 -0
- package/src/application/DataCubeDocumentation.ts +22 -0
- package/src/components/DataCube.tsx +157 -0
- package/src/components/DataCubeProvider.tsx +58 -0
- package/src/components/application/DataCubeAlert.tsx +173 -0
- package/src/components/application/DataCubeDocumentationPanel.tsx +42 -0
- package/src/components/application/DataCubeLayoutManager.tsx +190 -0
- package/src/components/application/DataCubeSettingsPanel.tsx +205 -0
- package/src/components/editor/DataCubeEditor.tsx +114 -0
- package/src/components/editor/DataCubeEditorColumnPropertiesPanel.tsx +1210 -0
- package/src/components/editor/DataCubeEditorColumnsPanel.tsx +121 -0
- package/src/components/editor/DataCubeEditorColumnsSelector.tsx +596 -0
- package/src/components/editor/DataCubeEditorGeneralPropertiesPanel.tsx +786 -0
- package/src/components/editor/DataCubeEditorHorizontalPivotsPanel.tsx +61 -0
- package/src/components/editor/DataCubeEditorSortsPanel.tsx +166 -0
- package/src/components/editor/DataCubeEditorVerticalPivotsPanel.tsx +43 -0
- package/src/components/extend/DataCubeColumnEditor.tsx +366 -0
- package/src/components/filter/DataCubeFilterEditor.tsx +907 -0
- package/src/components/grid/DataCubeGrid.tsx +384 -0
- package/src/components/grid/DataCubeGridShared.tsx +45 -0
- package/src/components/shared/DataCubeFormUtils.tsx +574 -0
- package/src/components/shared/DataCubePureCodeEditorUtils.tsx +91 -0
- package/src/index.tsx +22 -0
- package/src/stores/DataCubeState.tsx +100 -0
- package/src/stores/DataCubeViewState.ts +129 -0
- package/src/stores/core/DataCubeConfiguration.ts +240 -0
- package/src/stores/core/DataCubeConfigurationBuilder.ts +66 -0
- package/src/stores/core/DataCubeInfoState.ts +61 -0
- package/src/stores/core/DataCubeQueryBuilder.ts +296 -0
- package/src/stores/core/DataCubeQueryBuilderUtils.ts +514 -0
- package/src/stores/core/DataCubeQueryEngine.ts +327 -0
- package/src/stores/core/DataCubeQuerySnapshot.ts +191 -0
- package/src/stores/core/DataCubeQuerySnapshotBuilder.ts +406 -0
- package/src/stores/core/DataCubeQuerySnapshotBuilderUtils.ts +197 -0
- package/src/stores/core/DataCubeQuerySnapshotManager.ts +148 -0
- package/src/stores/core/aggregation/DataCubeQueryAggregateOperation.ts +47 -0
- package/src/stores/core/aggregation/DataCubeQueryAggregateOperation__Average.tsx +52 -0
- package/src/stores/core/aggregation/DataCubeQueryAggregateOperation__Count.tsx +61 -0
- package/src/stores/core/aggregation/DataCubeQueryAggregateOperation__First.tsx +57 -0
- package/src/stores/core/aggregation/DataCubeQueryAggregateOperation__JoinStrings.tsx +81 -0
- package/src/stores/core/aggregation/DataCubeQueryAggregateOperation__Last.tsx +57 -0
- package/src/stores/core/aggregation/DataCubeQueryAggregateOperation__Max.tsx +52 -0
- package/src/stores/core/aggregation/DataCubeQueryAggregateOperation__Min.tsx +52 -0
- package/src/stores/core/aggregation/DataCubeQueryAggregateOperation__StdDevPopulation.tsx +55 -0
- package/src/stores/core/aggregation/DataCubeQueryAggregateOperation__StdDevSample.tsx +52 -0
- package/src/stores/core/aggregation/DataCubeQueryAggregateOperation__Sum.tsx +52 -0
- package/src/stores/core/aggregation/DataCubeQueryAggregateOperation__UniqueValue.tsx +57 -0
- package/src/stores/core/aggregation/DataCubeQueryAggregateOperation__VariancePopulation.tsx +52 -0
- package/src/stores/core/aggregation/DataCubeQueryAggregateOperation__VarianceSample.tsx +52 -0
- package/src/stores/core/filter/DataCubeQueryFilterEditorState.ts +231 -0
- package/src/stores/core/filter/DataCubeQueryFilterOperation.ts +96 -0
- package/src/stores/core/filter/DataCubeQueryFilterOperation__Contain.tsx +88 -0
- package/src/stores/core/filter/DataCubeQueryFilterOperation__ContainCaseInsensitive.tsx +94 -0
- package/src/stores/core/filter/DataCubeQueryFilterOperation__EndWith.tsx +88 -0
- package/src/stores/core/filter/DataCubeQueryFilterOperation__EndWithCaseInsensitive.tsx +94 -0
- package/src/stores/core/filter/DataCubeQueryFilterOperation__Equal.tsx +170 -0
- package/src/stores/core/filter/DataCubeQueryFilterOperation__EqualCaseInsensitive.tsx +94 -0
- package/src/stores/core/filter/DataCubeQueryFilterOperation__EqualCaseInsensitiveColumn.tsx +92 -0
- package/src/stores/core/filter/DataCubeQueryFilterOperation__EqualColumn.tsx +93 -0
- package/src/stores/core/filter/DataCubeQueryFilterOperation__GreaterThan.tsx +96 -0
- package/src/stores/core/filter/DataCubeQueryFilterOperation__GreaterThanColumn.tsx +92 -0
- package/src/stores/core/filter/DataCubeQueryFilterOperation__GreaterThanOrEqual.tsx +96 -0
- package/src/stores/core/filter/DataCubeQueryFilterOperation__GreaterThanOrEqualColumn.tsx +92 -0
- package/src/stores/core/filter/DataCubeQueryFilterOperation__IsNotNull.tsx +92 -0
- package/src/stores/core/filter/DataCubeQueryFilterOperation__IsNull.tsx +89 -0
- package/src/stores/core/filter/DataCubeQueryFilterOperation__LessThan.tsx +96 -0
- package/src/stores/core/filter/DataCubeQueryFilterOperation__LessThanColumn.tsx +92 -0
- package/src/stores/core/filter/DataCubeQueryFilterOperation__LessThanOrEqual.tsx +96 -0
- package/src/stores/core/filter/DataCubeQueryFilterOperation__LessThanOrEqualColumn.tsx +92 -0
- package/src/stores/core/filter/DataCubeQueryFilterOperation__NotContain.tsx +91 -0
- package/src/stores/core/filter/DataCubeQueryFilterOperation__NotEndWith.tsx +91 -0
- package/src/stores/core/filter/DataCubeQueryFilterOperation__NotEqual.tsx +101 -0
- package/src/stores/core/filter/DataCubeQueryFilterOperation__NotEqualCaseInsensitive.tsx +97 -0
- package/src/stores/core/filter/DataCubeQueryFilterOperation__NotEqualCaseInsensitiveColumn.tsx +95 -0
- package/src/stores/core/filter/DataCubeQueryFilterOperation__NotEqualColumn.tsx +96 -0
- package/src/stores/core/filter/DataCubeQueryFilterOperation__NotStartWith.tsx +91 -0
- package/src/stores/core/filter/DataCubeQueryFilterOperation__StartWith.tsx +88 -0
- package/src/stores/core/filter/DataCubeQueryFilterOperation__StartWithCaseInsensitive.tsx +94 -0
- package/src/stores/editor/DataCubeEditorColumnPropertiesPanelState.ts +111 -0
- package/src/stores/editor/DataCubeEditorColumnsPanelState.ts +198 -0
- package/src/stores/editor/DataCubeEditorColumnsSelectorState.ts +115 -0
- package/src/stores/editor/DataCubeEditorGeneralPropertiesPanelState.ts +87 -0
- package/src/stores/editor/DataCubeEditorHorizontalPivotsPanelState.ts +132 -0
- package/src/stores/editor/DataCubeEditorMutableConfiguration.ts +677 -0
- package/src/stores/editor/DataCubeEditorPanelState.ts +37 -0
- package/src/stores/editor/DataCubeEditorSortsPanelState.ts +147 -0
- package/src/stores/editor/DataCubeEditorState.tsx +206 -0
- package/src/stores/editor/DataCubeEditorVerticalPivotsPanelState.ts +110 -0
- package/src/stores/engine/DataCubeApplicationEngine.tsx +120 -0
- package/src/stores/engine/DataCubeEngine.ts +276 -0
- package/src/stores/engine/DataCubeLayoutManagerState.ts +184 -0
- package/src/stores/engine/DataCubeQuery.ts +130 -0
- package/src/stores/extend/DataCubeColumnEditorState.tsx +365 -0
- package/src/stores/extend/DataCubeExtendManagerState.tsx +175 -0
- package/src/stores/filter/DataCubeFilterEditorState.tsx +327 -0
- package/src/stores/grid/DataCubeGridClientEngine.ts +506 -0
- package/src/stores/grid/DataCubeGridClientExportEngine.ts +173 -0
- package/src/stores/grid/DataCubeGridConfigurationBuilder.tsx +940 -0
- package/src/stores/grid/DataCubeGridControllerState.ts +493 -0
- package/src/stores/grid/DataCubeGridMenuBuilder.tsx +861 -0
- package/src/stores/grid/DataCubeGridQueryBuilder.ts +195 -0
- package/src/stores/grid/DataCubeGridQuerySnapshotBuilder.ts +125 -0
- package/src/stores/grid/DataCubeGridState.ts +155 -0
- package/tsconfig.json +164 -0
|
@@ -0,0 +1,185 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright (c) 2020-present, Goldman Sachs
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
import { DEFAULT_BACKGROUND_COLOR, DEFAULT_ERROR_FOREGROUND_COLOR, DEFAULT_FOREGROUND_COLOR, DEFAULT_NEGATIVE_FOREGROUND_COLOR, DEFAULT_ROW_HIGHLIGHT_BACKGROUND_COLOR, DEFAULT_ZERO_FOREGROUND_COLOR, DEFAULT_GRID_LINE_COLOR, DEFAULT_FONT_FAMILY, DEFAULT_FONT_SIZE, DEFAULT_FONT_BOLD, DEFAULT_FONT_ITALIC, DEFAULT_FONT_STRIKETHROUGH, DEFAULT_TEXT_ALIGN, DEFAULT_FONT_UNDERLINED, DEFAULT_FONT_CASE, DataCubeColumnKind, } from './DataCubeQueryEngine.js';
|
|
17
|
+
import { SerializationFactory, usingModelSchema } from '@finos/legend-shared';
|
|
18
|
+
import { createModelSchema, list, optional, primitive, raw } from 'serializr';
|
|
19
|
+
export class DataCubeColumnConfiguration {
|
|
20
|
+
name;
|
|
21
|
+
type;
|
|
22
|
+
kind = DataCubeColumnKind.DIMENSION;
|
|
23
|
+
displayName;
|
|
24
|
+
decimals;
|
|
25
|
+
displayCommas = false;
|
|
26
|
+
negativeNumberInParens = false;
|
|
27
|
+
numberScale;
|
|
28
|
+
missingValueDisplayText;
|
|
29
|
+
fontFamily;
|
|
30
|
+
fontSize;
|
|
31
|
+
fontBold;
|
|
32
|
+
fontItalic;
|
|
33
|
+
fontUnderline;
|
|
34
|
+
fontStrikethrough;
|
|
35
|
+
fontCase;
|
|
36
|
+
textAlign;
|
|
37
|
+
normalForegroundColor;
|
|
38
|
+
negativeForegroundColor;
|
|
39
|
+
zeroForegroundColor;
|
|
40
|
+
errorForegroundColor;
|
|
41
|
+
normalBackgroundColor;
|
|
42
|
+
negativeBackgroundColor;
|
|
43
|
+
zeroBackgroundColor;
|
|
44
|
+
errorBackgroundColor;
|
|
45
|
+
/**
|
|
46
|
+
* Used to indicate if the column is to be fetched as part of the result
|
|
47
|
+
* or to be used in aggregation. This would influence data-fetching.
|
|
48
|
+
*/
|
|
49
|
+
isSelected = true;
|
|
50
|
+
/**
|
|
51
|
+
* Unlike `isSelected`, this is used to indicate if the column is to be displayed
|
|
52
|
+
* in the grid or not, this would not influence data-fetching, i.e. the column
|
|
53
|
+
* is still fetched and used in various part of the queries, but the column associated
|
|
54
|
+
* will not be displayed in the result grid.
|
|
55
|
+
*/
|
|
56
|
+
hideFromView = false;
|
|
57
|
+
blur = false;
|
|
58
|
+
fixedWidth;
|
|
59
|
+
minWidth;
|
|
60
|
+
maxWidth;
|
|
61
|
+
pinned;
|
|
62
|
+
displayAsLink = false;
|
|
63
|
+
linkLabelParameter;
|
|
64
|
+
// NOTE: these configurations, when changed, would potentially trigger data-fetching
|
|
65
|
+
aggregateOperator;
|
|
66
|
+
aggregationParameters = [];
|
|
67
|
+
excludedFromHorizontalPivot = true; // this agrees with default column kind set as Dimension
|
|
68
|
+
horizontalPivotSortFunction;
|
|
69
|
+
constructor(name, type) {
|
|
70
|
+
this.name = name;
|
|
71
|
+
this.type = type;
|
|
72
|
+
}
|
|
73
|
+
static serialization = new SerializationFactory(createModelSchema(DataCubeColumnConfiguration, {
|
|
74
|
+
aggregateOperator: primitive(),
|
|
75
|
+
aggregationParameters: list(raw()),
|
|
76
|
+
blur: primitive(),
|
|
77
|
+
decimals: optional(primitive()),
|
|
78
|
+
displayAsLink: primitive(),
|
|
79
|
+
displayCommas: primitive(),
|
|
80
|
+
displayName: optional(primitive()),
|
|
81
|
+
errorBackgroundColor: optional(primitive()),
|
|
82
|
+
errorForegroundColor: optional(primitive()),
|
|
83
|
+
excludedFromHorizontalPivot: primitive(),
|
|
84
|
+
fixedWidth: optional(primitive()),
|
|
85
|
+
fontBold: optional(primitive()),
|
|
86
|
+
fontCase: optional(primitive()),
|
|
87
|
+
fontFamily: optional(primitive()),
|
|
88
|
+
fontItalic: optional(primitive()),
|
|
89
|
+
fontSize: optional(primitive()),
|
|
90
|
+
fontStrikethrough: optional(primitive()),
|
|
91
|
+
fontUnderline: optional(primitive()),
|
|
92
|
+
hideFromView: primitive(),
|
|
93
|
+
horizontalPivotSortFunction: optional(primitive()),
|
|
94
|
+
isSelected: primitive(),
|
|
95
|
+
kind: primitive(),
|
|
96
|
+
linkLabelParameter: optional(primitive()),
|
|
97
|
+
maxWidth: optional(primitive()),
|
|
98
|
+
minWidth: optional(primitive()),
|
|
99
|
+
missingValueDisplayText: optional(primitive()),
|
|
100
|
+
name: primitive(),
|
|
101
|
+
negativeBackgroundColor: optional(primitive()),
|
|
102
|
+
negativeForegroundColor: optional(primitive()),
|
|
103
|
+
normalBackgroundColor: optional(primitive()),
|
|
104
|
+
normalForegroundColor: optional(primitive()),
|
|
105
|
+
negativeNumberInParens: primitive(),
|
|
106
|
+
numberScale: optional(primitive()),
|
|
107
|
+
pinned: optional(primitive()),
|
|
108
|
+
textAlign: optional(primitive()),
|
|
109
|
+
type: primitive(),
|
|
110
|
+
zeroBackgroundColor: optional(primitive()),
|
|
111
|
+
zeroForegroundColor: optional(primitive()),
|
|
112
|
+
}));
|
|
113
|
+
}
|
|
114
|
+
export class DataCubeConfiguration {
|
|
115
|
+
description;
|
|
116
|
+
columns = [];
|
|
117
|
+
showTreeLines = false;
|
|
118
|
+
showHorizontalGridLines = false;
|
|
119
|
+
showVerticalGridLines = true;
|
|
120
|
+
gridLineColor = DEFAULT_GRID_LINE_COLOR;
|
|
121
|
+
fontFamily = DEFAULT_FONT_FAMILY;
|
|
122
|
+
fontSize = DEFAULT_FONT_SIZE;
|
|
123
|
+
fontBold = DEFAULT_FONT_BOLD;
|
|
124
|
+
fontItalic = DEFAULT_FONT_ITALIC;
|
|
125
|
+
fontUnderline = DEFAULT_FONT_UNDERLINED;
|
|
126
|
+
fontStrikethrough = DEFAULT_FONT_STRIKETHROUGH;
|
|
127
|
+
fontCase = DEFAULT_FONT_CASE;
|
|
128
|
+
textAlign = DEFAULT_TEXT_ALIGN;
|
|
129
|
+
normalForegroundColor = DEFAULT_FOREGROUND_COLOR;
|
|
130
|
+
negativeForegroundColor = DEFAULT_NEGATIVE_FOREGROUND_COLOR;
|
|
131
|
+
zeroForegroundColor = DEFAULT_ZERO_FOREGROUND_COLOR;
|
|
132
|
+
errorForegroundColor = DEFAULT_ERROR_FOREGROUND_COLOR;
|
|
133
|
+
normalBackgroundColor = DEFAULT_BACKGROUND_COLOR;
|
|
134
|
+
negativeBackgroundColor = DEFAULT_BACKGROUND_COLOR;
|
|
135
|
+
zeroBackgroundColor = DEFAULT_BACKGROUND_COLOR;
|
|
136
|
+
errorBackgroundColor = DEFAULT_BACKGROUND_COLOR;
|
|
137
|
+
alternateRows = false;
|
|
138
|
+
alternateRowsStandardMode = true;
|
|
139
|
+
alternateRowsColor = DEFAULT_ROW_HIGHLIGHT_BACKGROUND_COLOR;
|
|
140
|
+
alternateRowsCount = 1;
|
|
141
|
+
selectionStats = [];
|
|
142
|
+
showWarningForTruncatedResult = true;
|
|
143
|
+
// NOTE: these configurations, when changed, would potentially trigger data-fetching
|
|
144
|
+
initialExpandLevel;
|
|
145
|
+
showRootAggregation = false;
|
|
146
|
+
showLeafCount = false;
|
|
147
|
+
pivotTotalColumnPlacement;
|
|
148
|
+
treeGroupSortFunction;
|
|
149
|
+
static serialization = new SerializationFactory(createModelSchema(DataCubeConfiguration, {
|
|
150
|
+
alternateRows: primitive(),
|
|
151
|
+
alternateRowsColor: primitive(),
|
|
152
|
+
alternateRowsCount: primitive(),
|
|
153
|
+
alternateRowsStandardMode: primitive(),
|
|
154
|
+
columns: list(usingModelSchema(DataCubeColumnConfiguration.serialization.schema)),
|
|
155
|
+
errorBackgroundColor: primitive(),
|
|
156
|
+
errorForegroundColor: primitive(),
|
|
157
|
+
description: optional(primitive()),
|
|
158
|
+
fontBold: primitive(),
|
|
159
|
+
fontCase: optional(primitive()),
|
|
160
|
+
fontFamily: primitive(),
|
|
161
|
+
fontItalic: primitive(),
|
|
162
|
+
fontSize: primitive(),
|
|
163
|
+
fontStrikethrough: primitive(),
|
|
164
|
+
fontUnderline: optional(primitive()),
|
|
165
|
+
gridLineColor: primitive(),
|
|
166
|
+
initialExpandLevel: optional(primitive()),
|
|
167
|
+
negativeBackgroundColor: primitive(),
|
|
168
|
+
negativeForegroundColor: primitive(),
|
|
169
|
+
normalBackgroundColor: primitive(),
|
|
170
|
+
normalForegroundColor: primitive(),
|
|
171
|
+
pivotTotalColumnPlacement: optional(primitive()),
|
|
172
|
+
selectionStats: list(primitive()),
|
|
173
|
+
showHorizontalGridLines: primitive(),
|
|
174
|
+
showLeafCount: primitive(),
|
|
175
|
+
showRootAggregation: primitive(),
|
|
176
|
+
showTreeLines: primitive(),
|
|
177
|
+
showVerticalGridLines: primitive(),
|
|
178
|
+
showWarningForTruncatedResult: primitive(),
|
|
179
|
+
textAlign: primitive(),
|
|
180
|
+
treeGroupSortFunction: optional(primitive()),
|
|
181
|
+
zeroBackgroundColor: primitive(),
|
|
182
|
+
zeroForegroundColor: primitive(),
|
|
183
|
+
}));
|
|
184
|
+
}
|
|
185
|
+
//# sourceMappingURL=DataCubeConfiguration.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DataCubeConfiguration.js","sourceRoot":"","sources":["../../../src/stores/core/DataCubeConfiguration.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright (c) 2020-present, Goldman Sachs
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
import { DataCubeColumnConfiguration, DataCubeConfiguration } from './DataCubeConfiguration.js';
|
|
17
|
+
export declare function buildDefaultColumnConfiguration(column: {
|
|
18
|
+
name: string;
|
|
19
|
+
type: string;
|
|
20
|
+
}): DataCubeColumnConfiguration;
|
|
21
|
+
export declare function buildDefaultConfiguration(columns: {
|
|
22
|
+
name: string;
|
|
23
|
+
type: string;
|
|
24
|
+
}[]): DataCubeConfiguration;
|
|
25
|
+
//# sourceMappingURL=DataCubeConfigurationBuilder.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DataCubeConfigurationBuilder.d.ts","sourceRoot":"","sources":["../../../src/stores/core/DataCubeConfigurationBuilder.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AAGH,OAAO,EACL,2BAA2B,EAC3B,qBAAqB,EACtB,MAAM,4BAA4B,CAAC;AAOpC,wBAAgB,+BAA+B,CAAC,MAAM,EAAE;IACtD,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,MAAM,CAAC;CACd,GAAG,2BAA2B,CAyB9B;AAED,wBAAgB,yBAAyB,CACvC,OAAO,EAAE;IAAE,IAAI,EAAE,MAAM,CAAC;IAAC,IAAI,EAAE,MAAM,CAAA;CAAE,EAAE,GACxC,qBAAqB,CAMvB"}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright (c) 2020-present, Goldman Sachs
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
import { PRIMITIVE_TYPE } from '@finos/legend-graph';
|
|
17
|
+
import { DataCubeColumnConfiguration, DataCubeConfiguration, } from './DataCubeConfiguration.js';
|
|
18
|
+
import { DataCubeAggregateOperator, DataCubeColumnKind, DataCubeFontTextAlignment, } from './DataCubeQueryEngine.js';
|
|
19
|
+
export function buildDefaultColumnConfiguration(column) {
|
|
20
|
+
const { name, type } = column;
|
|
21
|
+
const config = new DataCubeColumnConfiguration(name, type);
|
|
22
|
+
switch (type) {
|
|
23
|
+
case PRIMITIVE_TYPE.NUMBER:
|
|
24
|
+
case PRIMITIVE_TYPE.INTEGER:
|
|
25
|
+
case PRIMITIVE_TYPE.DECIMAL:
|
|
26
|
+
case PRIMITIVE_TYPE.FLOAT: {
|
|
27
|
+
config.kind = DataCubeColumnKind.MEASURE;
|
|
28
|
+
config.decimals = type === PRIMITIVE_TYPE.INTEGER ? 0 : 2;
|
|
29
|
+
config.displayCommas = true;
|
|
30
|
+
config.negativeNumberInParens = true;
|
|
31
|
+
config.textAlign = DataCubeFontTextAlignment.RIGHT; // always align number to the right
|
|
32
|
+
config.excludedFromHorizontalPivot = false;
|
|
33
|
+
config.aggregateOperator = DataCubeAggregateOperator.SUM;
|
|
34
|
+
break;
|
|
35
|
+
}
|
|
36
|
+
default: {
|
|
37
|
+
config.kind = DataCubeColumnKind.DIMENSION;
|
|
38
|
+
config.excludedFromHorizontalPivot = true;
|
|
39
|
+
config.aggregateOperator = DataCubeAggregateOperator.UNIQUE;
|
|
40
|
+
break;
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
return config;
|
|
44
|
+
}
|
|
45
|
+
export function buildDefaultConfiguration(columns) {
|
|
46
|
+
const configuration = new DataCubeConfiguration();
|
|
47
|
+
configuration.columns = columns.map((column) => buildDefaultColumnConfiguration(column));
|
|
48
|
+
return configuration;
|
|
49
|
+
}
|
|
50
|
+
//# sourceMappingURL=DataCubeConfigurationBuilder.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DataCubeConfigurationBuilder.js","sourceRoot":"","sources":["../../../src/stores/core/DataCubeConfigurationBuilder.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AAEH,OAAO,EAAE,cAAc,EAAE,MAAM,qBAAqB,CAAC;AACrD,OAAO,EACL,2BAA2B,EAC3B,qBAAqB,GACtB,MAAM,4BAA4B,CAAC;AACpC,OAAO,EACL,yBAAyB,EACzB,kBAAkB,EAClB,yBAAyB,GAC1B,MAAM,0BAA0B,CAAC;AAElC,MAAM,UAAU,+BAA+B,CAAC,MAG/C;IACC,MAAM,EAAE,IAAI,EAAE,IAAI,EAAE,GAAG,MAAM,CAAC;IAC9B,MAAM,MAAM,GAAG,IAAI,2BAA2B,CAAC,IAAI,EAAE,IAAI,CAAC,CAAC;IAC3D,QAAQ,IAAI,EAAE,CAAC;QACb,KAAK,cAAc,CAAC,MAAM,CAAC;QAC3B,KAAK,cAAc,CAAC,OAAO,CAAC;QAC5B,KAAK,cAAc,CAAC,OAAO,CAAC;QAC5B,KAAK,cAAc,CAAC,KAAK,CAAC,CAAC,CAAC;YAC1B,MAAM,CAAC,IAAI,GAAG,kBAAkB,CAAC,OAAO,CAAC;YACzC,MAAM,CAAC,QAAQ,GAAG,IAAI,KAAK,cAAc,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;YAC1D,MAAM,CAAC,aAAa,GAAG,IAAI,CAAC;YAC5B,MAAM,CAAC,sBAAsB,GAAG,IAAI,CAAC;YACrC,MAAM,CAAC,SAAS,GAAG,yBAAyB,CAAC,KAAK,CAAC,CAAC,mCAAmC;YACvF,MAAM,CAAC,2BAA2B,GAAG,KAAK,CAAC;YAC3C,MAAM,CAAC,iBAAiB,GAAG,yBAAyB,CAAC,GAAG,CAAC;YACzD,MAAM;QACR,CAAC;QACD,OAAO,CAAC,CAAC,CAAC;YACR,MAAM,CAAC,IAAI,GAAG,kBAAkB,CAAC,SAAS,CAAC;YAC3C,MAAM,CAAC,2BAA2B,GAAG,IAAI,CAAC;YAC1C,MAAM,CAAC,iBAAiB,GAAG,yBAAyB,CAAC,MAAM,CAAC;YAC5D,MAAM;QACR,CAAC;IACH,CAAC;IACD,OAAO,MAAM,CAAC;AAChB,CAAC;AAED,MAAM,UAAU,yBAAyB,CACvC,OAAyC;IAEzC,MAAM,aAAa,GAAG,IAAI,qBAAqB,EAAE,CAAC;IAClD,aAAa,CAAC,OAAO,GAAG,OAAO,CAAC,GAAG,CAAC,CAAC,MAAM,EAAE,EAAE,CAC7C,+BAA+B,CAAC,MAAM,CAAC,CACxC,CAAC;IACF,OAAO,aAAa,CAAC;AACvB,CAAC"}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright (c) 2020-present, Goldman Sachs
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
import type { DataCubeViewState } from '../DataCubeViewState.js';
|
|
17
|
+
import { DataCubeQuerySnapshotController } from './DataCubeQuerySnapshotManager.js';
|
|
18
|
+
import type { DataCubeQuerySnapshot } from './DataCubeQuerySnapshot.js';
|
|
19
|
+
import type { DataCubeQuery } from '../engine/DataCubeQuery.js';
|
|
20
|
+
/**
|
|
21
|
+
* Unlike other query editor state, this state does not support making any
|
|
22
|
+
* modification to the query, it simplies subscribe to extract information
|
|
23
|
+
* from the latest snapshot to help display latest static info about the query.
|
|
24
|
+
*/
|
|
25
|
+
export declare class DataCubeInfoState extends DataCubeQuerySnapshotController {
|
|
26
|
+
baseQuery: DataCubeQuery;
|
|
27
|
+
name: string;
|
|
28
|
+
private editionStartTime?;
|
|
29
|
+
constructor(view: DataCubeViewState);
|
|
30
|
+
private setName;
|
|
31
|
+
applySnapshot(snapshot: DataCubeQuerySnapshot, previousSnapshot: DataCubeQuerySnapshot | undefined): Promise<void>;
|
|
32
|
+
}
|
|
33
|
+
//# sourceMappingURL=DataCubeInfoState.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DataCubeInfoState.d.ts","sourceRoot":"","sources":["../../../src/stores/core/DataCubeInfoState.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AAGH,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,yBAAyB,CAAC;AACjE,OAAO,EAAE,+BAA+B,EAAE,MAAM,mCAAmC,CAAC;AACpF,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,4BAA4B,CAAC;AACxE,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,4BAA4B,CAAC;AAIhE;;;;GAIG;AACH,qBAAa,iBAAkB,SAAQ,+BAA+B;IACpE,SAAS,EAAG,aAAa,CAAC;IAC1B,IAAI,SAAuB;IAC3B,OAAO,CAAC,gBAAgB,CAAC,CAAqB;gBAElC,IAAI,EAAE,iBAAiB;IASnC,OAAO,CAAC,OAAO;IAIA,aAAa,CAC1B,QAAQ,EAAE,qBAAqB,EAC/B,gBAAgB,EAAE,qBAAqB,GAAG,SAAS;CAWtD"}
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright (c) 2020-present, Goldman Sachs
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
import { action, makeObservable, observable } from 'mobx';
|
|
17
|
+
import { DataCubeQuerySnapshotController } from './DataCubeQuerySnapshotManager.js';
|
|
18
|
+
import { formatDate } from '@finos/legend-shared';
|
|
19
|
+
import { DEFAULT_REPORT_NAME } from './DataCubeQueryEngine.js';
|
|
20
|
+
/**
|
|
21
|
+
* Unlike other query editor state, this state does not support making any
|
|
22
|
+
* modification to the query, it simplies subscribe to extract information
|
|
23
|
+
* from the latest snapshot to help display latest static info about the query.
|
|
24
|
+
*/
|
|
25
|
+
export class DataCubeInfoState extends DataCubeQuerySnapshotController {
|
|
26
|
+
baseQuery;
|
|
27
|
+
name = DEFAULT_REPORT_NAME;
|
|
28
|
+
editionStartTime;
|
|
29
|
+
constructor(view) {
|
|
30
|
+
super(view);
|
|
31
|
+
makeObservable(this, {
|
|
32
|
+
name: observable,
|
|
33
|
+
setName: action,
|
|
34
|
+
});
|
|
35
|
+
}
|
|
36
|
+
setName(val) {
|
|
37
|
+
this.name = val;
|
|
38
|
+
}
|
|
39
|
+
async applySnapshot(snapshot, previousSnapshot) {
|
|
40
|
+
const data = snapshot.data;
|
|
41
|
+
this.setName(data.name);
|
|
42
|
+
if (!this.editionStartTime) {
|
|
43
|
+
this.editionStartTime = snapshot.timestamp;
|
|
44
|
+
}
|
|
45
|
+
this.view.application.setWindowTitle(`\u229E ${data.name}${this.editionStartTime ? ` - ${formatDate(new Date(this.editionStartTime), 'HH:mm:ss EEE MMM dd yyyy')}` : ''}`);
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
//# sourceMappingURL=DataCubeInfoState.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DataCubeInfoState.js","sourceRoot":"","sources":["../../../src/stores/core/DataCubeInfoState.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AAEH,OAAO,EAAE,MAAM,EAAE,cAAc,EAAE,UAAU,EAAE,MAAM,MAAM,CAAC;AAE1D,OAAO,EAAE,+BAA+B,EAAE,MAAM,mCAAmC,CAAC;AAGpF,OAAO,EAAE,UAAU,EAAE,MAAM,sBAAsB,CAAC;AAClD,OAAO,EAAE,mBAAmB,EAAE,MAAM,0BAA0B,CAAC;AAE/D;;;;GAIG;AACH,MAAM,OAAO,iBAAkB,SAAQ,+BAA+B;IACpE,SAAS,CAAiB;IAC1B,IAAI,GAAG,mBAAmB,CAAC;IACnB,gBAAgB,CAAsB;IAE9C,YAAY,IAAuB;QACjC,KAAK,CAAC,IAAI,CAAC,CAAC;QAEZ,cAAc,CAA+B,IAAI,EAAE;YACjD,IAAI,EAAE,UAAU;YAChB,OAAO,EAAE,MAAM;SAChB,CAAC,CAAC;IACL,CAAC;IAEO,OAAO,CAAC,GAAW;QACzB,IAAI,CAAC,IAAI,GAAG,GAAG,CAAC;IAClB,CAAC;IAEQ,KAAK,CAAC,aAAa,CAC1B,QAA+B,EAC/B,gBAAmD;QAEnD,MAAM,IAAI,GAAG,QAAQ,CAAC,IAAI,CAAC;QAC3B,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;QACxB,IAAI,CAAC,IAAI,CAAC,gBAAgB,EAAE,CAAC;YAC3B,IAAI,CAAC,gBAAgB,GAAG,QAAQ,CAAC,SAAS,CAAC;QAC7C,CAAC;QACD,IAAI,CAAC,IAAI,CAAC,WAAW,CAAC,cAAc,CAClC,UAAU,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC,gBAAgB,CAAC,CAAC,CAAC,MAAM,UAAU,CAAC,IAAI,IAAI,CAAC,IAAI,CAAC,gBAAgB,CAAC,EAAE,0BAA0B,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,EAAE,CACrI,CAAC;IACJ,CAAC;CACF"}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright (c) 2020-present, Goldman Sachs
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
/***************************************************************************************
|
|
17
|
+
* [CORE]
|
|
18
|
+
*
|
|
19
|
+
* This and its corresponding utilitites are used to build the executable query from
|
|
20
|
+
* the query snapshot. The executable query is then used to fetch data.
|
|
21
|
+
***************************************************************************************/
|
|
22
|
+
import { type V1_AppliedFunction } from '@finos/legend-graph';
|
|
23
|
+
import { type DataCubeQuerySnapshot } from './DataCubeQuerySnapshot.js';
|
|
24
|
+
import { type DataCubeQueryFunctionMap } from './DataCubeQueryEngine.js';
|
|
25
|
+
import { DataCubeConfiguration } from './DataCubeConfiguration.js';
|
|
26
|
+
import type { DataCubeQueryFilterOperation } from './filter/DataCubeQueryFilterOperation.js';
|
|
27
|
+
import type { DataCubeQueryAggregateOperation } from './aggregation/DataCubeQueryAggregateOperation.js';
|
|
28
|
+
export declare function buildExecutableQuery(snapshot: DataCubeQuerySnapshot, filterOperations: DataCubeQueryFilterOperation[], aggregateOperations: DataCubeQueryAggregateOperation[], options?: {
|
|
29
|
+
postProcessor?: (snapshot: DataCubeQuerySnapshot, sequence: V1_AppliedFunction[], funcMap: DataCubeQueryFunctionMap, configuration: DataCubeConfiguration, filterOperations: DataCubeQueryFilterOperation[], aggregateOperations: DataCubeQueryAggregateOperation[]) => void;
|
|
30
|
+
pagination?: {
|
|
31
|
+
start: number;
|
|
32
|
+
end: number;
|
|
33
|
+
} | undefined;
|
|
34
|
+
}): import("@finos/legend-graph").V1_ValueSpecification;
|
|
35
|
+
//# sourceMappingURL=DataCubeQueryBuilder.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DataCubeQueryBuilder.d.ts","sourceRoot":"","sources":["../../../src/stores/core/DataCubeQueryBuilder.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AAEH;;;;;yFAKyF;AAEzF,OAAO,EAEL,KAAK,kBAAkB,EAGxB,MAAM,qBAAqB,CAAC;AAC7B,OAAO,EACL,KAAK,qBAAqB,EAE3B,MAAM,4BAA4B,CAAC;AAMpC,OAAO,EAIL,KAAK,wBAAwB,EAC9B,MAAM,0BAA0B,CAAC;AAClC,OAAO,EAAE,qBAAqB,EAAE,MAAM,4BAA4B,CAAC;AACnE,OAAO,KAAK,EAAE,4BAA4B,EAAE,MAAM,0CAA0C,CAAC;AAkB7F,OAAO,KAAK,EAAE,+BAA+B,EAAE,MAAM,kDAAkD,CAAC;AAExG,wBAAgB,oBAAoB,CAClC,QAAQ,EAAE,qBAAqB,EAC/B,gBAAgB,EAAE,4BAA4B,EAAE,EAChD,mBAAmB,EAAE,+BAA+B,EAAE,EACtD,OAAO,CAAC,EAAE;IACR,aAAa,CAAC,EAAE,CACd,QAAQ,EAAE,qBAAqB,EAC/B,QAAQ,EAAE,kBAAkB,EAAE,EAC9B,OAAO,EAAE,wBAAwB,EACjC,aAAa,EAAE,qBAAqB,EACpC,gBAAgB,EAAE,4BAA4B,EAAE,EAChD,mBAAmB,EAAE,+BAA+B,EAAE,KACnD,IAAI,CAAC;IACV,UAAU,CAAC,EACP;QACE,KAAK,EAAE,MAAM,CAAC;QACd,GAAG,EAAE,MAAM,CAAC;KACb,GACD,SAAS,CAAC;CACf,uDAmNF"}
|
|
@@ -0,0 +1,130 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright (c) 2020-present, Goldman Sachs
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
/***************************************************************************************
|
|
17
|
+
* [CORE]
|
|
18
|
+
*
|
|
19
|
+
* This and its corresponding utilitites are used to build the executable query from
|
|
20
|
+
* the query snapshot. The executable query is then used to fetch data.
|
|
21
|
+
***************************************************************************************/
|
|
22
|
+
import { PRIMITIVE_TYPE, V1_deserializeValueSpecification, extractElementNameFromPath as _name, } from '@finos/legend-graph';
|
|
23
|
+
import {} from './DataCubeQuerySnapshot.js';
|
|
24
|
+
import { guaranteeNonNullable, isNonNullable, UnsupportedOperationError, } from '@finos/legend-shared';
|
|
25
|
+
import { DataCubeExtendedColumnType, DataCubeFunction, DataCubeQuerySortOperator, } from './DataCubeQueryEngine.js';
|
|
26
|
+
import { DataCubeConfiguration } from './DataCubeConfiguration.js';
|
|
27
|
+
import { _col, _collection, _cols, _colSpec, _deserializeToLambda, _elementPtr, _filter, _function, _groupByAggCols, _lambda, _pivotAggCols, _castCols, _primitiveValue, _var, _functionCompositionProcessor, } from './DataCubeQueryBuilderUtils.js';
|
|
28
|
+
export function buildExecutableQuery(snapshot, filterOperations, aggregateOperations, options) {
|
|
29
|
+
const data = snapshot.data;
|
|
30
|
+
const sourceQuery = V1_deserializeValueSpecification(data.sourceQuery, []);
|
|
31
|
+
const configuration = DataCubeConfiguration.serialization.fromJson(data.configuration);
|
|
32
|
+
const sequence = [];
|
|
33
|
+
const funcMap = {};
|
|
34
|
+
const _process = _functionCompositionProcessor(sequence, funcMap);
|
|
35
|
+
// --------------------------------- LEAF-LEVEL EXTEND ---------------------------------
|
|
36
|
+
if (data.leafExtendedColumns.length) {
|
|
37
|
+
_process('leafExtend', _function(_name(DataCubeFunction.EXTEND), [
|
|
38
|
+
_cols(data.leafExtendedColumns.map((col) => {
|
|
39
|
+
if (col._type === DataCubeExtendedColumnType.SIMPLE) {
|
|
40
|
+
const column = col;
|
|
41
|
+
return _colSpec(column.name, _deserializeToLambda(column.lambda));
|
|
42
|
+
}
|
|
43
|
+
throw new UnsupportedOperationError(`Can't build extended column of type '${col._type}'`);
|
|
44
|
+
})),
|
|
45
|
+
]));
|
|
46
|
+
}
|
|
47
|
+
// --------------------------------- FILTER ---------------------------------
|
|
48
|
+
if (data.filter) {
|
|
49
|
+
_process('filter', _function(_name(DataCubeFunction.FILTER), [
|
|
50
|
+
_lambda([_var()], [_filter(data.filter, filterOperations)]),
|
|
51
|
+
]));
|
|
52
|
+
}
|
|
53
|
+
// --------------------------------- SELECT ---------------------------------
|
|
54
|
+
if (data.selectColumns.length) {
|
|
55
|
+
_process('select', _function(_name(DataCubeFunction.SELECT), [
|
|
56
|
+
_cols(data.selectColumns.map((col) => _colSpec(col.name))),
|
|
57
|
+
]));
|
|
58
|
+
}
|
|
59
|
+
// --------------------------------- PIVOT ---------------------------------
|
|
60
|
+
if (data.pivot) {
|
|
61
|
+
const pivot = data.pivot;
|
|
62
|
+
// pre-sort to maintain stable order for pivot result columns
|
|
63
|
+
_process('sort', _function(_name(DataCubeFunction.SORT), [
|
|
64
|
+
_collection(data.pivot.columns.map((col) => _function(_name(DataCubeFunction.ASC), [_col(col.name)]))),
|
|
65
|
+
]));
|
|
66
|
+
_process('pivot', _function(_name(DataCubeFunction.PIVOT), [
|
|
67
|
+
_cols(pivot.columns.map((col) => _colSpec(col.name))),
|
|
68
|
+
_cols(_pivotAggCols(pivot.columns, snapshot, configuration, aggregateOperations)),
|
|
69
|
+
]));
|
|
70
|
+
if (pivot.castColumns.length) {
|
|
71
|
+
_process('pivotCast', _function(_name(DataCubeFunction.CAST), [_castCols(pivot.castColumns)]));
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
// --------------------------------- GROUP BY ---------------------------------
|
|
75
|
+
if (data.groupBy) {
|
|
76
|
+
const groupBy = data.groupBy;
|
|
77
|
+
_process('groupBy', _function(_name(DataCubeFunction.GROUP_BY), [
|
|
78
|
+
_cols(groupBy.columns.map((col) => _colSpec(col.name))),
|
|
79
|
+
_cols(_groupByAggCols(groupBy.columns, snapshot, configuration, aggregateOperations)),
|
|
80
|
+
]));
|
|
81
|
+
}
|
|
82
|
+
// --------------------------------- GROUP-LEVEL EXTEND ---------------------------------
|
|
83
|
+
if (data.groupExtendedColumns.length) {
|
|
84
|
+
_process('groupExtend', _function(_name(DataCubeFunction.EXTEND), [
|
|
85
|
+
_cols(data.groupExtendedColumns.map((col) => {
|
|
86
|
+
if (col._type === DataCubeExtendedColumnType.SIMPLE) {
|
|
87
|
+
const column = col;
|
|
88
|
+
return _colSpec(column.name, _deserializeToLambda(column.lambda));
|
|
89
|
+
}
|
|
90
|
+
throw new UnsupportedOperationError(`Can't build extended column of type '${col._type}'`);
|
|
91
|
+
})),
|
|
92
|
+
]));
|
|
93
|
+
}
|
|
94
|
+
// --------------------------------- SORT ---------------------------------
|
|
95
|
+
if (data.sortColumns.length) {
|
|
96
|
+
_process('sort', _function(_name(DataCubeFunction.SORT), [
|
|
97
|
+
_collection(data.sortColumns.map((col) => _function(_name(col.operation === DataCubeQuerySortOperator.ASCENDING
|
|
98
|
+
? DataCubeFunction.ASC
|
|
99
|
+
: DataCubeFunction.DESC), [_col(col.name)]))),
|
|
100
|
+
]));
|
|
101
|
+
}
|
|
102
|
+
// --------------------------------- LIMIT ---------------------------------
|
|
103
|
+
if (data.limit !== undefined) {
|
|
104
|
+
_process('limit', _function(_name(DataCubeFunction.LIMIT), [
|
|
105
|
+
_primitiveValue(PRIMITIVE_TYPE.INTEGER, data.limit),
|
|
106
|
+
]));
|
|
107
|
+
}
|
|
108
|
+
// --------------------------------- SLICE ---------------------------------
|
|
109
|
+
if (options?.pagination) {
|
|
110
|
+
sequence.push(_function(_name(DataCubeFunction.SLICE), [
|
|
111
|
+
_primitiveValue(PRIMITIVE_TYPE.INTEGER, options.pagination.start),
|
|
112
|
+
_primitiveValue(PRIMITIVE_TYPE.INTEGER, options.pagination.end),
|
|
113
|
+
]));
|
|
114
|
+
}
|
|
115
|
+
// --------------------------------- FROM ---------------------------------
|
|
116
|
+
sequence.push(_function(_name(DataCubeFunction.FROM), [
|
|
117
|
+
data.mapping ? _elementPtr(data.mapping) : undefined,
|
|
118
|
+
_elementPtr(data.runtime),
|
|
119
|
+
].filter(isNonNullable)));
|
|
120
|
+
// --------------------------------- FINALIZE ---------------------------------
|
|
121
|
+
options?.postProcessor?.(snapshot, sequence, funcMap, configuration, filterOperations, aggregateOperations);
|
|
122
|
+
if (!sequence.length) {
|
|
123
|
+
return sourceQuery;
|
|
124
|
+
}
|
|
125
|
+
for (let i = 0; i < sequence.length; i++) {
|
|
126
|
+
guaranteeNonNullable(sequence[i]).parameters.unshift(i === 0 ? sourceQuery : guaranteeNonNullable(sequence[i - 1]));
|
|
127
|
+
}
|
|
128
|
+
return guaranteeNonNullable(sequence[sequence.length - 1]);
|
|
129
|
+
}
|
|
130
|
+
//# sourceMappingURL=DataCubeQueryBuilder.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DataCubeQueryBuilder.js","sourceRoot":"","sources":["../../../src/stores/core/DataCubeQueryBuilder.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright (c) 2020-present, Goldman Sachs
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
/***************************************************************************************
|
|
17
|
+
* [CORE]
|
|
18
|
+
*
|
|
19
|
+
* These are utilities used to build the executable query from the query snapshot.
|
|
20
|
+
* The executable query is then used to fetch data.
|
|
21
|
+
***************************************************************************************/
|
|
22
|
+
import { V1_AppliedFunction, V1_AppliedProperty, V1_CBoolean, V1_CDateTime, V1_CDecimal, V1_CFloat, V1_CInteger, V1_CStrictDate, V1_CStrictTime, V1_CString, V1_ClassInstance, V1_ColSpec, V1_Collection, V1_Lambda, V1_PackageableElementPtr, V1_Variable, type V1_ValueSpecification, V1_GenericTypeInstance } from '@finos/legend-graph';
|
|
23
|
+
import { type DataCubeQuerySnapshotFilterCondition, type DataCubeQuerySnapshotFilter, type DataCubeQuerySnapshotColumn, type DataCubeQuerySnapshot } from './DataCubeQuerySnapshot.js';
|
|
24
|
+
import { type PlainObject } from '@finos/legend-shared';
|
|
25
|
+
import { type DataCubeOperationValue, type DataCubeQueryFunctionMap } from './DataCubeQueryEngine.js';
|
|
26
|
+
import type { DataCubeQueryFilterOperation } from './filter/DataCubeQueryFilterOperation.js';
|
|
27
|
+
import type { DataCubeQueryAggregateOperation } from './aggregation/DataCubeQueryAggregateOperation.js';
|
|
28
|
+
import { type DataCubeConfiguration } from './DataCubeConfiguration.js';
|
|
29
|
+
export declare function _functionCompositionProcessor(sequence: V1_AppliedFunction[], funcMap: DataCubeQueryFunctionMap): (key: keyof DataCubeQueryFunctionMap, func: V1_AppliedFunction) => void;
|
|
30
|
+
export declare function _functionCompositionUnProcessor(sequence: V1_AppliedFunction[], funcMap: DataCubeQueryFunctionMap): (key: keyof DataCubeQueryFunctionMap) => void;
|
|
31
|
+
export declare function _deserializeToLambda(json: PlainObject<V1_Lambda>): V1_Lambda;
|
|
32
|
+
export declare function _var(name?: string | undefined): V1_Variable;
|
|
33
|
+
export declare function _property(name: string, variable?: V1_Variable | undefined): V1_AppliedProperty;
|
|
34
|
+
export declare function _lambda(parameters: V1_Variable[], body: V1_ValueSpecification[]): V1_Lambda;
|
|
35
|
+
export declare function _functionName(funcNameOrPath: string): string;
|
|
36
|
+
export declare function _function(functionName: string, parameters: V1_ValueSpecification[]): V1_AppliedFunction;
|
|
37
|
+
export declare function _collection(values: V1_ValueSpecification[]): V1_Collection;
|
|
38
|
+
export declare function _primitiveValue(type: string, value: unknown): V1_CInteger | V1_CDecimal | V1_CString | V1_CBoolean | V1_CFloat | V1_CDateTime | V1_CStrictDate | V1_CStrictTime;
|
|
39
|
+
export declare function _elementPtr(fullPath: string): V1_PackageableElementPtr;
|
|
40
|
+
export declare function _colSpec(name: string, function1?: V1_Lambda | undefined, function2?: V1_Lambda | undefined): V1_ColSpec;
|
|
41
|
+
export declare function _value(value: DataCubeOperationValue, variable?: V1_Variable | undefined): V1_AppliedProperty | V1_Collection | V1_CInteger | V1_CDecimal | V1_CString | V1_CBoolean | V1_CFloat | V1_CDateTime | V1_CStrictDate | V1_CStrictTime;
|
|
42
|
+
export declare function _not(fn: V1_AppliedFunction): V1_AppliedFunction;
|
|
43
|
+
export declare function _col(name: string, function1?: V1_Lambda | undefined, function2?: V1_Lambda | undefined): V1_ClassInstance;
|
|
44
|
+
export declare function _cols(colSpecs: V1_ColSpec[]): V1_ClassInstance;
|
|
45
|
+
export declare function _aggCol_basic(column: DataCubeQuerySnapshotColumn, func: string): V1_ColSpec;
|
|
46
|
+
export declare function _pivotAggCols(pivotColumns: DataCubeQuerySnapshotColumn[], snapshot: DataCubeQuerySnapshot, configuration: DataCubeConfiguration, aggregateOperations: DataCubeQueryAggregateOperation[]): V1_ColSpec[];
|
|
47
|
+
export declare function _castCols(columns: DataCubeQuerySnapshotColumn[]): V1_GenericTypeInstance;
|
|
48
|
+
export declare function _groupByAggCols(groupByColumns: DataCubeQuerySnapshotColumn[], snapshot: DataCubeQuerySnapshot, configuration: DataCubeConfiguration, aggregateOperations: DataCubeQueryAggregateOperation[]): V1_ColSpec[];
|
|
49
|
+
export declare function _filter(filter: DataCubeQuerySnapshotFilter | DataCubeQuerySnapshotFilterCondition, filterOperations: DataCubeQueryFilterOperation[]): V1_AppliedFunction;
|
|
50
|
+
//# sourceMappingURL=DataCubeQueryBuilderUtils.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DataCubeQueryBuilderUtils.d.ts","sourceRoot":"","sources":["../../../src/stores/core/DataCubeQueryBuilderUtils.ts"],"names":[],"mappings":"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"}
|