@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,182 @@
|
|
|
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 { V1_deserializeValueSpecification, V1_serializeValueSpecification, } from '@finos/legend-graph';
|
|
17
|
+
import { getFilterOperation } from '../core/filter/DataCubeQueryFilterOperation.js';
|
|
18
|
+
import { getAggregateOperation } from '../core/aggregation/DataCubeQueryAggregateOperation.js';
|
|
19
|
+
import { DataCubeQueryAggregateOperation__Sum } from '../core/aggregation/DataCubeQueryAggregateOperation__Sum.js';
|
|
20
|
+
import { DataCubeQueryAggregateOperation__Average } from '../core/aggregation/DataCubeQueryAggregateOperation__Average.js';
|
|
21
|
+
import { DataCubeQueryAggregateOperation__Count } from '../core/aggregation/DataCubeQueryAggregateOperation__Count.js';
|
|
22
|
+
import { DataCubeQueryAggregateOperation__Min } from '../core/aggregation/DataCubeQueryAggregateOperation__Min.js';
|
|
23
|
+
import { DataCubeQueryAggregateOperation__Max } from '../core/aggregation/DataCubeQueryAggregateOperation__Max.js';
|
|
24
|
+
import { DataCubeQueryAggregateOperation__UniqueValue } from '../core/aggregation/DataCubeQueryAggregateOperation__UniqueValue.js';
|
|
25
|
+
import { DataCubeQueryAggregateOperation__First } from '../core/aggregation/DataCubeQueryAggregateOperation__First.js';
|
|
26
|
+
import { DataCubeQueryAggregateOperation__Last } from '../core/aggregation/DataCubeQueryAggregateOperation__Last.js';
|
|
27
|
+
import { DataCubeQueryAggregateOperation__VariancePopulation } from '../core/aggregation/DataCubeQueryAggregateOperation__VariancePopulation.js';
|
|
28
|
+
import { DataCubeQueryAggregateOperation__VarianceSample } from '../core/aggregation/DataCubeQueryAggregateOperation__VarianceSample.js';
|
|
29
|
+
import { DataCubeQueryAggregateOperation__StdDevPopulation } from '../core/aggregation/DataCubeQueryAggregateOperation__StdDevPopulation.js';
|
|
30
|
+
import { DataCubeQueryAggregateOperation__StdDevSample } from '../core/aggregation/DataCubeQueryAggregateOperation__StdDevSample.js';
|
|
31
|
+
import { DataCubeQueryAggregateOperation__JoinStrings } from '../core/aggregation/DataCubeQueryAggregateOperation__JoinStrings.js';
|
|
32
|
+
import { DataCubeQueryFilterOperation__Equal } from '../core/filter/DataCubeQueryFilterOperation__Equal.js';
|
|
33
|
+
import { DataCubeQueryFilterOperation__LessThanOrEqual } from '../core/filter/DataCubeQueryFilterOperation__LessThanOrEqual.js';
|
|
34
|
+
import { DataCubeQueryFilterOperation__LessThan } from '../core/filter/DataCubeQueryFilterOperation__LessThan.js';
|
|
35
|
+
import { DataCubeQueryFilterOperation__GreaterThanOrEqual } from '../core/filter/DataCubeQueryFilterOperation__GreaterThanOrEqual.js';
|
|
36
|
+
import { DataCubeQueryFilterOperation__GreaterThan } from '../core/filter/DataCubeQueryFilterOperation__GreaterThan.js';
|
|
37
|
+
import { DataCubeQueryFilterOperation__NotEqual } from '../core/filter/DataCubeQueryFilterOperation__NotEqual.js';
|
|
38
|
+
import { DataCubeQueryFilterOperation__EqualColumn } from '../core/filter/DataCubeQueryFilterOperation__EqualColumn.js';
|
|
39
|
+
import { DataCubeQueryFilterOperation__EqualCaseInsensitive } from '../core/filter/DataCubeQueryFilterOperation__EqualCaseInsensitive.js';
|
|
40
|
+
import { DataCubeQueryFilterOperation__NotEqualCaseInsensitive } from '../core/filter/DataCubeQueryFilterOperation__NotEqualCaseInsensitive.js';
|
|
41
|
+
import { DataCubeQueryFilterOperation__EqualCaseInsensitiveColumn } from '../core/filter/DataCubeQueryFilterOperation__EqualCaseInsensitiveColumn.js';
|
|
42
|
+
import { DataCubeQueryFilterOperation__NotEqualCaseInsensitiveColumn } from '../core/filter/DataCubeQueryFilterOperation__NotEqualCaseInsensitiveColumn.js';
|
|
43
|
+
import { DataCubeQueryFilterOperation__NotEqualColumn } from '../core/filter/DataCubeQueryFilterOperation__NotEqualColumn.js';
|
|
44
|
+
import { DataCubeQueryFilterOperation__LessThanColumn } from '../core/filter/DataCubeQueryFilterOperation__LessThanColumn.js';
|
|
45
|
+
import { DataCubeQueryFilterOperation__LessThanOrEqualColumn } from '../core/filter/DataCubeQueryFilterOperation__LessThanOrEqualColumn.js';
|
|
46
|
+
import { DataCubeQueryFilterOperation__GreaterThanColumn } from '../core/filter/DataCubeQueryFilterOperation__GreaterThanColumn.js';
|
|
47
|
+
import { DataCubeQueryFilterOperation__GreaterThanOrEqualColumn } from '../core/filter/DataCubeQueryFilterOperation__GreaterThanOrEqualColumn.js';
|
|
48
|
+
import { DataCubeQueryFilterOperation__Contain } from '../core/filter/DataCubeQueryFilterOperation__Contain.js';
|
|
49
|
+
import { DataCubeQueryFilterOperation__ContainCaseInsensitive } from '../core/filter/DataCubeQueryFilterOperation__ContainCaseInsensitive.js';
|
|
50
|
+
import { DataCubeQueryFilterOperation__NotContain } from '../core/filter/DataCubeQueryFilterOperation__NotContain.js';
|
|
51
|
+
import { DataCubeQueryFilterOperation__StartWith } from '../core/filter/DataCubeQueryFilterOperation__StartWith.js';
|
|
52
|
+
import { DataCubeQueryFilterOperation__StartWithCaseInsensitive } from '../core/filter/DataCubeQueryFilterOperation__StartWithCaseInsensitive.js';
|
|
53
|
+
import { DataCubeQueryFilterOperation__NotStartWith } from '../core/filter/DataCubeQueryFilterOperation__NotStartWith.js';
|
|
54
|
+
import { DataCubeQueryFilterOperation__EndWith } from '../core/filter/DataCubeQueryFilterOperation__EndWith.js';
|
|
55
|
+
import { DataCubeQueryFilterOperation__EndWithCaseInsensitive } from '../core/filter/DataCubeQueryFilterOperation__EndWithCaseInsensitive.js';
|
|
56
|
+
import { DataCubeQueryFilterOperation__NotEndWith } from '../core/filter/DataCubeQueryFilterOperation__NotEndWith.js';
|
|
57
|
+
import { DataCubeQueryFilterOperation__IsNull } from '../core/filter/DataCubeQueryFilterOperation__IsNull.js';
|
|
58
|
+
import { DataCubeQueryFilterOperation__IsNotNull } from '../core/filter/DataCubeQueryFilterOperation__IsNotNull.js';
|
|
59
|
+
import { LicenseManager } from '@ag-grid-enterprise/core';
|
|
60
|
+
import { configureCodeEditor, setupPureLanguageService, } from '@finos/legend-code-editor';
|
|
61
|
+
import { SerializationFactory, usingModelSchema } from '@finos/legend-shared';
|
|
62
|
+
import { createModelSchema, custom, primitive } from 'serializr';
|
|
63
|
+
import { DataCubeQuery } from './DataCubeQuery.js';
|
|
64
|
+
import { DataCubeFont } from '../core/DataCubeQueryEngine.js';
|
|
65
|
+
export class DataCubeGetBaseQueryResult {
|
|
66
|
+
query;
|
|
67
|
+
timestamp;
|
|
68
|
+
partialQuery;
|
|
69
|
+
sourceQuery;
|
|
70
|
+
static serialization = new SerializationFactory(createModelSchema(DataCubeGetBaseQueryResult, {
|
|
71
|
+
partialQuery: custom((val) => V1_serializeValueSpecification(val, []), (val) => V1_deserializeValueSpecification(val, [])),
|
|
72
|
+
query: usingModelSchema(DataCubeQuery.serialization.schema),
|
|
73
|
+
sourceQuery: custom((val) => V1_serializeValueSpecification(val, []), (val) => V1_deserializeValueSpecification(val, [])),
|
|
74
|
+
timestamp: primitive(),
|
|
75
|
+
}));
|
|
76
|
+
}
|
|
77
|
+
export const DEFAULT_ENABLE_DEBUG_MODE = false;
|
|
78
|
+
export const DEFAULT_ENABLE_ENGINE_DEBUG_MODE = false;
|
|
79
|
+
export const DEFAULT_GRID_CLIENT_ROW_BUFFER = 50;
|
|
80
|
+
export const DEFAULT_GRID_CLIENT_PURGE_CLOSED_ROW_NODES = false;
|
|
81
|
+
export const DEFAULT_GRID_CLIENT_SUPPRESS_LARGE_DATASET_WARNING = false;
|
|
82
|
+
export class DataCubeEngine {
|
|
83
|
+
gridClientLicense;
|
|
84
|
+
viewTaskRunner;
|
|
85
|
+
filterOperations = [
|
|
86
|
+
new DataCubeQueryFilterOperation__LessThan(),
|
|
87
|
+
new DataCubeQueryFilterOperation__LessThanOrEqual(),
|
|
88
|
+
new DataCubeQueryFilterOperation__Equal(),
|
|
89
|
+
new DataCubeQueryFilterOperation__NotEqual(),
|
|
90
|
+
new DataCubeQueryFilterOperation__GreaterThanOrEqual(),
|
|
91
|
+
new DataCubeQueryFilterOperation__GreaterThan(),
|
|
92
|
+
new DataCubeQueryFilterOperation__IsNull(),
|
|
93
|
+
new DataCubeQueryFilterOperation__IsNotNull(),
|
|
94
|
+
new DataCubeQueryFilterOperation__EqualCaseInsensitive(),
|
|
95
|
+
new DataCubeQueryFilterOperation__NotEqualCaseInsensitive(),
|
|
96
|
+
new DataCubeQueryFilterOperation__Contain(),
|
|
97
|
+
new DataCubeQueryFilterOperation__ContainCaseInsensitive(),
|
|
98
|
+
new DataCubeQueryFilterOperation__NotContain(),
|
|
99
|
+
new DataCubeQueryFilterOperation__StartWith(),
|
|
100
|
+
new DataCubeQueryFilterOperation__StartWithCaseInsensitive(),
|
|
101
|
+
new DataCubeQueryFilterOperation__NotStartWith(),
|
|
102
|
+
new DataCubeQueryFilterOperation__EndWith(),
|
|
103
|
+
new DataCubeQueryFilterOperation__EndWithCaseInsensitive(),
|
|
104
|
+
new DataCubeQueryFilterOperation__NotEndWith(),
|
|
105
|
+
new DataCubeQueryFilterOperation__LessThanColumn(),
|
|
106
|
+
new DataCubeQueryFilterOperation__LessThanOrEqualColumn(),
|
|
107
|
+
new DataCubeQueryFilterOperation__EqualColumn(),
|
|
108
|
+
new DataCubeQueryFilterOperation__NotEqualColumn(),
|
|
109
|
+
new DataCubeQueryFilterOperation__EqualCaseInsensitiveColumn(),
|
|
110
|
+
new DataCubeQueryFilterOperation__NotEqualCaseInsensitiveColumn(),
|
|
111
|
+
new DataCubeQueryFilterOperation__GreaterThanColumn(),
|
|
112
|
+
new DataCubeQueryFilterOperation__GreaterThanOrEqualColumn(),
|
|
113
|
+
];
|
|
114
|
+
aggregateOperations = [
|
|
115
|
+
new DataCubeQueryAggregateOperation__Sum(),
|
|
116
|
+
new DataCubeQueryAggregateOperation__Average(),
|
|
117
|
+
new DataCubeQueryAggregateOperation__Count(),
|
|
118
|
+
new DataCubeQueryAggregateOperation__Min(),
|
|
119
|
+
new DataCubeQueryAggregateOperation__Max(),
|
|
120
|
+
new DataCubeQueryAggregateOperation__UniqueValue(),
|
|
121
|
+
new DataCubeQueryAggregateOperation__First(),
|
|
122
|
+
new DataCubeQueryAggregateOperation__Last(),
|
|
123
|
+
new DataCubeQueryAggregateOperation__VariancePopulation(),
|
|
124
|
+
new DataCubeQueryAggregateOperation__VarianceSample(),
|
|
125
|
+
new DataCubeQueryAggregateOperation__StdDevPopulation(),
|
|
126
|
+
new DataCubeQueryAggregateOperation__StdDevSample(),
|
|
127
|
+
new DataCubeQueryAggregateOperation__JoinStrings(),
|
|
128
|
+
];
|
|
129
|
+
enableDebugMode = DEFAULT_ENABLE_DEBUG_MODE;
|
|
130
|
+
enableEngineDebugMode = DEFAULT_ENABLE_ENGINE_DEBUG_MODE;
|
|
131
|
+
gridClientRowBuffer = DEFAULT_GRID_CLIENT_ROW_BUFFER;
|
|
132
|
+
gridClientPurgeClosedRowNodes = DEFAULT_GRID_CLIENT_PURGE_CLOSED_ROW_NODES;
|
|
133
|
+
gridClientSuppressLargeDatasetWarning = DEFAULT_GRID_CLIENT_SUPPRESS_LARGE_DATASET_WARNING;
|
|
134
|
+
getFilterOperation(value) {
|
|
135
|
+
return getFilterOperation(value, this.filterOperations);
|
|
136
|
+
}
|
|
137
|
+
getAggregateOperation(value) {
|
|
138
|
+
return getAggregateOperation(value, this.aggregateOperations);
|
|
139
|
+
}
|
|
140
|
+
setEnableDebugMode(value) {
|
|
141
|
+
this.enableDebugMode = value;
|
|
142
|
+
}
|
|
143
|
+
setEnableEngineDebugMode(value) {
|
|
144
|
+
this.enableEngineDebugMode = value;
|
|
145
|
+
}
|
|
146
|
+
setGridClientRowBuffer(value) {
|
|
147
|
+
this.gridClientRowBuffer = value;
|
|
148
|
+
this.propagateGridOptionUpdates();
|
|
149
|
+
}
|
|
150
|
+
setGridClientPurgeClosedRowNodes(value) {
|
|
151
|
+
this.gridClientPurgeClosedRowNodes = value;
|
|
152
|
+
this.propagateGridOptionUpdates();
|
|
153
|
+
}
|
|
154
|
+
setGridClientSuppressLargeDatasetWarning(value) {
|
|
155
|
+
this.gridClientSuppressLargeDatasetWarning = value;
|
|
156
|
+
}
|
|
157
|
+
async initialize() {
|
|
158
|
+
const info = await this.getInfrastructureInfo();
|
|
159
|
+
if (info.gridClientLicense) {
|
|
160
|
+
this.gridClientLicense = info.gridClientLicense;
|
|
161
|
+
LicenseManager.setLicenseKey(info.gridClientLicense);
|
|
162
|
+
}
|
|
163
|
+
await configureCodeEditor(DataCubeFont.ROBOTO_MONO, (error) => {
|
|
164
|
+
throw error;
|
|
165
|
+
});
|
|
166
|
+
setupPureLanguageService({});
|
|
167
|
+
}
|
|
168
|
+
propagateGridOptionUpdates() {
|
|
169
|
+
this.viewTaskRunner?.((view) => {
|
|
170
|
+
view.grid.client.updateGridOptions({
|
|
171
|
+
rowBuffer: this.gridClientRowBuffer,
|
|
172
|
+
purgeClosedRowNodes: this.gridClientPurgeClosedRowNodes,
|
|
173
|
+
});
|
|
174
|
+
});
|
|
175
|
+
}
|
|
176
|
+
refreshFailedDataFetches() {
|
|
177
|
+
this.viewTaskRunner?.((view) => {
|
|
178
|
+
view.grid.client.retryServerSideLoads();
|
|
179
|
+
});
|
|
180
|
+
}
|
|
181
|
+
}
|
|
182
|
+
//# sourceMappingURL=DataCubeEngine.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DataCubeEngine.js","sourceRoot":"","sources":["../../../src/stores/engine/DataCubeEngine.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,62 @@
|
|
|
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
|
+
export type WindowConfiguration = {
|
|
17
|
+
x?: number | undefined;
|
|
18
|
+
y?: number | undefined;
|
|
19
|
+
width?: number | undefined;
|
|
20
|
+
height?: number | undefined;
|
|
21
|
+
minWidth?: number | undefined;
|
|
22
|
+
minHeight?: number | undefined;
|
|
23
|
+
center?: boolean | undefined;
|
|
24
|
+
};
|
|
25
|
+
export declare class LayoutConfiguration {
|
|
26
|
+
title: string;
|
|
27
|
+
readonly contentRenderer: (config: LayoutConfiguration) => React.ReactNode;
|
|
28
|
+
window: WindowConfiguration;
|
|
29
|
+
constructor(title: string, contentRenderer: (config: LayoutConfiguration) => React.ReactNode);
|
|
30
|
+
}
|
|
31
|
+
export declare class WindowState {
|
|
32
|
+
readonly uuid: string;
|
|
33
|
+
readonly configuration: LayoutConfiguration;
|
|
34
|
+
readonly onClose?: (() => void) | undefined;
|
|
35
|
+
constructor(configuration: LayoutConfiguration, onClose?: (() => void) | undefined);
|
|
36
|
+
}
|
|
37
|
+
export declare const WINDOW_DEFAULT_OFFSET = 50;
|
|
38
|
+
export declare const WINDOW_DEFAULT_WIDTH = 800;
|
|
39
|
+
export declare const WINDOW_DEFAULT_HEIGHT = 600;
|
|
40
|
+
export declare const WINDOW_DEFAULT_MIN_WIDTH = 300;
|
|
41
|
+
export declare const WINDOW_DEFAULT_MIN_HEIGHT = 300;
|
|
42
|
+
export declare const DEFAULT_TOOL_PANEL_WINDOW_CONFIG: WindowConfiguration;
|
|
43
|
+
export declare const DEFAULT_SMALL_ALERT_WINDOW_CONFIG: WindowConfiguration;
|
|
44
|
+
export declare const DEFAULT_LARGE_ALERT_WINDOW_CONFIG: WindowConfiguration;
|
|
45
|
+
export declare class DisplayState {
|
|
46
|
+
private readonly layoutManagerState;
|
|
47
|
+
readonly configuration: LayoutConfiguration;
|
|
48
|
+
window?: WindowState | undefined;
|
|
49
|
+
constructor(layoutManagerState: LayoutManagerState, title: string, contentRenderer: (config: LayoutConfiguration) => React.ReactNode);
|
|
50
|
+
get isOpen(): boolean;
|
|
51
|
+
open(): void;
|
|
52
|
+
close(): void;
|
|
53
|
+
}
|
|
54
|
+
export declare class LayoutManagerState {
|
|
55
|
+
windows: WindowState[];
|
|
56
|
+
constructor();
|
|
57
|
+
newDisplay(title: string, contentRenderer: (config: LayoutConfiguration) => React.ReactNode, windowConfiguration?: WindowConfiguration | undefined): DisplayState;
|
|
58
|
+
newWindow(window: WindowState): void;
|
|
59
|
+
bringWindowFront(window: WindowState): void;
|
|
60
|
+
closeWindow(window: WindowState): void;
|
|
61
|
+
}
|
|
62
|
+
//# sourceMappingURL=DataCubeLayoutManagerState.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DataCubeLayoutManagerState.d.ts","sourceRoot":"","sources":["../../../src/stores/engine/DataCubeLayoutManagerState.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AAWH,MAAM,MAAM,mBAAmB,GAAG;IAChC,CAAC,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IACvB,CAAC,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IACvB,KAAK,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAC3B,MAAM,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAC5B,QAAQ,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAC9B,SAAS,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAC/B,MAAM,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC;CAC9B,CAAC;AAEF,qBAAa,mBAAmB;IAC9B,KAAK,EAAE,MAAM,CAAC;IACd,QAAQ,CAAC,eAAe,EAAE,CAAC,MAAM,EAAE,mBAAmB,KAAK,KAAK,CAAC,SAAS,CAAC;IAC3E,MAAM,EAAE,mBAAmB,CAAM;gBAG/B,KAAK,EAAE,MAAM,EACb,eAAe,EAAE,CAAC,MAAM,EAAE,mBAAmB,KAAK,KAAK,CAAC,SAAS;CAKpE;AAED,qBAAa,WAAW;IACtB,QAAQ,CAAC,IAAI,SAAU;IACvB,QAAQ,CAAC,aAAa,EAAE,mBAAmB,CAAC;IAC5C,QAAQ,CAAC,OAAO,CAAC,EAAE,CAAC,MAAM,IAAI,CAAC,GAAG,SAAS,CAAC;gBAG1C,aAAa,EAAE,mBAAmB,EAClC,OAAO,CAAC,EAAE,CAAC,MAAM,IAAI,CAAC,GAAG,SAAS;CAKrC;AAED,eAAO,MAAM,qBAAqB,KAAK,CAAC;AACxC,eAAO,MAAM,oBAAoB,MAAM,CAAC;AACxC,eAAO,MAAM,qBAAqB,MAAM,CAAC;AACzC,eAAO,MAAM,wBAAwB,MAAM,CAAC;AAC5C,eAAO,MAAM,yBAAyB,MAAM,CAAC;AAE7C,eAAO,MAAM,gCAAgC,EAAE,mBAM9C,CAAC;AAEF,eAAO,MAAM,iCAAiC,EAAE,mBAM/C,CAAC;AAEF,eAAO,MAAM,iCAAiC,EAAE,mBAM/C,CAAC;AAEF,qBAAa,YAAY;IACvB,OAAO,CAAC,QAAQ,CAAC,kBAAkB,CAAqB;IACxD,QAAQ,CAAC,aAAa,EAAE,mBAAmB,CAAC;IAC5C,MAAM,CAAC,EAAE,WAAW,GAAG,SAAS,CAAC;gBAG/B,kBAAkB,EAAE,kBAAkB,EACtC,KAAK,EAAE,MAAM,EACb,eAAe,EAAE,CAAC,MAAM,EAAE,mBAAmB,KAAK,KAAK,CAAC,SAAS;IAcnE,IAAI,MAAM,YAET;IAED,IAAI;IAaJ,KAAK;CAMN;AAED,qBAAa,kBAAkB;IAC7B,OAAO,EAAE,WAAW,EAAE,CAAM;;IAW5B,UAAU,CACR,KAAK,EAAE,MAAM,EACb,eAAe,EAAE,CAAC,MAAM,EAAE,mBAAmB,KAAK,KAAK,CAAC,SAAS,EACjE,mBAAmB,CAAC,EAAE,mBAAmB,GAAG,SAAS,GACpD,YAAY;IAQf,SAAS,CAAC,MAAM,EAAE,WAAW;IAI7B,gBAAgB,CAAC,MAAM,EAAE,WAAW;IAQpC,WAAW,CAAC,MAAM,EAAE,WAAW;CAOhC"}
|
|
@@ -0,0 +1,133 @@
|
|
|
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 { uuid } from '@finos/legend-shared';
|
|
17
|
+
import { action, computed, makeObservable, observable, runInAction, } from 'mobx';
|
|
18
|
+
export class LayoutConfiguration {
|
|
19
|
+
title;
|
|
20
|
+
contentRenderer;
|
|
21
|
+
window = {};
|
|
22
|
+
constructor(title, contentRenderer) {
|
|
23
|
+
this.contentRenderer = contentRenderer;
|
|
24
|
+
this.title = title;
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
export class WindowState {
|
|
28
|
+
uuid = uuid();
|
|
29
|
+
configuration;
|
|
30
|
+
onClose;
|
|
31
|
+
constructor(configuration, onClose) {
|
|
32
|
+
this.configuration = configuration;
|
|
33
|
+
this.onClose = onClose;
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
export const WINDOW_DEFAULT_OFFSET = 50;
|
|
37
|
+
export const WINDOW_DEFAULT_WIDTH = 800;
|
|
38
|
+
export const WINDOW_DEFAULT_HEIGHT = 600;
|
|
39
|
+
export const WINDOW_DEFAULT_MIN_WIDTH = 300;
|
|
40
|
+
export const WINDOW_DEFAULT_MIN_HEIGHT = 300;
|
|
41
|
+
export const DEFAULT_TOOL_PANEL_WINDOW_CONFIG = {
|
|
42
|
+
width: WINDOW_DEFAULT_WIDTH,
|
|
43
|
+
height: WINDOW_DEFAULT_HEIGHT,
|
|
44
|
+
minWidth: WINDOW_DEFAULT_MIN_WIDTH,
|
|
45
|
+
minHeight: WINDOW_DEFAULT_MIN_HEIGHT,
|
|
46
|
+
center: true,
|
|
47
|
+
};
|
|
48
|
+
export const DEFAULT_SMALL_ALERT_WINDOW_CONFIG = {
|
|
49
|
+
width: 500,
|
|
50
|
+
height: 200,
|
|
51
|
+
minWidth: 200,
|
|
52
|
+
minHeight: 80,
|
|
53
|
+
center: true,
|
|
54
|
+
};
|
|
55
|
+
export const DEFAULT_LARGE_ALERT_WINDOW_CONFIG = {
|
|
56
|
+
width: 600,
|
|
57
|
+
height: 200,
|
|
58
|
+
minWidth: 300,
|
|
59
|
+
minHeight: 150,
|
|
60
|
+
center: true,
|
|
61
|
+
};
|
|
62
|
+
export class DisplayState {
|
|
63
|
+
layoutManagerState;
|
|
64
|
+
configuration;
|
|
65
|
+
window;
|
|
66
|
+
constructor(layoutManagerState, title, contentRenderer) {
|
|
67
|
+
makeObservable(this, {
|
|
68
|
+
window: observable,
|
|
69
|
+
isOpen: computed,
|
|
70
|
+
open: action,
|
|
71
|
+
close: action,
|
|
72
|
+
});
|
|
73
|
+
this.layoutManagerState = layoutManagerState;
|
|
74
|
+
this.configuration = new LayoutConfiguration(title, contentRenderer);
|
|
75
|
+
this.configuration.window = DEFAULT_TOOL_PANEL_WINDOW_CONFIG;
|
|
76
|
+
}
|
|
77
|
+
get isOpen() {
|
|
78
|
+
return Boolean(this.window);
|
|
79
|
+
}
|
|
80
|
+
open() {
|
|
81
|
+
if (this.window) {
|
|
82
|
+
this.layoutManagerState.bringWindowFront(this.window);
|
|
83
|
+
}
|
|
84
|
+
else {
|
|
85
|
+
this.window = new WindowState(this.configuration, () => runInAction(() => {
|
|
86
|
+
this.window = undefined;
|
|
87
|
+
}));
|
|
88
|
+
this.layoutManagerState.newWindow(this.window);
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
close() {
|
|
92
|
+
if (this.window) {
|
|
93
|
+
this.layoutManagerState.closeWindow(this.window);
|
|
94
|
+
this.window = undefined;
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
export class LayoutManagerState {
|
|
99
|
+
windows = [];
|
|
100
|
+
constructor() {
|
|
101
|
+
makeObservable(this, {
|
|
102
|
+
windows: observable,
|
|
103
|
+
newWindow: action,
|
|
104
|
+
bringWindowFront: action,
|
|
105
|
+
closeWindow: action,
|
|
106
|
+
});
|
|
107
|
+
}
|
|
108
|
+
newDisplay(title, contentRenderer, windowConfiguration) {
|
|
109
|
+
const display = new DisplayState(this, title, contentRenderer);
|
|
110
|
+
if (windowConfiguration) {
|
|
111
|
+
display.configuration.window = windowConfiguration;
|
|
112
|
+
}
|
|
113
|
+
return display;
|
|
114
|
+
}
|
|
115
|
+
newWindow(window) {
|
|
116
|
+
this.windows.push(window);
|
|
117
|
+
}
|
|
118
|
+
bringWindowFront(window) {
|
|
119
|
+
const matchingWindow = this.windows.find((w) => w.uuid === window.uuid);
|
|
120
|
+
if (matchingWindow) {
|
|
121
|
+
this.windows = this.windows.filter((w) => w.uuid !== window.uuid);
|
|
122
|
+
this.windows.push(window);
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
closeWindow(window) {
|
|
126
|
+
const matchingWindow = this.windows.find((w) => w.uuid === window.uuid);
|
|
127
|
+
if (matchingWindow) {
|
|
128
|
+
this.windows = this.windows.filter((w) => w.uuid !== window.uuid);
|
|
129
|
+
window.onClose?.();
|
|
130
|
+
}
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
//# sourceMappingURL=DataCubeLayoutManagerState.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DataCubeLayoutManagerState.js","sourceRoot":"","sources":["../../../src/stores/engine/DataCubeLayoutManagerState.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,40 @@
|
|
|
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 { SerializationFactory, type PlainObject } from '@finos/legend-shared';
|
|
17
|
+
export declare abstract class DataCubeQuerySource {
|
|
18
|
+
columns: DataCubeQueryColumn[];
|
|
19
|
+
query: string;
|
|
20
|
+
runtime: string;
|
|
21
|
+
mapping?: string | undefined;
|
|
22
|
+
}
|
|
23
|
+
export declare class DataCubeQueryColumn {
|
|
24
|
+
name: string;
|
|
25
|
+
type: string;
|
|
26
|
+
static readonly serialization: SerializationFactory<DataCubeQueryColumn>;
|
|
27
|
+
}
|
|
28
|
+
export declare class DataCubeQuerySourceREPLExecutedQuery extends DataCubeQuerySource {
|
|
29
|
+
static readonly serialization: SerializationFactory<DataCubeQuerySourceREPLExecutedQuery>;
|
|
30
|
+
}
|
|
31
|
+
export declare class DataCubeQuery {
|
|
32
|
+
name: string;
|
|
33
|
+
query: string;
|
|
34
|
+
partialQuery: string;
|
|
35
|
+
source: DataCubeQuerySource;
|
|
36
|
+
configuration?: PlainObject | undefined;
|
|
37
|
+
constructor(name: string, query: string, configuration?: PlainObject | undefined);
|
|
38
|
+
static readonly serialization: SerializationFactory<DataCubeQuery>;
|
|
39
|
+
}
|
|
40
|
+
//# sourceMappingURL=DataCubeQuery.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DataCubeQuery.d.ts","sourceRoot":"","sources":["../../../src/stores/engine/DataCubeQuery.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AAEH,OAAO,EACL,oBAAoB,EAIpB,KAAK,WAAW,EACjB,MAAM,sBAAsB,CAAC;AAY9B,8BAAsB,mBAAmB;IACvC,OAAO,EAAE,mBAAmB,EAAE,CAAM;IACpC,KAAK,EAAG,MAAM,CAAC;IACf,OAAO,EAAG,MAAM,CAAC;IACjB,OAAO,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;CAC9B;AAED,qBAAa,mBAAmB;IAC9B,IAAI,EAAG,MAAM,CAAC;IACd,IAAI,EAAG,MAAM,CAAC;IAEd,MAAM,CAAC,QAAQ,CAAC,aAAa,4CAK3B;CACH;AAMD,qBAAa,oCAAqC,SAAQ,mBAAmB;IAC3E,MAAM,CAAC,QAAQ,CAAC,aAAa,6DAU3B;CACH;AAiCD,qBAAa,aAAa;IACxB,IAAI,EAAG,MAAM,CAAC;IACd,KAAK,EAAG,MAAM,CAAC;IACf,YAAY,EAAG,MAAM,CAAC;IACtB,MAAM,EAAG,mBAAmB,CAAC;IAC7B,aAAa,CAAC,EAAE,WAAW,GAAG,SAAS,CAAC;gBAGtC,IAAI,EAAE,MAAM,EACZ,KAAK,EAAE,MAAM,EACb,aAAa,CAAC,EAAE,WAAW,GAAG,SAAS;IAOzC,MAAM,CAAC,QAAQ,CAAC,aAAa,sCAS3B;CACH"}
|
|
@@ -0,0 +1,79 @@
|
|
|
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 { SerializationFactory, UnsupportedOperationError, usingConstantValueSchema, usingModelSchema, } from '@finos/legend-shared';
|
|
17
|
+
import { createModelSchema, custom, deserialize, list, optional, primitive, raw, serialize, } from 'serializr';
|
|
18
|
+
export class DataCubeQuerySource {
|
|
19
|
+
columns = [];
|
|
20
|
+
query;
|
|
21
|
+
runtime;
|
|
22
|
+
mapping;
|
|
23
|
+
}
|
|
24
|
+
export class DataCubeQueryColumn {
|
|
25
|
+
name;
|
|
26
|
+
type;
|
|
27
|
+
static serialization = new SerializationFactory(createModelSchema(DataCubeQueryColumn, {
|
|
28
|
+
name: primitive(),
|
|
29
|
+
type: primitive(),
|
|
30
|
+
}));
|
|
31
|
+
}
|
|
32
|
+
var DataCubeQuerySourceType;
|
|
33
|
+
(function (DataCubeQuerySourceType) {
|
|
34
|
+
DataCubeQuerySourceType["REPL_EXECUTED_QUERY"] = "REPLExecutedQuery";
|
|
35
|
+
})(DataCubeQuerySourceType || (DataCubeQuerySourceType = {}));
|
|
36
|
+
export class DataCubeQuerySourceREPLExecutedQuery extends DataCubeQuerySource {
|
|
37
|
+
static serialization = new SerializationFactory(createModelSchema(DataCubeQuerySourceREPLExecutedQuery, {
|
|
38
|
+
_type: usingConstantValueSchema(DataCubeQuerySourceType.REPL_EXECUTED_QUERY),
|
|
39
|
+
columns: list(usingModelSchema(DataCubeQueryColumn.serialization.schema)),
|
|
40
|
+
mapping: optional(primitive()),
|
|
41
|
+
query: primitive(),
|
|
42
|
+
runtime: primitive(),
|
|
43
|
+
}));
|
|
44
|
+
}
|
|
45
|
+
function deserializeQuerySource(json) {
|
|
46
|
+
switch (json._type) {
|
|
47
|
+
case DataCubeQuerySourceType.REPL_EXECUTED_QUERY:
|
|
48
|
+
return deserialize(DataCubeQuerySourceREPLExecutedQuery.serialization.schema, json);
|
|
49
|
+
default:
|
|
50
|
+
throw new UnsupportedOperationError(`Can't deserialize data cube query source of type '${json._type}'`);
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
function serializeQuerySource(object) {
|
|
54
|
+
if (object instanceof DataCubeQuerySourceREPLExecutedQuery) {
|
|
55
|
+
return serialize(DataCubeQuerySourceREPLExecutedQuery.serialization.schema, object);
|
|
56
|
+
}
|
|
57
|
+
throw new UnsupportedOperationError(`Can't serialize data cube query source`, object);
|
|
58
|
+
}
|
|
59
|
+
export class DataCubeQuery {
|
|
60
|
+
name;
|
|
61
|
+
query;
|
|
62
|
+
partialQuery;
|
|
63
|
+
source;
|
|
64
|
+
configuration;
|
|
65
|
+
constructor(name, query, configuration) {
|
|
66
|
+
this.name = name;
|
|
67
|
+
this.query = query;
|
|
68
|
+
this.configuration = configuration;
|
|
69
|
+
}
|
|
70
|
+
static serialization = new SerializationFactory(createModelSchema(DataCubeQuery, {
|
|
71
|
+
/** TODO: @datacube roundtrip - populate this once we know the shape better */
|
|
72
|
+
configuration: raw(),
|
|
73
|
+
name: primitive(),
|
|
74
|
+
partialQuery: primitive(),
|
|
75
|
+
query: primitive(),
|
|
76
|
+
source: custom(serializeQuerySource, deserializeQuerySource),
|
|
77
|
+
}));
|
|
78
|
+
}
|
|
79
|
+
//# sourceMappingURL=DataCubeQuery.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DataCubeQuery.js","sourceRoot":"","sources":["../../../src/stores/engine/DataCubeQuery.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AAEH,OAAO,EACL,oBAAoB,EACpB,yBAAyB,EACzB,wBAAwB,EACxB,gBAAgB,GAEjB,MAAM,sBAAsB,CAAC;AAC9B,OAAO,EACL,iBAAiB,EACjB,MAAM,EACN,WAAW,EACX,IAAI,EACJ,QAAQ,EACR,SAAS,EACT,GAAG,EACH,SAAS,GACV,MAAM,WAAW,CAAC;AAEnB,MAAM,OAAgB,mBAAmB;IACvC,OAAO,GAA0B,EAAE,CAAC;IACpC,KAAK,CAAU;IACf,OAAO,CAAU;IACjB,OAAO,CAAsB;CAC9B;AAED,MAAM,OAAO,mBAAmB;IAC9B,IAAI,CAAU;IACd,IAAI,CAAU;IAEd,MAAM,CAAU,aAAa,GAAG,IAAI,oBAAoB,CACtD,iBAAiB,CAAC,mBAAmB,EAAE;QACrC,IAAI,EAAE,SAAS,EAAE;QACjB,IAAI,EAAE,SAAS,EAAE;KAClB,CAAC,CACH,CAAC;;AAGJ,IAAK,uBAEJ;AAFD,WAAK,uBAAuB;IAC1B,oEAAyC,CAAA;AAC3C,CAAC,EAFI,uBAAuB,KAAvB,uBAAuB,QAE3B;AAED,MAAM,OAAO,oCAAqC,SAAQ,mBAAmB;IAC3E,MAAM,CAAU,aAAa,GAAG,IAAI,oBAAoB,CACtD,iBAAiB,CAAC,oCAAoC,EAAE;QACtD,KAAK,EAAE,wBAAwB,CAC7B,uBAAuB,CAAC,mBAAmB,CAC5C;QACD,OAAO,EAAE,IAAI,CAAC,gBAAgB,CAAC,mBAAmB,CAAC,aAAa,CAAC,MAAM,CAAC,CAAC;QACzE,OAAO,EAAE,QAAQ,CAAC,SAAS,EAAE,CAAC;QAC9B,KAAK,EAAE,SAAS,EAAE;QAClB,OAAO,EAAE,SAAS,EAAE;KACrB,CAAC,CACH,CAAC;;AAGJ,SAAS,sBAAsB,CAC7B,IAAsC;IAEtC,QAAQ,IAAI,CAAC,KAAK,EAAE,CAAC;QACnB,KAAK,uBAAuB,CAAC,mBAAmB;YAC9C,OAAO,WAAW,CAChB,oCAAoC,CAAC,aAAa,CAAC,MAAM,EACzD,IAAI,CACL,CAAC;QACJ;YACE,MAAM,IAAI,yBAAyB,CACjC,qDAAqD,IAAI,CAAC,KAAK,GAAG,CACnE,CAAC;IACN,CAAC;AACH,CAAC;AAED,SAAS,oBAAoB,CAC3B,MAA2B;IAE3B,IAAI,MAAM,YAAY,oCAAoC,EAAE,CAAC;QAC3D,OAAO,SAAS,CACd,oCAAoC,CAAC,aAAa,CAAC,MAAM,EACzD,MAAM,CACP,CAAC;IACJ,CAAC;IACD,MAAM,IAAI,yBAAyB,CACjC,wCAAwC,EACxC,MAAM,CACP,CAAC;AACJ,CAAC;AAED,MAAM,OAAO,aAAa;IACxB,IAAI,CAAU;IACd,KAAK,CAAU;IACf,YAAY,CAAU;IACtB,MAAM,CAAuB;IAC7B,aAAa,CAA2B;IAExC,YACE,IAAY,EACZ,KAAa,EACb,aAAuC;QAEvC,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;QACjB,IAAI,CAAC,KAAK,GAAG,KAAK,CAAC;QACnB,IAAI,CAAC,aAAa,GAAG,aAAa,CAAC;IACrC,CAAC;IAED,MAAM,CAAU,aAAa,GAAG,IAAI,oBAAoB,CACtD,iBAAiB,CAAC,aAAa,EAAE;QAC/B,8EAA8E;QAC9E,aAAa,EAAE,GAAG,EAAE;QACpB,IAAI,EAAE,SAAS,EAAE;QACjB,YAAY,EAAE,SAAS,EAAE;QACzB,KAAK,EAAE,SAAS,EAAE;QAClB,MAAM,EAAE,MAAM,CAAC,oBAAoB,EAAE,sBAAsB,CAAC;KAC7D,CAAC,CACH,CAAC"}
|
|
@@ -0,0 +1,61 @@
|
|
|
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 type { DisplayState } from '../engine/DataCubeLayoutManagerState.js';
|
|
18
|
+
import { editor as monacoEditorAPI, Uri } from 'monaco-editor';
|
|
19
|
+
import { ActionState } from '@finos/legend-shared';
|
|
20
|
+
import { DataCubeColumnKind } from '../core/DataCubeQueryEngine.js';
|
|
21
|
+
import type { DataCubeQueryBuilderError } from '../engine/DataCubeEngine.js';
|
|
22
|
+
import type { DataCubeExtendManagerState } from './DataCubeExtendManagerState.js';
|
|
23
|
+
import { type V1_ValueSpecification } from '@finos/legend-graph';
|
|
24
|
+
import type { DataCubeColumnConfiguration } from '../core/DataCubeConfiguration.js';
|
|
25
|
+
export declare class DataCubeNewColumnState {
|
|
26
|
+
readonly uuid: string;
|
|
27
|
+
readonly view: DataCubeViewState;
|
|
28
|
+
readonly manager: DataCubeExtendManagerState;
|
|
29
|
+
private readonly _name;
|
|
30
|
+
readonly display: DisplayState;
|
|
31
|
+
readonly validationState: ActionState;
|
|
32
|
+
readonly finalizationState: ActionState;
|
|
33
|
+
name: string;
|
|
34
|
+
expectedType: string;
|
|
35
|
+
isGroupLevel: boolean;
|
|
36
|
+
columnKind?: DataCubeColumnKind | undefined;
|
|
37
|
+
code: string;
|
|
38
|
+
codePrefix: string;
|
|
39
|
+
codeSuffix: string;
|
|
40
|
+
editor?: monacoEditorAPI.IStandaloneCodeEditor | undefined;
|
|
41
|
+
readonly editorModel: monacoEditorAPI.ITextModel;
|
|
42
|
+
readonly editorModelUri: Uri;
|
|
43
|
+
codeError?: DataCubeQueryBuilderError | undefined;
|
|
44
|
+
returnType?: string | undefined;
|
|
45
|
+
constructor(manager: DataCubeExtendManagerState, referenceColumn?: DataCubeColumnConfiguration | undefined);
|
|
46
|
+
setName(value: string): void;
|
|
47
|
+
get isNameValid(): boolean;
|
|
48
|
+
setExpectedType(value: string): void;
|
|
49
|
+
get isTypeValid(): boolean;
|
|
50
|
+
setColumnKind(isGroupLevel: boolean, columnKind: DataCubeColumnKind | undefined): void;
|
|
51
|
+
setCode(value: string): void;
|
|
52
|
+
setEditor(editor: monacoEditorAPI.IStandaloneCodeEditor): void;
|
|
53
|
+
setReturnType(value: string | undefined): void;
|
|
54
|
+
showError(error: DataCubeQueryBuilderError): void;
|
|
55
|
+
clearError(): void;
|
|
56
|
+
buildExtendBaseQuery(): V1_ValueSpecification;
|
|
57
|
+
getReturnType(): Promise<string | undefined>;
|
|
58
|
+
applyChanges(): Promise<void>;
|
|
59
|
+
close(): void;
|
|
60
|
+
}
|
|
61
|
+
//# sourceMappingURL=DataCubeColumnEditorState.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DataCubeColumnEditorState.d.ts","sourceRoot":"","sources":["../../../src/stores/extend/DataCubeColumnEditorState.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AAGH,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,yBAAyB,CAAC;AACjE,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,yCAAyC,CAAC;AAE5E,OAAO,EAAE,MAAM,IAAI,eAAe,EAAE,GAAG,EAAE,MAAM,eAAe,CAAC;AAC/D,OAAO,EACL,WAAW,EAMZ,MAAM,sBAAsB,CAAC;AAE9B,OAAO,EAEL,kBAAkB,EAInB,MAAM,gCAAgC,CAAC;AAMxC,OAAO,KAAK,EAAE,yBAAyB,EAAE,MAAM,6BAA6B,CAAC;AAC7E,OAAO,KAAK,EAAE,0BAA0B,EAAE,MAAM,iCAAiC,CAAC;AAClF,OAAO,EAIL,KAAK,qBAAqB,EAC3B,MAAM,qBAAqB,CAAC;AAC7B,OAAO,KAAK,EAAE,2BAA2B,EAAE,MAAM,kCAAkC,CAAC;AAEpF,qBAAa,sBAAsB;IACjC,QAAQ,CAAC,IAAI,SAAU;IACvB,QAAQ,CAAC,IAAI,EAAE,iBAAiB,CAAC;IACjC,QAAQ,CAAC,OAAO,EAAE,0BAA0B,CAAC;IAI7C,OAAO,CAAC,QAAQ,CAAC,KAAK,CAA2C;IACjE,QAAQ,CAAC,OAAO,EAAE,YAAY,CAAC;IAC/B,QAAQ,CAAC,eAAe,cAAwB;IAChD,QAAQ,CAAC,iBAAiB,cAAwB;IAElD,IAAI,EAAE,MAAM,CAAC;IACb,YAAY,EAAE,MAAM,CAAC;IACrB,YAAY,EAAE,OAAO,CAAC;IACtB,UAAU,CAAC,EAAE,kBAAkB,GAAG,SAAS,CAAC;IAE5C,IAAI,EAAE,MAAM,CAAC;IACb,UAAU,EAAE,MAAM,CAAC;IACnB,UAAU,EAAE,MAAM,CAAC;IAEnB,MAAM,CAAC,EAAE,eAAe,CAAC,qBAAqB,GAAG,SAAS,CAAC;IAC3D,QAAQ,CAAC,WAAW,EAAE,eAAe,CAAC,UAAU,CAAC;IACjD,QAAQ,CAAC,cAAc,EAAE,GAAG,CAAC;IAC7B,SAAS,CAAC,EAAE,yBAAyB,GAAG,SAAS,CAAC;IAClD,UAAU,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;gBAG9B,OAAO,EAAE,0BAA0B,EACnC,eAAe,CAAC,EAAE,2BAA2B,GAAG,SAAS;IAiE3D,OAAO,CAAC,KAAK,EAAE,MAAM;IAIrB,IAAI,WAAW,IAAI,OAAO,CAEzB;IAED,eAAe,CAAC,KAAK,EAAE,MAAM;IAI7B,IAAI,WAAW,YAKd;IAED,aAAa,CACX,YAAY,EAAE,OAAO,EACrB,UAAU,EAAE,kBAAkB,GAAG,SAAS;IAM5C,OAAO,CAAC,KAAK,EAAE,MAAM;IAIrB,SAAS,CAAC,MAAM,EAAE,eAAe,CAAC,qBAAqB;IAIvD,aAAa,CAAC,KAAK,EAAE,MAAM,GAAG,SAAS;IAIvC,SAAS,CAAC,KAAK,EAAE,yBAAyB;IAmB1C,UAAU;IAKV,oBAAoB;IAsBd,aAAa;IAqEb,YAAY;IAyDlB,KAAK;CAON"}
|