@adaptabletools/adaptable 18.0.0-canary.8 → 18.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/base.css +18 -20
- package/base.css.map +1 -1
- package/index.css +22 -20
- package/index.css.map +1 -1
- package/package.json +1 -1
- package/src/AdaptableInterfaces/IAdaptable.d.ts +10 -4
- package/src/AdaptableOptions/ActionColumnOptions.d.ts +3 -2
- package/src/AdaptableOptions/AdaptableFrameworkComponent.d.ts +3 -0
- package/src/AdaptableOptions/AdaptableOptions.d.ts +15 -14
- package/src/AdaptableOptions/AdaptablePlugin.d.ts +2 -0
- package/src/AdaptableOptions/AdaptablePlugin.js +2 -0
- package/src/AdaptableOptions/ColumnFilterOptions.d.ts +7 -0
- package/src/AdaptableOptions/ColumnMenuOptions.d.ts +94 -0
- package/src/AdaptableOptions/ColumnOptions.d.ts +9 -4
- package/src/AdaptableOptions/CommentOptions.d.ts +20 -9
- package/src/AdaptableOptions/ContextMenuOptions.d.ts +94 -0
- package/src/AdaptableOptions/CustomSortOptions.d.ts +2 -2
- package/src/AdaptableOptions/DataImportOptions.d.ts +2 -2
- package/src/AdaptableOptions/FormatColumnOptions.d.ts +2 -2
- package/src/AdaptableOptions/GroupingOptions.d.ts +0 -26
- package/src/AdaptableOptions/NoteOptions.d.ts +12 -3
- package/src/AdaptableOptions/PredicateOptions.d.ts +2 -2
- package/src/AdaptableOptions/QuickSearchOptions.d.ts +1 -1
- package/src/AdaptableOptions/StateOptions.d.ts +6 -0
- package/src/AdaptableOptions/UserInterfaceOptions.d.ts +2 -2
- package/src/Api/AdaptableApi.d.ts +16 -6
- package/src/Api/ColumnApi.d.ts +13 -0
- package/src/Api/ColumnMenuApi.d.ts +13 -0
- package/src/Api/{ScopeApi.d.ts → ColumnScopeApi.d.ts} +36 -26
- package/src/Api/CommentApi.d.ts +20 -22
- package/src/Api/ConfigApi.d.ts +4 -5
- package/src/Api/ContextMenuApi.d.ts +9 -0
- package/src/Api/EventApi.d.ts +7 -9
- package/src/Api/Events/CommentChanged.d.ts +11 -0
- package/src/Api/Events/CommentChanged.js +1 -0
- package/src/Api/Events/GridDataChanged.d.ts +1 -1
- package/src/Api/FlashingCellApi.d.ts +2 -2
- package/src/Api/GridApi.d.ts +35 -3
- package/src/Api/Implementation/ActionColumnApiImpl.js +3 -6
- package/src/Api/Implementation/ActionRowApiImpl.js +3 -7
- package/src/Api/Implementation/AdaptableApiImpl.d.ts +7 -5
- package/src/Api/Implementation/AdaptableApiImpl.js +9 -5
- package/src/Api/Implementation/AlertApiImpl.js +8 -13
- package/src/Api/Implementation/ApiBase.d.ts +6 -4
- package/src/Api/Implementation/ApiBase.js +11 -5
- package/src/Api/Implementation/CalendarApiImpl.js +1 -6
- package/src/Api/Implementation/CellSummaryApiImpl.d.ts +0 -5
- package/src/Api/Implementation/CellSummaryApiImpl.js +2 -23
- package/src/Api/Implementation/ChartingApiImpl.js +3 -3
- package/src/Api/Implementation/ColumnApiImpl.d.ts +5 -0
- package/src/Api/Implementation/ColumnApiImpl.js +45 -15
- package/src/Api/Implementation/ColumnFilterApiImpl.js +7 -7
- package/src/Api/Implementation/ColumnMenuApiImpl.d.ts +8 -0
- package/src/Api/Implementation/ColumnMenuApiImpl.js +12 -0
- package/src/Api/Implementation/ColumnScopeApiImpl.d.ts +33 -0
- package/src/Api/Implementation/{ScopeApiImpl.js → ColumnScopeApiImpl.js} +65 -19
- package/src/Api/Implementation/CommentsApiImpl.d.ts +8 -5
- package/src/Api/Implementation/CommentsApiImpl.js +10 -5
- package/src/Api/Implementation/ConfigApiImpl.d.ts +2 -2
- package/src/Api/Implementation/ConfigApiImpl.js +27 -28
- package/src/Api/Implementation/ContextMenuApiImpl.d.ts +7 -0
- package/src/Api/Implementation/ContextMenuApiImpl.js +9 -0
- package/src/Api/Implementation/DashboardApiImpl.js +1 -6
- package/src/Api/Implementation/ExportApiImpl.js +5 -10
- package/src/Api/Implementation/ExpressionApiImpl.js +14 -19
- package/src/Api/Implementation/Fdc3ApiImpl.js +1 -1
- package/src/Api/Implementation/FlashingCellApiImpl.d.ts +2 -2
- package/src/Api/Implementation/FlashingCellApiImpl.js +3 -8
- package/src/Api/Implementation/FormatColumnApiImpl.js +4 -4
- package/src/Api/Implementation/FreeTextColumnApiImpl.js +1 -1
- package/src/Api/Implementation/GridApiImpl.d.ts +9 -1
- package/src/Api/Implementation/GridApiImpl.js +63 -9
- package/src/Api/Implementation/LayoutApiImpl.d.ts +4 -11
- package/src/Api/Implementation/LayoutApiImpl.js +20 -28
- package/src/Api/Implementation/NoteApiImpl.d.ts +18 -0
- package/src/Api/Implementation/NoteApiImpl.js +40 -0
- package/src/Api/Implementation/OptionsApiImpl.d.ts +6 -5
- package/src/Api/Implementation/OptionsApiImpl.js +7 -4
- package/src/Api/Implementation/PredicateApiImpl.js +2 -2
- package/src/Api/Implementation/ScheduleApiImpl.js +6 -6
- package/src/Api/Implementation/TeamSharingApiImpl.js +3 -15
- package/src/Api/Implementation/ThemeApiImpl.js +2 -7
- package/src/Api/Implementation/UserInterfaceApiImpl.d.ts +14 -8
- package/src/Api/Implementation/UserInterfaceApiImpl.js +32 -27
- package/src/Api/Internal/ActionRowInternalApi.d.ts +1 -0
- package/src/Api/Internal/ActionRowInternalApi.js +19 -46
- package/src/Api/Internal/AdaptableInternalApi.d.ts +3 -4
- package/src/Api/Internal/AdaptableInternalApi.js +16 -30
- package/src/Api/Internal/AlertInternalApi.d.ts +2 -2
- package/src/Api/Internal/AlertInternalApi.js +7 -20
- package/src/Api/Internal/CalculatedColumnInternalApi.js +11 -17
- package/src/Api/Internal/ChartingInternalApi.js +13 -13
- package/src/Api/Internal/ColumnFilterInternalApi.d.ts +1 -0
- package/src/Api/Internal/ColumnFilterInternalApi.js +24 -30
- package/src/Api/Internal/ColumnInternalApi.d.ts +2 -0
- package/src/Api/Internal/ColumnInternalApi.js +7 -1
- package/src/Api/Internal/CommentsInternalApi.d.ts +4 -0
- package/src/Api/Internal/CommentsInternalApi.js +14 -0
- package/src/Api/Internal/CustomSortInternalApi.js +1 -1
- package/src/Api/Internal/DashboardInternalApi.js +5 -11
- package/src/Api/Internal/DataImportInternalApi.js +3 -9
- package/src/Api/Internal/DataSetInternalApi.js +2 -7
- package/src/Api/Internal/ExportInternalApi.d.ts +2 -1
- package/src/Api/Internal/ExportInternalApi.js +8 -5
- package/src/Api/Internal/ExpressionInternalApi.js +3 -13
- package/src/Api/Internal/Fdc3InternalApi.js +3 -12
- package/src/Api/Internal/FormatColumnInternalApi.d.ts +3 -6
- package/src/Api/Internal/FormatColumnInternalApi.js +38 -30
- package/src/Api/Internal/FreeTextColumnInternalApi.js +5 -4
- package/src/Api/Internal/GridFilterInternalApi.d.ts +5 -0
- package/src/Api/Internal/GridFilterInternalApi.js +8 -8
- package/src/Api/Internal/GridInternalApi.d.ts +2 -0
- package/src/Api/Internal/GridInternalApi.js +28 -40
- package/src/Api/Internal/LayoutInternalApi.d.ts +2 -0
- package/src/Api/Internal/LayoutInternalApi.js +26 -19
- package/src/Api/Internal/NoteInternalApi.d.ts +4 -0
- package/src/Api/Internal/NoteInternalApi.js +14 -0
- package/src/Api/Internal/PredicateInternalApi.d.ts +6 -6
- package/src/Api/Internal/PredicateInternalApi.js +5 -40
- package/src/Api/Internal/ScheduleInternalApi.js +1 -6
- package/src/Api/Internal/StyledColumnInternalApi.d.ts +2 -2
- package/src/Api/Internal/StyledColumnInternalApi.js +8 -9
- package/src/Api/Internal/SystemStatusInternalApi.js +1 -7
- package/src/Api/Internal/TeamSharingInternalApi.js +2 -7
- package/src/Api/Internal/ThemeInternalApi.js +1 -1
- package/src/Api/Internal/UserInterfaceInternalApi.js +1 -1
- package/src/Api/LayoutApi.d.ts +15 -15
- package/src/Api/NoteApi.d.ts +48 -0
- package/src/Api/NoteApi.js +1 -0
- package/src/Api/OptionsApi.d.ts +14 -10
- package/src/Api/UserInterfaceApi.d.ts +15 -13
- package/src/PredefinedConfig/AdaptableState.d.ts +2 -2
- package/src/PredefinedConfig/AlertState.d.ts +2 -2
- package/src/PredefinedConfig/CommentState.d.ts +27 -23
- package/src/PredefinedConfig/Common/AdaptableColumn.d.ts +4 -0
- package/src/PredefinedConfig/Common/AdaptableIcon.d.ts +1 -1
- package/src/PredefinedConfig/Common/AdaptableObject.d.ts +4 -4
- package/src/PredefinedConfig/Common/AdaptablePredicate.d.ts +2 -2
- package/src/PredefinedConfig/Common/CellSummary.d.ts +5 -14
- package/src/PredefinedConfig/Common/{AdaptableScope.d.ts → ColumnScope.d.ts} +4 -1
- package/src/PredefinedConfig/Common/ColumnScope.js +1 -0
- package/src/PredefinedConfig/Common/DataUpdateConfig.d.ts +1 -5
- package/src/PredefinedConfig/Common/Enums.d.ts +4 -1
- package/src/PredefinedConfig/Common/Enums.js +3 -0
- package/src/PredefinedConfig/Common/Fdc3Intent.d.ts +2 -2
- package/src/PredefinedConfig/Common/Menu.d.ts +39 -4
- package/src/PredefinedConfig/Common/Menu.js +125 -1
- package/src/PredefinedConfig/Common/RowScope.d.ts +17 -0
- package/src/PredefinedConfig/Common/RowScope.js +1 -0
- package/src/PredefinedConfig/Common/RowSummary.d.ts +21 -0
- package/src/PredefinedConfig/Common/RowSummary.js +17 -0
- package/src/PredefinedConfig/Common/TransposeConfig.d.ts +30 -0
- package/src/PredefinedConfig/Common/TransposeConfig.js +1 -0
- package/src/PredefinedConfig/Common/Types.d.ts +4 -4
- package/src/PredefinedConfig/Common/Types.js +4 -1
- package/src/PredefinedConfig/ExportState.d.ts +2 -2
- package/src/PredefinedConfig/FlashingCellState.d.ts +2 -2
- package/src/PredefinedConfig/FormatColumnState.d.ts +9 -5
- package/src/PredefinedConfig/LayoutState.d.ts +6 -1
- package/src/PredefinedConfig/{NotesState.d.ts → NoteState.d.ts} +4 -4
- package/src/PredefinedConfig/NoteState.js +1 -0
- package/src/PredefinedConfig/PlusMinusState.d.ts +2 -2
- package/src/PredefinedConfig/PopupState.d.ts +1 -2
- package/src/PredefinedConfig/PredefinedConfig.d.ts +2 -2
- package/src/PredefinedConfig/Selection/GridCell.d.ts +13 -0
- package/src/PredefinedConfig/ShortcutState.d.ts +2 -2
- package/src/PredefinedConfig/StyledColumnState.d.ts +5 -5
- package/src/PredefinedConfig/SystemState.d.ts +12 -4
- package/src/Redux/ActionsReducers/CommentsRedux.d.ts +0 -4
- package/src/Redux/ActionsReducers/CommentsRedux.js +0 -34
- package/src/Redux/ActionsReducers/LayoutRedux.d.ts +9 -0
- package/src/Redux/ActionsReducers/LayoutRedux.js +32 -10
- package/src/Redux/ActionsReducers/NoteRedux.d.ts +38 -0
- package/src/Redux/ActionsReducers/{NotesRedux.js → NoteRedux.js} +24 -24
- package/src/Redux/ActionsReducers/PopupRedux.d.ts +5 -13
- package/src/Redux/ActionsReducers/PopupRedux.js +0 -19
- package/src/Redux/ActionsReducers/SystemRedux.d.ts +15 -4
- package/src/Redux/ActionsReducers/SystemRedux.js +24 -9
- package/src/Redux/Store/AdaptableStore.js +48 -30
- package/src/Redux/Store/Interface/IAdaptableStore.d.ts +2 -2
- package/src/Strategy/AdaptableModuleBase.d.ts +10 -10
- package/src/Strategy/AdaptableModuleBase.js +13 -16
- package/src/Strategy/AlertModule.d.ts +3 -2
- package/src/Strategy/AlertModule.js +4 -4
- package/src/Strategy/BulkUpdateModule.d.ts +3 -2
- package/src/Strategy/BulkUpdateModule.js +2 -1
- package/src/Strategy/CalculatedColumnModule.d.ts +3 -4
- package/src/Strategy/CalculatedColumnModule.js +18 -14
- package/src/Strategy/CellSummaryModule.d.ts +10 -9
- package/src/Strategy/CellSummaryModule.js +101 -83
- package/src/Strategy/ColumnFilterModule.d.ts +3 -3
- package/src/Strategy/ColumnFilterModule.js +36 -57
- package/src/Strategy/ColumnInfoModule.d.ts +3 -3
- package/src/Strategy/ColumnInfoModule.js +6 -4
- package/src/Strategy/CommentModule.d.ts +12 -0
- package/src/Strategy/CommentModule.js +70 -0
- package/src/Strategy/CustomSortModule.d.ts +1 -2
- package/src/Strategy/CustomSortModule.js +3 -2
- package/src/Strategy/DashboardModule.d.ts +3 -3
- package/src/Strategy/DashboardModule.js +11 -21
- package/src/Strategy/DataImportModule.d.ts +4 -4
- package/src/Strategy/DataImportModule.js +8 -8
- package/src/Strategy/ExportModule.d.ts +1 -2
- package/src/Strategy/ExportModule.js +58 -44
- package/src/Strategy/Fdc3Module.d.ts +1 -1
- package/src/Strategy/Fdc3Module.js +3 -13
- package/src/Strategy/FlashingCellModule.d.ts +4 -3
- package/src/Strategy/FlashingCellModule.js +10 -10
- package/src/Strategy/FormatColumnModule.d.ts +1 -1
- package/src/Strategy/FormatColumnModule.js +29 -47
- package/src/Strategy/FreeTextColumnModule.d.ts +1 -2
- package/src/Strategy/FreeTextColumnModule.js +2 -2
- package/src/Strategy/GridInfoModule.d.ts +3 -3
- package/src/Strategy/GridInfoModule.js +5 -3
- package/src/Strategy/Interface/IModule.d.ts +4 -4
- package/src/Strategy/LayoutModule.d.ts +4 -3
- package/src/Strategy/LayoutModule.js +71 -72
- package/src/Strategy/NoteModule.d.ts +10 -0
- package/src/Strategy/NoteModule.js +55 -0
- package/src/Strategy/PlusMinusModule.d.ts +1 -2
- package/src/Strategy/PlusMinusModule.js +5 -5
- package/src/Strategy/SettingsPanelModule.d.ts +3 -3
- package/src/Strategy/SettingsPanelModule.js +6 -6
- package/src/Strategy/ShortcutModule.js +1 -1
- package/src/Strategy/SmartEditModule.d.ts +3 -2
- package/src/Strategy/SmartEditModule.js +2 -1
- package/src/Strategy/StyledColumnModule.d.ts +2 -1
- package/src/Strategy/StyledColumnModule.js +42 -22
- package/src/Strategy/SystemStatusModule.d.ts +3 -3
- package/src/Strategy/SystemStatusModule.js +6 -3
- package/src/Strategy/Utilities/FormatColumn/getFormatColumnSettingsViewItems.js +4 -2
- package/src/Strategy/Utilities/getScopeViewItems.d.ts +2 -2
- package/src/Strategy/Utilities/getScopeViewItems.js +3 -0
- package/src/Utilities/Constants/GeneralConstants.d.ts +1 -0
- package/src/Utilities/Constants/GeneralConstants.js +1 -0
- package/src/Utilities/Constants/ModuleConstants.d.ts +6 -6
- package/src/Utilities/Constants/ModuleConstants.js +6 -6
- package/src/Utilities/Defaults/DefaultSettingsPanel.js +2 -2
- package/src/Utilities/ExpressionFunctions/aggregatedScalarExpressionFunctions.d.ts +3 -2
- package/src/Utilities/ExpressionFunctions/aggregatedScalarExpressionFunctions.js +433 -3
- package/src/Utilities/ExpressionFunctions/observableExpressionFunctions.js +3 -3
- package/src/Utilities/ExpressionFunctions/scalarAggregationHelper.js +1 -1
- package/src/Utilities/ExpressionFunctions/scalarExpressionFunctions.d.ts +1 -1
- package/src/Utilities/ExpressionFunctions/scalarExpressionFunctions.js +15 -0
- package/src/Utilities/Extensions/ArrayExtensions.d.ts +2 -0
- package/src/Utilities/Extensions/ArrayExtensions.js +4 -0
- package/src/Utilities/Helpers/AdaptableHelper.d.ts +3 -1
- package/src/Utilities/Helpers/AdaptableHelper.js +19 -0
- package/src/Utilities/Interface/MessagePopups.d.ts +0 -3
- package/src/Utilities/MenuItem.d.ts +10 -7
- package/src/Utilities/MenuItem.js +6 -3
- package/src/Utilities/ObjectFactory.d.ts +3 -3
- package/src/Utilities/ObjectFactory.js +7 -25
- package/src/Utilities/Services/AggregatedScalarLiveValue.d.ts +4 -2
- package/src/Utilities/Services/AggregatedScalarLiveValue.js +23 -18
- package/src/Utilities/Services/CellPopupService.js +4 -4
- package/src/Utilities/Services/Interface/IQueryLanguageService.d.ts +1 -1
- package/src/Utilities/Services/Interface/IReportService.d.ts +1 -4
- package/src/Utilities/Services/LicenseService/index.js +1 -190
- package/src/Utilities/Services/ModuleService.js +6 -2
- package/src/Utilities/Services/QueryLanguageService.d.ts +1 -1
- package/src/Utilities/Services/QueryLanguageService.js +4 -3
- package/src/Utilities/Services/ReportService.d.ts +7 -5
- package/src/Utilities/Services/ReportService.js +245 -26
- package/src/Utilities/Services/RowSummaryService.d.ts +26 -0
- package/src/Utilities/Services/RowSummaryService.js +155 -0
- package/src/Utilities/Services/ValidationService.js +2 -2
- package/src/Utilities/adaptableQlUtils.d.ts +2 -0
- package/src/Utilities/adaptableQlUtils.js +14 -0
- package/src/Utilities/license/decode.js +1 -65
- package/src/Utilities/license/hashing.js +1 -43
- package/src/View/AdaptableViewFactory.js +2 -2
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/UIOptions/UIOptionsStatusbarForm.js +1 -1
- package/src/View/Alert/AlertEntityRow.js +1 -1
- package/src/View/Alert/Utilities/getAvailablePredicates.d.ts +2 -2
- package/src/View/Alert/Utilities/getDefaultAlertDefinition.d.ts +1 -1
- package/src/View/Alert/Wizard/AlertScopeWizardSection.js +2 -2
- package/src/View/Alert/Wizard/BaseAlertScopeWizardSection.js +1 -1
- package/src/View/BulkUpdate/BulkUpdatePopup.js +2 -2
- package/src/View/CalculatedColumn/Wizard/CalculatedColumnWizard.d.ts +1 -1
- package/src/View/CalculatedColumn/Wizard/CalculatedColumnWizard.js +3 -3
- package/src/View/ColumnInfo/ColumnInfo.js +1 -1
- package/src/View/Comments/CommentsEditor.js +28 -17
- package/src/View/Comments/CommentsPopup.js +15 -7
- package/src/View/Components/AdaptableDateInput/index.d.ts +1 -1
- package/src/View/Components/AdaptableInput/AdaptableDateInlineInput.d.ts +5 -0
- package/src/View/Components/AdaptableInput/AdaptableDateInlineInput.js +42 -0
- package/src/View/Components/AdaptableObjectList/AdaptableObjectList.js +5 -2
- package/src/View/Components/CellPopup/index.d.ts +1 -0
- package/src/View/Components/CellPopup/index.js +6 -3
- package/src/View/Components/EntityRulesEditor/EntityRulePredicatesEditor/EntityRulePredicatesEditor.d.ts +3 -3
- package/src/View/Components/EntityRulesEditor/index.d.ts +3 -3
- package/src/View/Components/FilterForm/FilterForm.js +20 -12
- package/src/View/Components/FilterForm/QuickFilterForm.js +15 -8
- package/src/View/Components/FilterForm/QuickFilterValues.js +39 -23
- package/src/View/Components/NewScopeComponent.d.ts +5 -5
- package/src/View/Components/NewScopeComponent.js +36 -3
- package/src/View/Components/Popups/AdaptablePopup/AdaptablePopup.js +4 -1
- package/src/View/Components/Popups/AdaptablePopup/useMenuItems.js +10 -1
- package/src/View/Components/Popups/GridCellPopup/GridCellPopup.js +7 -10
- package/src/View/Components/RangesComponent.d.ts +2 -2
- package/src/View/Components/RangesComponent.js +1 -1
- package/src/View/Components/Selectors/PermittedValuesSelector.js +1 -1
- package/src/View/Components/SharedProps/WizardScopeState.d.ts +2 -2
- package/src/View/Components/ValueSelector/index.d.ts +1 -0
- package/src/View/Components/ValueSelector/index.js +2 -2
- package/src/View/CustomSort/Wizard/CustomSortColumnWizardSection.js +1 -1
- package/src/View/DataChangeHistory/DataChangeHistoryGrid.js +4 -2
- package/src/View/DataImport/DataImportWizard/DataImportWizard.js +1 -1
- package/src/View/FormatColumn/Wizard/FormatColumnFormatWizardSection.d.ts +2 -2
- package/src/View/FormatColumn/Wizard/FormatColumnFormatWizardSection.js +20 -7
- package/src/View/FormatColumn/Wizard/FormatColumnRuleWizardSection.js +1 -1
- package/src/View/FormatColumn/Wizard/FormatColumnScopeWizardSection.js +1 -1
- package/src/View/FormatColumn/Wizard/FormatColumnSettingsWizardSection.js +27 -12
- package/src/View/FormatColumn/Wizard/FormatColumnStyleWizardSection.js +1 -1
- package/src/View/FreeTextColumn/FreeTextColumnSummary.js +1 -1
- package/src/View/FreeTextColumn/Wizard/FreeTextColumnWizard.js +3 -1
- package/src/View/GridFilter/GridFilterViewPanel.js +3 -3
- package/src/View/GridFilter/useGridFilterExpressionEditor.js +1 -1
- package/src/View/Layout/LayoutViewPanel.js +2 -1
- package/src/View/Layout/TransposedPopup.js +27 -25
- package/src/View/Layout/Wizard/LayoutWizard.js +38 -3
- package/src/View/Layout/Wizard/sections/ColumnsSection.js +1 -1
- package/src/View/Layout/Wizard/sections/FilterSection.js +1 -1
- package/src/View/Layout/Wizard/sections/RowGroupingSection.js +18 -2
- package/src/View/Layout/Wizard/sections/RowSummarySection.d.ts +9 -0
- package/src/View/Layout/Wizard/sections/RowSummarySection.js +174 -0
- package/src/View/License/LicenseWatermark.js +1 -61
- package/src/View/Note/NotePopup.d.ts +2 -0
- package/src/View/{Notes/NotesPopup.js → Note/NotePopup.js} +14 -9
- package/src/View/PlusMinus/PlusMinusSummary.js +2 -2
- package/src/View/SmartEdit/SmartEditPopup.js +1 -1
- package/src/View/SpecialColumnSettingsWizardStep.js +4 -4
- package/src/View/StyledColumn/Wizard/StyledColumnBadgeSection.js +5 -7
- package/src/View/StyledColumn/Wizard/StyledColumnWizard.js +1 -1
- package/src/View/StyledColumn/Wizard/StyledColumnWizardColumnSection.js +1 -1
- package/src/View/StyledColumn/Wizard/StyledColumnWizardSettingsSection.js +38 -14
- package/src/View/StyledColumn/Wizard/StyledColumnWizardStyleSection/StyledColumnWizardStyleSection.js +1 -1
- package/src/agGrid/ActionColumnRenderer.js +40 -4
- package/src/agGrid/AdaptableAgGrid.d.ts +21 -12
- package/src/agGrid/AdaptableAgGrid.js +313 -225
- package/src/agGrid/AgGridAdapter.d.ts +5 -2
- package/src/agGrid/AgGridAdapter.js +20 -0
- package/src/agGrid/AgGridColumnAdapter.d.ts +1 -3
- package/src/agGrid/AgGridColumnAdapter.js +52 -70
- package/src/agGrid/AgGridMenuAdapter.d.ts +25 -8
- package/src/agGrid/AgGridMenuAdapter.js +405 -74
- package/src/agGrid/AgGridOptionsService.d.ts +4 -1
- package/src/agGrid/AgGridOptionsService.js +22 -0
- package/src/agGrid/BadgeRenderer.d.ts +2 -2
- package/src/agGrid/BadgeRenderer.js +24 -11
- package/src/agGrid/PercentBarRenderer.js +2 -1
- package/src/agGrid/buildSortedColumnStateForLayout.d.ts +7 -0
- package/src/agGrid/buildSortedColumnStateForLayout.js +120 -0
- package/src/agGrid/defaultAdaptableOptions.js +7 -12
- package/src/agGrid/editors/AdaptableDateEditor/index.d.ts +1 -1
- package/src/agGrid/editors/AdaptableDateEditor/index.js +1 -1
- package/src/agGrid/editors/AdaptableNumberEditor/index.d.ts +2 -2
- package/src/agGrid/sortColumnStateForVisibleColumns.d.ts +12 -0
- package/src/agGrid/sortColumnStateForVisibleColumns.js +46 -0
- package/src/agGrid/weightedAverage.d.ts +0 -2
- package/src/agGrid/weightedAverage.js +0 -54
- package/src/components/Accordion.d.ts +7 -0
- package/src/components/Accordion.js +36 -0
- package/src/components/CheckBox/index.js +1 -1
- package/src/components/ColorPicker/ColorPicker.d.ts +1 -1
- package/src/components/Datepicker/index.d.ts +1 -1
- package/src/components/Datepicker/index.js +10 -2
- package/src/components/ExpressionEditor/QueryBuilder/QueryPredicateBuilder.js +2 -1
- package/src/components/ExpressionEditor/QueryBuilder/utils.d.ts +0 -1
- package/src/components/ExpressionEditor/QueryBuilder/utils.js +1 -14
- package/src/components/Input/index.d.ts +1 -2
- package/src/components/List/ListGroupItem/index.d.ts +1 -1
- package/src/components/ProgressIndicator/ProgressIndicator.js +15 -6
- package/src/components/Select/Select.d.ts +1 -1
- package/src/components/Select/Select.js +3 -1
- package/src/components/Textarea/index.d.ts +2 -2
- package/src/components/icons/collapse-all.d.ts +3 -0
- package/src/components/icons/collapse-all.js +4 -0
- package/src/components/icons/copy.d.ts +3 -0
- package/src/components/icons/copy.js +4 -0
- package/src/components/icons/csv.d.ts +3 -0
- package/src/components/icons/csv.js +4 -0
- package/src/components/icons/data-object.d.ts +3 -0
- package/src/components/icons/data-object.js +4 -0
- package/src/components/icons/excel.d.ts +3 -0
- package/src/components/icons/excel.js +5 -0
- package/src/components/icons/expand-all.d.ts +3 -0
- package/src/components/icons/expand-all.js +4 -0
- package/src/components/icons/filter-off.d.ts +3 -0
- package/src/components/icons/filter-off.js +4 -0
- package/src/components/icons/grid-info.d.ts +3 -0
- package/src/components/icons/grid-info.js +4 -0
- package/src/components/icons/index.js +24 -0
- package/src/components/icons/note.js +2 -2
- package/src/components/icons/rows.d.ts +3 -0
- package/src/components/icons/rows.js +4 -0
- package/src/components/icons/select-all.d.ts +3 -0
- package/src/components/icons/select-all.js +4 -0
- package/src/components/icons/select-fwd.d.ts +3 -0
- package/src/components/icons/select-fwd.js +4 -0
- package/src/components/icons/select-off.d.ts +3 -0
- package/src/components/icons/select-off.js +4 -0
- package/src/env.js +2 -2
- package/src/metamodel/adaptable.metamodel.d.ts +230 -116
- package/src/metamodel/adaptable.metamodel.js +1 -9408
- package/src/parser/src/parser.js +576 -553
- package/src/parser/src/predicate/mapExpressionToQlPredicate.js +1 -1
- package/src/parser/src/predicate/mapQlPredicateToExpression.js +3 -4
- package/src/parser/src/types.d.ts +7 -2
- package/src/parser/src/types.js +1 -2
- package/src/types.d.ts +32 -25
- package/tsconfig.esm.tsbuildinfo +1 -1
- package/src/AdaptableOptions/MenuOptions.d.ts +0 -234
- package/src/AdaptableOptions/MenuOptions.js +0 -95
- package/src/Api/Events/CommentsChangedInfo.d.ts +0 -5
- package/src/Api/Implementation/NotesApiImpl.d.ts +0 -14
- package/src/Api/Implementation/NotesApiImpl.js +0 -35
- package/src/Api/Implementation/ScopeApiImpl.d.ts +0 -31
- package/src/Api/NotesApi.d.ts +0 -48
- package/src/PredefinedConfig/CellAddress.d.ts +0 -13
- package/src/PredefinedConfig/CellAddress.js +0 -4
- package/src/Redux/ActionsReducers/NotesRedux.d.ts +0 -38
- package/src/Strategy/CommentsModule.d.ts +0 -17
- package/src/Strategy/CommentsModule.js +0 -78
- package/src/Strategy/NotesModule.d.ts +0 -10
- package/src/Strategy/NotesModule.js +0 -57
- package/src/View/Components/ScopeComponent.d.ts +0 -24
- package/src/View/Components/ScopeComponent.js +0 -133
- package/src/View/Export/Wizard/ReportScopeWizard.d.ts +0 -17
- package/src/View/Export/Wizard/ReportScopeWizard.js +0 -47
- package/src/View/Notes/NotesPopup.d.ts +0 -2
- /package/src/{Api/Events/CommentsChangedInfo.js → AdaptableOptions/ColumnMenuOptions.js} +0 -0
- /package/src/{Api/NotesApi.js → AdaptableOptions/ContextMenuOptions.js} +0 -0
- /package/src/Api/{ScopeApi.js → ColumnMenuApi.js} +0 -0
- /package/src/{PredefinedConfig/Common/AdaptableScope.js → Api/ColumnScopeApi.js} +0 -0
- /package/src/{PredefinedConfig/NotesState.js → Api/ContextMenuApi.js} +0 -0
- /package/src/View/{Notes → Note}/NoteEditor.d.ts +0 -0
- /package/src/View/{Notes → Note}/NoteEditor.js +0 -0
|
@@ -5,7 +5,7 @@ export function FormatColumnRuleWizardSection(props) {
|
|
|
5
5
|
const { data, api, moduleInfo } = useOnePageAdaptableWizardContext();
|
|
6
6
|
return (React.createElement(EntityRulesEditor, { module: moduleInfo.ModuleName, defaultPredicateId: props.defaultPredicateId,
|
|
7
7
|
// TODO see what is this
|
|
8
|
-
predicateDefs: api.formatColumnApi.internalApi.getFormatColumnDefsForScope(data.Scope), getPredicateDefsForColId: (colId) => api.formatColumnApi.internalApi.getFormatColumnDefsForScope({ ColumnIds: [colId] }), showNoRule: true, showBoolean: true, showAggregation: false, showObservable: false, showPredicate: !api.
|
|
8
|
+
predicateDefs: api.formatColumnApi.internalApi.getFormatColumnDefsForScope(data.Scope), getPredicateDefsForColId: (colId) => api.formatColumnApi.internalApi.getFormatColumnDefsForScope({ ColumnIds: [colId] }), showNoRule: true, showBoolean: true, showAggregation: false, showObservable: false, showPredicate: !api.columnScopeApi.scopeIsAll(data.Scope), data: data, onChange: (formatColumn) => props.onChange(formatColumn), descriptions: {
|
|
9
9
|
selectPredicate: 'Create a Format Column Rule - to be applied when data changes',
|
|
10
10
|
useBooleanQuery: (React.createElement(React.Fragment, null,
|
|
11
11
|
"Use an BooleanQuery if ",
|
|
@@ -17,7 +17,7 @@ export const FormatColumnScopeWizardSection = (props) => {
|
|
|
17
17
|
}, scope: data.Scope, updateScope: (Scope) => {
|
|
18
18
|
var _a, _b;
|
|
19
19
|
const newData = Object.assign(Object.assign({}, data), { Scope });
|
|
20
|
-
const wholeRow = api.
|
|
20
|
+
const wholeRow = api.columnScopeApi.scopeIsAll(Scope);
|
|
21
21
|
if ((_b = (_a = newData.Rule) === null || _a === void 0 ? void 0 : _a.Predicates) === null || _b === void 0 ? void 0 : _b.length) {
|
|
22
22
|
if (wholeRow) {
|
|
23
23
|
// if scope is whole row, a predicate cannot be present, so we set the rule
|
|
@@ -7,22 +7,25 @@ import { useOnePageAdaptableWizardContext } from '../../Wizard/OnePageAdaptableW
|
|
|
7
7
|
import { Tag } from '../../../components/Tag';
|
|
8
8
|
import { ToggleGroup } from '../../../components/Toggle/ToggleGroup';
|
|
9
9
|
import { Toggle } from '../../../components/Toggle/Toggle';
|
|
10
|
-
let alignmentOptions = [
|
|
11
|
-
{ value: 'Left', label: 'Left' },
|
|
12
|
-
{ value: 'Right', label: 'Right' },
|
|
13
|
-
{ value: 'Center', label: 'Center' },
|
|
14
|
-
];
|
|
15
10
|
export const renderFormatColumnSettingsSummary = (data) => {
|
|
16
|
-
var _a;
|
|
11
|
+
var _a, _b, _c, _d;
|
|
17
12
|
return (React.createElement(Box, { padding: 2 },
|
|
18
13
|
React.createElement(Text, null,
|
|
19
14
|
"Cell alignment ",
|
|
20
15
|
React.createElement(Tag, null, (_a = data.CellAlignment) !== null && _a !== void 0 ? _a : 'default')),
|
|
21
16
|
React.createElement(Text, { mt: 3 },
|
|
22
|
-
"
|
|
23
|
-
React.createElement(Tag, null, data.
|
|
17
|
+
"Data Rows ",
|
|
18
|
+
React.createElement(Tag, null, ((_b = data.RowScope) === null || _b === void 0 ? void 0 : _b.ExcludeDataRows) ? 'no' : 'yes')),
|
|
19
|
+
' ',
|
|
20
|
+
React.createElement(Text, { mt: 3 },
|
|
21
|
+
"Group Rows ",
|
|
22
|
+
React.createElement(Tag, null, ((_c = data.RowScope) === null || _c === void 0 ? void 0 : _c.ExcludeGroupRows) ? 'no' : 'yes')),
|
|
23
|
+
React.createElement(Text, { mt: 3 },
|
|
24
|
+
"Summary Rows ",
|
|
25
|
+
React.createElement(Tag, null, ((_d = data.RowScope) === null || _d === void 0 ? void 0 : _d.ExcludeSummaryRows) ? 'no' : 'yes'))));
|
|
24
26
|
};
|
|
25
27
|
export const FormatColumnSettingsWizardSection = (props) => {
|
|
28
|
+
var _a, _b, _c;
|
|
26
29
|
const { data } = useOnePageAdaptableWizardContext();
|
|
27
30
|
const onCellAlignmentSelectChanged = (CellAlignment) => {
|
|
28
31
|
const newData = Object.assign(Object.assign({}, data), { CellAlignment });
|
|
@@ -31,8 +34,14 @@ export const FormatColumnSettingsWizardSection = (props) => {
|
|
|
31
34
|
}
|
|
32
35
|
props.onChange(newData);
|
|
33
36
|
};
|
|
34
|
-
const
|
|
35
|
-
props.onChange(Object.assign(Object.assign({}, data), {
|
|
37
|
+
const onExcludeDataRowsChanged = (ExcludeDataRows) => {
|
|
38
|
+
props.onChange(Object.assign(Object.assign({}, data), { RowScope: Object.assign(Object.assign({}, data.RowScope), { ExcludeDataRows }) }));
|
|
39
|
+
};
|
|
40
|
+
const onExcludeGroupedRowsChanged = (ExcludeGroupedRows) => {
|
|
41
|
+
props.onChange(Object.assign(Object.assign({}, data), { RowScope: Object.assign(Object.assign({}, data.RowScope), { ExcludeGroupRows: ExcludeGroupedRows }) }));
|
|
42
|
+
};
|
|
43
|
+
const onExcludeSummaryRowsChanged = (ExcludeSummaryRows) => {
|
|
44
|
+
props.onChange(Object.assign(Object.assign({}, data), { RowScope: Object.assign(Object.assign({}, data.RowScope), { ExcludeSummaryRows }) }));
|
|
36
45
|
};
|
|
37
46
|
return (React.createElement(Tabs, null,
|
|
38
47
|
React.createElement(Tabs.Tab, null, "Settings"),
|
|
@@ -50,7 +59,13 @@ export const FormatColumnSettingsWizardSection = (props) => {
|
|
|
50
59
|
React.createElement(Toggle, { icon: "align-right", pressed: data.CellAlignment === 'Right', onPressedChange: (pressed) => pressed
|
|
51
60
|
? onCellAlignmentSelectChanged('Right')
|
|
52
61
|
: onCellAlignmentSelectChanged(null) }))),
|
|
53
|
-
React.createElement(FormRow, { label: "
|
|
62
|
+
React.createElement(FormRow, { label: "Exclude Data Rows:" },
|
|
63
|
+
React.createElement(Flex, { alignItems: "center", marginLeft: 2 },
|
|
64
|
+
React.createElement(CheckBox, { "data-name": "exclude-data-rows-checkbox", checked: (_a = data.RowScope) === null || _a === void 0 ? void 0 : _a.ExcludeDataRows, onChange: onExcludeDataRowsChanged, mr: 2 }))),
|
|
65
|
+
React.createElement(FormRow, { label: "Exclude Group Rows:" },
|
|
66
|
+
React.createElement(Flex, { alignItems: "center", marginLeft: 2 },
|
|
67
|
+
React.createElement(CheckBox, { "data-name": "exclude-grouped-rows-checkbox", checked: (_b = data.RowScope) === null || _b === void 0 ? void 0 : _b.ExcludeGroupRows, onChange: onExcludeGroupedRowsChanged, mr: 2 }))),
|
|
68
|
+
React.createElement(FormRow, { label: "Exclude Row Summaries:" },
|
|
54
69
|
React.createElement(Flex, { alignItems: "center", marginLeft: 2 },
|
|
55
|
-
React.createElement(CheckBox, { "data-name": "
|
|
70
|
+
React.createElement(CheckBox, { "data-name": "exclude-summary-rows-checkbox", checked: (_c = data.RowScope) === null || _c === void 0 ? void 0 : _c.ExcludeSummaryRows, onChange: onExcludeSummaryRowsChanged, mr: 2 }))))))));
|
|
56
71
|
};
|
|
@@ -9,7 +9,7 @@ export const isFormatColumnStyleValid = (data, api) => {
|
|
|
9
9
|
UIHelper.IsEmptyStyle(data.Style) &&
|
|
10
10
|
data.DisplayFormat === undefined &&
|
|
11
11
|
data.CellAlignment === undefined &&
|
|
12
|
-
!api.
|
|
12
|
+
!api.columnScopeApi.isSingleBooleanColumnScope(data.Scope)) {
|
|
13
13
|
return 'No format applied';
|
|
14
14
|
}
|
|
15
15
|
return true;
|
|
@@ -45,7 +45,7 @@ export class FreeTextColumnSummaryComponent extends React.Component {
|
|
|
45
45
|
this.state.editedAdaptableObject && (React.createElement(FreeTextColumnWizard, { moduleInfo: this.props.moduleInfo, data: this.state.editedAdaptableObject, configEntities: this.props.FreeTextColumns, onCloseWizard: () => this.onCloseWizard(), onFinishWizard: this.onFinishWizard }))));
|
|
46
46
|
}
|
|
47
47
|
onNew() {
|
|
48
|
-
let configEntity = ObjectFactory.CreateEmptyFreeTextColumn();
|
|
48
|
+
let configEntity = ObjectFactory.CreateEmptyFreeTextColumn(this.props.api.gridApi.internalApi.deriveSpecialColumnSettingsFromAgGridDefaultColDef());
|
|
49
49
|
configEntity.ColumnId = this.props.summarisedColumn.columnId;
|
|
50
50
|
this.setState({
|
|
51
51
|
editedAdaptableObject: configEntity,
|
|
@@ -8,8 +8,10 @@ import ObjectFactory from '../../../Utilities/ObjectFactory';
|
|
|
8
8
|
import * as FreeTextColumnRedux from '../../../Redux/ActionsReducers/FreeTextColumnRedux';
|
|
9
9
|
import { useDispatch, useSelector } from 'react-redux';
|
|
10
10
|
import { ObjectTagsWizardSection, renderObjectTagsSummary, } from '../../Wizard/ObjectTagsWizardSection';
|
|
11
|
+
import { useAdaptable } from '../../AdaptableContext';
|
|
11
12
|
export const FreeTextColumnWizard = (props) => {
|
|
12
13
|
var _a;
|
|
14
|
+
const adaptable = useAdaptable();
|
|
13
15
|
const allFreeTextColumns = useSelector((state) => state.FreeTextColumn.FreeTextColumns);
|
|
14
16
|
const [freeTextColumn, setFreeTextColumn] = useState(() => {
|
|
15
17
|
var _a, _b;
|
|
@@ -19,7 +21,7 @@ export const FreeTextColumnWizard = (props) => {
|
|
|
19
21
|
if (((_a = props.popupParams) === null || _a === void 0 ? void 0 : _a.action) === 'Edit' && ((_b = props.popupParams) === null || _b === void 0 ? void 0 : _b.column)) {
|
|
20
22
|
return allFreeTextColumns.find((column) => column.ColumnId === props.popupParams.column.columnId);
|
|
21
23
|
}
|
|
22
|
-
return ObjectFactory.CreateEmptyFreeTextColumn();
|
|
24
|
+
return ObjectFactory.CreateEmptyFreeTextColumn(adaptable.api.gridApi.internalApi.deriveSpecialColumnSettingsFromAgGridDefaultColDef());
|
|
23
25
|
});
|
|
24
26
|
const dispatch = useDispatch();
|
|
25
27
|
const isEdit = props.data || ((_a = props.popupParams) === null || _a === void 0 ? void 0 : _a.action) === 'Edit';
|
|
@@ -49,7 +49,7 @@ const QueryViewPanelComponent = (props) => {
|
|
|
49
49
|
paddingTop: 6,
|
|
50
50
|
overflow: 'hidden',
|
|
51
51
|
zIndex: 100,
|
|
52
|
-
},
|
|
52
|
+
}, placeholder: "Grid Filter", onChange: (x) => setExpression(x.target.value), value: expression })),
|
|
53
53
|
isExpressionValid && (React.createElement(ButtonPlay, { onClick: () => runQuery(), tooltip: '', accessLevel: gridFilterAccessLevel, variant: "text", tone: "neutral", disabled: disabled || expression == '' || expression == (gridFilter === null || gridFilter === void 0 ? void 0 : gridFilter.Expression), marginRight: 1 })),
|
|
54
54
|
gridFilter && !isExpressionValid && (React.createElement(ButtonInvalid, { variant: "text", tone: "neutral", tooltip: "Invalid Grid Filter", marginRight: 1 })),
|
|
55
55
|
' ',
|
|
@@ -75,11 +75,11 @@ const QueryViewPanelComponent = (props) => {
|
|
|
75
75
|
zIndex: 100,
|
|
76
76
|
height: '100%',
|
|
77
77
|
overflow: 'hidden',
|
|
78
|
-
},
|
|
78
|
+
}, placeholder: "Grid Filter", onChange: (x) => setExpression(x.target.value), value: expression }))));
|
|
79
79
|
};
|
|
80
80
|
const saveButton = (React.createElement(ButtonSave, { onClick: () => saveQuery(), tooltip: "Save as Named Query", accessLevel: namedQueryModuleAccessLevel, disabled: disabled || !isExpressionValid || isExpressionNamedQuery || expression == '', variant: "text", tone: "neutral", marginRight: 1 }));
|
|
81
81
|
const suspendButton = (React.createElement(ButtonPause, { onClick: () => suspendGridFilter(), tooltip: "Suspend Grid Filter", accessLevel: gridFilterAccessLevel, disabled: disabled || !isExpressionValid, variant: "text", tone: "neutral", marginRight: 1 }));
|
|
82
|
-
const unSuspendButton = (React.createElement(ButtonUnsuspend, { onClick: () => unSuspendGridFilter(), tooltip: "Unsuspend Grid Filter", accessLevel: gridFilterAccessLevel, disabled:
|
|
82
|
+
const unSuspendButton = (React.createElement(ButtonUnsuspend, { onClick: () => unSuspendGridFilter(), tooltip: "Unsuspend Grid Filter", accessLevel: gridFilterAccessLevel, disabled: !isExpressionValid, variant: "text", tone: "neutral", marginRight: 1 }));
|
|
83
83
|
const namedQuerySelector = (React.createElement(NamedQuerySelector, { namedQueries: namedQueries, cachedQueries: cachedQueries, currentQuery: gridFilter === null || gridFilter === void 0 ? void 0 : gridFilter.Expression, onSelect: (query) => runQuery(query), setGridFilterExpression: (query) => setGridFilterExpression(query) }));
|
|
84
84
|
const columnsDropdown = (React.createElement(DropdownButton, { disabled: disabled, accessLevel: gridFilterAccessLevel, variant: "text", items: availableColumns, marginRight: 1, tooltip: "Pick Columns" },
|
|
85
85
|
React.createElement(Icon, { name: 'list' })));
|
|
@@ -59,7 +59,7 @@ export const useGridFilterExpressionEditor = () => {
|
|
|
59
59
|
const runQuery = (newExpression = expression) => {
|
|
60
60
|
if (StringExtensions.IsNullOrEmpty(newExpression) &&
|
|
61
61
|
StringExtensions.IsNotNullOrEmpty(gridFilter === null || gridFilter === void 0 ? void 0 : gridFilter.Expression)) {
|
|
62
|
-
// user pressed enter key with an empty input => clear existing
|
|
62
|
+
// user pressed enter key with an empty input => clear existing expression
|
|
63
63
|
adaptable.api.gridFilterApi.setGridFilterExpression('');
|
|
64
64
|
return;
|
|
65
65
|
}
|
|
@@ -25,8 +25,9 @@ class LayoutViewPanelComponent extends React.Component {
|
|
|
25
25
|
return Object.assign(Object.assign({}, layout), { label: layout.Name, value: layout.Name, onClick: () => this.props.onSelectLayout(layout.Name) });
|
|
26
26
|
});
|
|
27
27
|
const elementType = this.props.viewType === 'Toolbar' ? 'DashboardToolbar' : 'ToolPanel';
|
|
28
|
+
let layoutSelectStyle = elementType === 'ToolPanel' ? { minWidth: '100%' } : {};
|
|
28
29
|
return (React.createElement(Flex, { flexDirection: "row", className: `ab-${elementType}__Layout__wrap`, flexWrap: this.props.viewType === 'ToolPanel' ? 'wrap' : 'nowrap' },
|
|
29
|
-
React.createElement(Flex, { flex: 1 },
|
|
30
|
+
React.createElement(Flex, { style: layoutSelectStyle, flex: 1 },
|
|
30
31
|
React.createElement(Select, { style: { width: '100%' }, options: availableLayoutOptions, className: `ab-${elementType}__Layout__select`, value: layoutEntity ? layoutEntity.Name : null, onChange: (layout) => this.props.onSelectLayout(layout) })),
|
|
31
32
|
React.createElement(Flex, { flexDirection: "row", className: join(this.props.accessLevel == 'ReadOnly' ? GeneralConstants.READ_ONLY_STYLE : '', `ab-${elementType}__Layout__wrap`) },
|
|
32
33
|
isManualSaveLayout && (React.createElement(ButtonSave, { className: `ab-${elementType}__Layout__save`, onClick: () => this.onSaveLayout(), tooltip: "Save Changes to Current Layout", disabled: !this.props.CanSave, accessLevel: accessLevel })),
|
|
@@ -4,23 +4,24 @@ import FormLayout, { FormRow } from '../../components/FormLayout';
|
|
|
4
4
|
import Panel from '../../components/Panel';
|
|
5
5
|
import { useAdaptable } from '../AdaptableContext';
|
|
6
6
|
import { ColumnSelector } from '../Components/Selectors/ColumnSelector';
|
|
7
|
+
import { AdaptableAgGrid } from '../../agGrid/AdaptableAgGrid';
|
|
7
8
|
export const TransposedPopup = (props) => {
|
|
8
9
|
const adaptable = useAdaptable();
|
|
10
|
+
const { transposedColumnId, hideTransposedColumn, visibleColumns, visibleRows, autosize } = props.popupProps;
|
|
9
11
|
const rowNodes = React.useMemo(() => {
|
|
10
|
-
return
|
|
12
|
+
return props.popupProps.visibleRows
|
|
13
|
+
? adaptable.api.gridApi.getVisibleRowNodes()
|
|
14
|
+
: adaptable.api.gridApi.getAllRowNodes();
|
|
11
15
|
}, [
|
|
12
|
-
// can be later triggered by
|
|
16
|
+
// can be later triggered by tickng data
|
|
13
17
|
]);
|
|
14
|
-
const { transposedColumnId, hideTransposedColumn = true } = props.popupProps;
|
|
15
18
|
const primaryKey = adaptable.api.optionsApi.getPrimaryKey();
|
|
16
|
-
|
|
17
|
-
const transposeByColumnId = primaryKey;
|
|
18
|
-
// Only used to show nice values a the top of the grid, istead on the value
|
|
19
|
-
// of the primarykey
|
|
20
|
-
const [synteticTransposedByColumnId, setSynteticTransposedByColumnId] = React.useState(transposedColumnId !== null && transposedColumnId !== void 0 ? transposedColumnId : primaryKey);
|
|
19
|
+
const [syntheticTransposedByColumnId, setSyntheticTransposedByColumnId] = React.useState(transposedColumnId);
|
|
21
20
|
const columns = React.useMemo(() => {
|
|
22
21
|
// customisable
|
|
23
|
-
return
|
|
22
|
+
return visibleColumns
|
|
23
|
+
? adaptable.api.columnApi.getVisibleColumns()
|
|
24
|
+
: adaptable.api.columnApi.getColumns();
|
|
24
25
|
}, []);
|
|
25
26
|
const adaptableContainerId = 'transposed-adaptable-container';
|
|
26
27
|
const agGridContainerId = 'transposed-adaptable-ag-grid-container';
|
|
@@ -39,9 +40,10 @@ export const TransposedPopup = (props) => {
|
|
|
39
40
|
for (const row of rowNodes) {
|
|
40
41
|
// we force the col-ids to be strings, easer to work with
|
|
41
42
|
//row[transposeByColumnId] + '';
|
|
42
|
-
const colId = adaptable.api.gridApi.getNormalisedValueFromRowNode(row,
|
|
43
|
+
const colId = adaptable.api.gridApi.getNormalisedValueFromRowNode(row, primaryKey) + '';
|
|
43
44
|
//row[synteticTransposedByColumnId] + '';
|
|
44
|
-
const header = adaptable.api.gridApi.getNormalisedValueFromRowNode(row,
|
|
45
|
+
const header = adaptable.api.gridApi.getNormalisedValueFromRowNode(row, syntheticTransposedByColumnId) +
|
|
46
|
+
'';
|
|
45
47
|
transposedColumns.push({
|
|
46
48
|
colId,
|
|
47
49
|
header,
|
|
@@ -51,7 +53,7 @@ export const TransposedPopup = (props) => {
|
|
|
51
53
|
/**
|
|
52
54
|
* We can hide the transposed column, if we want
|
|
53
55
|
*/
|
|
54
|
-
if (hideTransposedColumn && column.columnId ===
|
|
56
|
+
if (hideTransposedColumn && column.columnId === syntheticTransposedByColumnId) {
|
|
55
57
|
continue;
|
|
56
58
|
}
|
|
57
59
|
const transposedRow = {
|
|
@@ -62,7 +64,7 @@ export const TransposedPopup = (props) => {
|
|
|
62
64
|
};
|
|
63
65
|
for (let row of rowNodes) {
|
|
64
66
|
// [transposed-by-column-value[n]]: [other column value[n]]
|
|
65
|
-
const key = adaptable.api.gridApi.getNormalisedValueFromRowNode(row,
|
|
67
|
+
const key = adaptable.api.gridApi.getNormalisedValueFromRowNode(row, primaryKey);
|
|
66
68
|
// row[column.field]
|
|
67
69
|
let value = adaptable.api.gridApi.getDisplayValueFromRowNode(row, column.columnId);
|
|
68
70
|
if (value instanceof Date) {
|
|
@@ -76,7 +78,7 @@ export const TransposedPopup = (props) => {
|
|
|
76
78
|
transposedColumns,
|
|
77
79
|
transposedRows,
|
|
78
80
|
};
|
|
79
|
-
}, [rowNodes, primaryKey,
|
|
81
|
+
}, [rowNodes, primaryKey, syntheticTransposedByColumnId]);
|
|
80
82
|
React.useEffect(() => {
|
|
81
83
|
// Mounting in an effect, so the nodes are rendered/available
|
|
82
84
|
const hostAdaptableOptions = adaptable.adaptableOptions;
|
|
@@ -94,7 +96,7 @@ export const TransposedPopup = (props) => {
|
|
|
94
96
|
},
|
|
95
97
|
layoutOptions: {
|
|
96
98
|
createDefaultLayout: false,
|
|
97
|
-
autoSizeColumnsInLayout:
|
|
99
|
+
autoSizeColumnsInLayout: autosize,
|
|
98
100
|
},
|
|
99
101
|
predefinedConfig: {
|
|
100
102
|
Layout: {
|
|
@@ -120,7 +122,7 @@ export const TransposedPopup = (props) => {
|
|
|
120
122
|
};
|
|
121
123
|
const firstColumn = {
|
|
122
124
|
field: transposedFirstColumnHeader,
|
|
123
|
-
headerName: adaptable.api.columnApi.getFriendlyNameForColumnId(
|
|
125
|
+
headerName: adaptable.api.columnApi.getFriendlyNameForColumnId(syntheticTransposedByColumnId),
|
|
124
126
|
};
|
|
125
127
|
const agGridOptions = {
|
|
126
128
|
suppressLoadingOverlay: true,
|
|
@@ -155,14 +157,14 @@ export const TransposedPopup = (props) => {
|
|
|
155
157
|
sideBar: false,
|
|
156
158
|
};
|
|
157
159
|
const modules = adaptable.getAgGridRegisteredModules();
|
|
158
|
-
const adaptableInitFn = Object.getPrototypeOf(adaptable).constructor.init;
|
|
159
|
-
const agGridConfig = {
|
|
160
|
-
gridOptions: agGridOptions,
|
|
161
|
-
modules: modules,
|
|
162
|
-
};
|
|
163
160
|
let transposedAdaptableApi;
|
|
164
161
|
(async () => {
|
|
165
|
-
transposedAdaptableApi = await
|
|
162
|
+
transposedAdaptableApi = await AdaptableAgGrid._initInternal({
|
|
163
|
+
variant: 'vanilla',
|
|
164
|
+
adaptableOptions,
|
|
165
|
+
gridOptions: agGridOptions,
|
|
166
|
+
modules,
|
|
167
|
+
});
|
|
166
168
|
adaptable.api.eventApi.on('ThemeChanged', (event) => {
|
|
167
169
|
transposedAdaptableApi.themeApi.loadTheme(typeof event.theme === 'object' ? event.theme.Name : event.theme);
|
|
168
170
|
});
|
|
@@ -172,7 +174,7 @@ export const TransposedPopup = (props) => {
|
|
|
172
174
|
transposedAdaptableApi.destroy();
|
|
173
175
|
}
|
|
174
176
|
};
|
|
175
|
-
}, [
|
|
177
|
+
}, [syntheticTransposedByColumnId]);
|
|
176
178
|
/**
|
|
177
179
|
* Need to get all data, manualy pivot the grid using the primary key.
|
|
178
180
|
*
|
|
@@ -184,8 +186,8 @@ export const TransposedPopup = (props) => {
|
|
|
184
186
|
React.createElement(Panel, null,
|
|
185
187
|
React.createElement(FormLayout, null,
|
|
186
188
|
React.createElement(FormRow, { label: "Elevated Column" },
|
|
187
|
-
React.createElement(ColumnSelector, { value:
|
|
188
|
-
|
|
189
|
+
React.createElement(ColumnSelector, { value: syntheticTransposedByColumnId, onChange: (colId) => {
|
|
190
|
+
setSyntheticTransposedByColumnId(colId);
|
|
189
191
|
} })))),
|
|
190
192
|
React.createElement(Flex, { height: "100%" },
|
|
191
193
|
React.createElement(Box, { id: "transposed-adaptable-container" }),
|
|
@@ -14,6 +14,8 @@ import { AggregationsSection, AggregationsSectionSummary, isAggregationsSectionV
|
|
|
14
14
|
import { SortSection, SortSectionSummary } from './sections/SortSection';
|
|
15
15
|
import { FilterSection, FilterSectionSummary, isColumnFiltersValid, } from './sections/FilterSection';
|
|
16
16
|
import { GridFilterSection, GridFilterSectionSummary, isGridFiltersValid, } from './sections/GridFilterSection';
|
|
17
|
+
import { areSummaryRowsValid, RowSummarySection } from './sections/RowSummarySection';
|
|
18
|
+
import { WEIGHTED_AVERAGE_AGGREATED_FUNCTION } from '../../../PredefinedConfig/Common/RowSummary';
|
|
17
19
|
export const LayoutWizard = (props) => {
|
|
18
20
|
var _a, _b;
|
|
19
21
|
const dispatch = useDispatch();
|
|
@@ -27,14 +29,16 @@ export const LayoutWizard = (props) => {
|
|
|
27
29
|
preparedLayout = cloneObject(initialLayout);
|
|
28
30
|
if (((_a = props === null || props === void 0 ? void 0 : props.popupParams) === null || _a === void 0 ? void 0 : _a.action) === 'Clone') {
|
|
29
31
|
preparedLayout.Name = '';
|
|
32
|
+
delete preparedLayout.Uuid;
|
|
30
33
|
}
|
|
31
34
|
}
|
|
32
35
|
else {
|
|
33
36
|
preparedLayout = ObjectFactory.CreateEmptyLayout({ Name: '' });
|
|
34
37
|
}
|
|
35
38
|
if (preparedLayout.SuppressAggFuncInHeader === undefined) {
|
|
36
|
-
preparedLayout.SuppressAggFuncInHeader =
|
|
37
|
-
|
|
39
|
+
preparedLayout.SuppressAggFuncInHeader = !!adaptable.agGridAdapter
|
|
40
|
+
.getAgGridApi()
|
|
41
|
+
.getGridOption('suppressAggFuncInHeader');
|
|
38
42
|
}
|
|
39
43
|
return preparedLayout;
|
|
40
44
|
});
|
|
@@ -101,6 +105,7 @@ export const LayoutWizard = (props) => {
|
|
|
101
105
|
{
|
|
102
106
|
title: 'Row Groups',
|
|
103
107
|
isVisible: () => layoutSupportedFeatures.RowGroupedColumns,
|
|
108
|
+
isValid: areSummaryRowsValid,
|
|
104
109
|
details: 'Configure Row Grouping',
|
|
105
110
|
renderSummary: () => React.createElement(RowGroupingSectionSummary, null),
|
|
106
111
|
render: () => (React.createElement(Box, { p: 2, style: { height: '100%' } },
|
|
@@ -113,7 +118,37 @@ export const LayoutWizard = (props) => {
|
|
|
113
118
|
renderSummary: () => React.createElement(AggregationsSectionSummary, null),
|
|
114
119
|
isValid: (data) => isAggregationsSectionValid(data),
|
|
115
120
|
render: () => (React.createElement(Box, { p: 2, style: { height: '100%' } },
|
|
116
|
-
React.createElement(AggregationsSection, { onChange:
|
|
121
|
+
React.createElement(AggregationsSection, { onChange: (layout) => {
|
|
122
|
+
let newLayout = cloneObject(layout);
|
|
123
|
+
// if we do not have an weighted avg col, we need to clear the row summary if one exists
|
|
124
|
+
if (newLayout.RowSummaries) {
|
|
125
|
+
newLayout.RowSummaries = newLayout.RowSummaries.map((rowSummary) => {
|
|
126
|
+
return Object.assign(Object.assign({}, rowSummary), { ColumnsMap: Object.entries(rowSummary.ColumnsMap).reduce((acc, [columnId, aggFunc]) => {
|
|
127
|
+
if (
|
|
128
|
+
// see if it is weighted avg
|
|
129
|
+
aggFunc === WEIGHTED_AVERAGE_AGGREATED_FUNCTION &&
|
|
130
|
+
// see if we have a weight in the agg columns
|
|
131
|
+
newLayout.AggregationColumns[columnId] &&
|
|
132
|
+
(typeof newLayout.AggregationColumns[columnId] !== 'object' ||
|
|
133
|
+
newLayout.AggregationColumns[columnId].weightColumnId)) {
|
|
134
|
+
// need to remove the row summary
|
|
135
|
+
return acc;
|
|
136
|
+
}
|
|
137
|
+
acc[columnId] = aggFunc;
|
|
138
|
+
return acc;
|
|
139
|
+
}, {}) });
|
|
140
|
+
});
|
|
141
|
+
}
|
|
142
|
+
setLayout(newLayout);
|
|
143
|
+
} }))),
|
|
144
|
+
},
|
|
145
|
+
{
|
|
146
|
+
title: 'Row Summaries',
|
|
147
|
+
details: 'Configure Row Summaries',
|
|
148
|
+
renderSummary: () => React.createElement(RowGroupingSectionSummary, null),
|
|
149
|
+
isVisible: () => layoutSupportedFeatures.RowSummaries,
|
|
150
|
+
render: () => (React.createElement(Box, { p: 2, style: { height: '100%' } },
|
|
151
|
+
React.createElement(RowSummarySection, { onChange: setLayout }))),
|
|
117
152
|
},
|
|
118
153
|
{
|
|
119
154
|
title: 'Sort',
|
|
@@ -170,7 +170,7 @@ const ColumnRow = (props) => {
|
|
|
170
170
|
React.createElement(FormRow, { label: "ColumnId" },
|
|
171
171
|
React.createElement(Tag, null, props.column.columnId)),
|
|
172
172
|
React.createElement(FormRow, { label: "Header" },
|
|
173
|
-
React.createElement(Input, { "data-name": "column-header", className: "ab-Layout-Wizard__ColumnRow__Input",
|
|
173
|
+
React.createElement(Input, { "data-name": "column-header", className: "ab-Layout-Wizard__ColumnRow__Input", placeholder: "Custom name (optional)", onChange: () => {
|
|
174
174
|
props.onColumnNameChange(props.column.columnId, event.target.value);
|
|
175
175
|
}, value: customHeader })),
|
|
176
176
|
React.createElement(FormRow, { label: "Width" },
|
|
@@ -52,7 +52,7 @@ export const FilterSection = (props) => {
|
|
|
52
52
|
React.createElement(Tabs.Content, null,
|
|
53
53
|
React.createElement(FormLayout, { mb: 2 },
|
|
54
54
|
React.createElement(FormRow, { label: "Add Column Filter" },
|
|
55
|
-
React.createElement(ColumnSelector, { filterColumn: (column) => column.filterable && !layoutFilters.some((f) => f.ColumnId === column.columnId), placeholder: "Select
|
|
55
|
+
React.createElement(ColumnSelector, { filterColumn: (column) => column.filterable && !layoutFilters.some((f) => f.ColumnId === column.columnId), placeholder: "Select Column to create Filter", onChange: (option) => {
|
|
56
56
|
props.onChange(Object.assign(Object.assign({}, layout), { ColumnFilters: [
|
|
57
57
|
...layoutFilters,
|
|
58
58
|
{
|
|
@@ -12,7 +12,23 @@ export const RowGroupingSectionSummary = () => {
|
|
|
12
12
|
var _a;
|
|
13
13
|
const adaptable = useAdaptable();
|
|
14
14
|
const { data: layout } = useOnePageAdaptableWizardContext();
|
|
15
|
-
return (React.createElement(Box, null, ((_a = layout.
|
|
15
|
+
return (React.createElement(Box, null, ((_a = layout.RowSummaries) === null || _a === void 0 ? void 0 : _a.length) ? (layout === null || layout === void 0 ? void 0 : layout.RowSummaries.map((rowSummary, index) => {
|
|
16
|
+
var _a;
|
|
17
|
+
const columns = Object.entries((_a = rowSummary.ColumnsMap) !== null && _a !== void 0 ? _a : {})
|
|
18
|
+
.map(([columnId, expression]) => {
|
|
19
|
+
if (columnId === 'Source' || columnId === 'Uuid') {
|
|
20
|
+
return '';
|
|
21
|
+
}
|
|
22
|
+
return `${expression}(${adaptable.api.columnApi.getFriendlyNameForColumnId(columnId)})`;
|
|
23
|
+
})
|
|
24
|
+
.filter(Boolean)
|
|
25
|
+
.join(', ');
|
|
26
|
+
return (React.createElement(Box, { mb: 2 },
|
|
27
|
+
React.createElement(Tag, { key: index },
|
|
28
|
+
rowSummary.Position,
|
|
29
|
+
" ",
|
|
30
|
+
columns)));
|
|
31
|
+
})) : (React.createElement(Tag, null, "No Row Summaries"))));
|
|
16
32
|
};
|
|
17
33
|
export const RowGroupingSection = (props) => {
|
|
18
34
|
var _a, _b, _c;
|
|
@@ -27,7 +43,7 @@ export const RowGroupingSection = (props) => {
|
|
|
27
43
|
props.onChange(Object.assign(Object.assign({}, layout), { RowGroupedColumns: columnIds }));
|
|
28
44
|
};
|
|
29
45
|
return (React.createElement(Tabs, { style: { height: '100%' } },
|
|
30
|
-
React.createElement(Tabs.Tab, null, "
|
|
46
|
+
React.createElement(Tabs.Tab, null, "Group Rows"),
|
|
31
47
|
((_a = layout.ExpandedRowGroupValues) === null || _a === void 0 ? void 0 : _a.length) && React.createElement(Tabs.Tab, null, "Expanded Rows"),
|
|
32
48
|
React.createElement(Tabs.Content, null,
|
|
33
49
|
React.createElement(ValueSelector, { showFilterInput: true, showSelectedOnlyPosition: "top", filter: columnFilter, toIdentifier: (option) => `${option.columnId}`, toLabel: (option) => { var _a; return (_a = option.friendlyName) !== null && _a !== void 0 ? _a : option.columnId; }, options: sortedGroupableColumns, value: (_b = layout.RowGroupedColumns) !== null && _b !== void 0 ? _b : [], allowReorder: true, xSelectedLabel: () => {
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { Layout } from '../../../../../types';
|
|
3
|
+
export declare const areSummaryRowsValid: (layout: Layout) => true | string;
|
|
4
|
+
export declare const RowGroupingSectionSummary: React.FunctionComponent;
|
|
5
|
+
interface RowSummarySectionProps {
|
|
6
|
+
onChange: (data: Layout) => void;
|
|
7
|
+
}
|
|
8
|
+
export declare const RowSummarySection: React.FunctionComponent<RowSummarySectionProps>;
|
|
9
|
+
export {};
|
|
@@ -0,0 +1,174 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { Box, Flex } from 'rebass';
|
|
3
|
+
import FormLayout, { FormRow } from '../../../../components/FormLayout';
|
|
4
|
+
import Panel from '../../../../components/Panel';
|
|
5
|
+
import { Select } from '../../../../components/Select';
|
|
6
|
+
import SimpleButton from '../../../../components/SimpleButton';
|
|
7
|
+
import { Tabs } from '../../../../components/Tabs';
|
|
8
|
+
import { Tag } from '../../../../components/Tag';
|
|
9
|
+
import { summarySupportedExpressions, WEIGHTED_AVERAGE_AGGREATED_FUNCTION, } from '../../../../PredefinedConfig/Common/RowSummary';
|
|
10
|
+
import { mapColumnDataTypeToExpressionFunctionType } from '../../../../Utilities/adaptableQlUtils';
|
|
11
|
+
import { LayoutModuleId } from '../../../../Utilities/Constants/ModuleConstants';
|
|
12
|
+
import { sortWithOrderArray } from '../../../../Utilities/sortWithOrder';
|
|
13
|
+
import { useAdaptable } from '../../../AdaptableContext';
|
|
14
|
+
import { ValueSelector } from '../../../Components/ValueSelector';
|
|
15
|
+
import { useOnePageAdaptableWizardContext } from '../../../Wizard/OnePageAdaptableWizard';
|
|
16
|
+
import { columnFilter } from './Utilities';
|
|
17
|
+
export const areSummaryRowsValid = (layout) => {
|
|
18
|
+
var _a;
|
|
19
|
+
if (!layout.RowSummaries)
|
|
20
|
+
return true;
|
|
21
|
+
let valid = true;
|
|
22
|
+
(_a = layout.RowSummaries) === null || _a === void 0 ? void 0 : _a.find((rowSummary) => {
|
|
23
|
+
var _a;
|
|
24
|
+
for (const [_, fn] of Object.entries((_a = rowSummary.ColumnsMap) !== null && _a !== void 0 ? _a : {})) {
|
|
25
|
+
if (!fn) {
|
|
26
|
+
valid = 'All row summary columns must have an aggregation function.';
|
|
27
|
+
return true;
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
});
|
|
31
|
+
return valid;
|
|
32
|
+
};
|
|
33
|
+
const getAvailableExpressionsForColumnType = (columnType, availableScalarExpressions) => {
|
|
34
|
+
const inputType = mapColumnDataTypeToExpressionFunctionType(columnType);
|
|
35
|
+
// Object.entries(availableScalarExpressions ?? {})
|
|
36
|
+
return summarySupportedExpressions
|
|
37
|
+
.filter((expression) => availableScalarExpressions[expression])
|
|
38
|
+
.map((expression) => {
|
|
39
|
+
var _a, _b;
|
|
40
|
+
const expressionDef = availableScalarExpressions[expression];
|
|
41
|
+
let firstArg = null;
|
|
42
|
+
if (Array.isArray((_a = expressionDef === null || expressionDef === void 0 ? void 0 : expressionDef.inputs) === null || _a === void 0 ? void 0 : _a[0])) {
|
|
43
|
+
// @ts-ignore
|
|
44
|
+
firstArg = (_b = expressionDef.inputs.find((input) => input.includes(inputType))) === null || _b === void 0 ? void 0 : _b[0];
|
|
45
|
+
}
|
|
46
|
+
else {
|
|
47
|
+
firstArg = expressionDef.inputs[0];
|
|
48
|
+
}
|
|
49
|
+
if (inputType === firstArg) {
|
|
50
|
+
return expression;
|
|
51
|
+
}
|
|
52
|
+
else {
|
|
53
|
+
return null;
|
|
54
|
+
}
|
|
55
|
+
})
|
|
56
|
+
.filter(Boolean);
|
|
57
|
+
};
|
|
58
|
+
export const RowGroupingSectionSummary = () => {
|
|
59
|
+
var _a;
|
|
60
|
+
const adaptable = useAdaptable();
|
|
61
|
+
const { data: layout } = useOnePageAdaptableWizardContext();
|
|
62
|
+
return (React.createElement(Box, null, ((_a = layout.RowGroupedColumns) === null || _a === void 0 ? void 0 : _a.length) ? (layout.RowGroupedColumns.map((columnId) => (React.createElement(Tag, { mr: 1, key: columnId }, adaptable.api.columnApi.getFriendlyNameForColumnId(columnId))))) : (React.createElement(Tag, null, "No Row Grouping"))));
|
|
63
|
+
};
|
|
64
|
+
const RowSummaryEditor = ({ rowSummary, onChange, availableScalarExpressions, onDelete, }) => {
|
|
65
|
+
const { data: layout } = useOnePageAdaptableWizardContext();
|
|
66
|
+
const adaptable = useAdaptable();
|
|
67
|
+
const columns = React.useMemo(() => {
|
|
68
|
+
const colIds = adaptable.api.columnApi
|
|
69
|
+
.getColumns()
|
|
70
|
+
.filter((column) => {
|
|
71
|
+
var _a, _b;
|
|
72
|
+
if (!['Number', 'String', 'Date'].includes(column.dataType))
|
|
73
|
+
return false;
|
|
74
|
+
return (_b = (_a = layout.Columns) === null || _a === void 0 ? void 0 : _a.includes) === null || _b === void 0 ? void 0 : _b.call(_a, column.columnId);
|
|
75
|
+
})
|
|
76
|
+
.map((c) => c.columnId);
|
|
77
|
+
return sortWithOrderArray(colIds, Object.keys(rowSummary.ColumnsMap), {
|
|
78
|
+
sortUnorderedItems: false,
|
|
79
|
+
}).map((colId) => adaptable.api.columnApi.getColumnWithColumnId(colId));
|
|
80
|
+
}, [rowSummary.ColumnsMap]);
|
|
81
|
+
return (React.createElement(Panel, { header: React.createElement(Flex, { style: { width: '100%' } },
|
|
82
|
+
React.createElement(Flex, { flex: 1, alignItems: "center" }, "Row Summary"),
|
|
83
|
+
React.createElement(SimpleButton, { icon: "delete", onClick: () => {
|
|
84
|
+
onDelete();
|
|
85
|
+
} })), p: 2 },
|
|
86
|
+
React.createElement(FormLayout, null,
|
|
87
|
+
React.createElement(FormRow, { label: "Position" },
|
|
88
|
+
React.createElement(Select, { options: [
|
|
89
|
+
{
|
|
90
|
+
label: 'Top',
|
|
91
|
+
value: 'Top',
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
label: 'Bottom',
|
|
95
|
+
value: 'Bottom',
|
|
96
|
+
},
|
|
97
|
+
], value: rowSummary.Position, onChange: (position) => {
|
|
98
|
+
onChange(Object.assign(Object.assign({}, rowSummary), { Position: position }));
|
|
99
|
+
} }))),
|
|
100
|
+
React.createElement(Flex, { flexDirection: 'column', mt: 2, mb: 1 },
|
|
101
|
+
React.createElement(Flex, { alignItems: "center", flex: 1, mb: 2 }, "Column Aggregations"),
|
|
102
|
+
React.createElement(Panel, { bodyProps: { maxHeight: '100%' }, style: { height: 360 } },
|
|
103
|
+
React.createElement(ValueSelector, { style: { maxHeight: '100%' }, showFilterInput: true, filter: columnFilter, toIdentifier: (column) => column.columnId, toLabel: (option) => { var _a; return (_a = option.friendlyName) !== null && _a !== void 0 ? _a : option.columnId; }, options: columns, xSelectedLabel: () => {
|
|
104
|
+
return 'Active Aggregations:';
|
|
105
|
+
}, toListLabel: (column) => {
|
|
106
|
+
var _a, _b, _c;
|
|
107
|
+
const label = (_a = column.friendlyName) !== null && _a !== void 0 ? _a : column.columnId;
|
|
108
|
+
if (!(column.columnId in ((_b = rowSummary.ColumnsMap) !== null && _b !== void 0 ? _b : {}))) {
|
|
109
|
+
return label;
|
|
110
|
+
}
|
|
111
|
+
const expressionOptions = getAvailableExpressionsForColumnType(column.dataType, availableScalarExpressions).map((expression) => ({
|
|
112
|
+
label: expression,
|
|
113
|
+
value: expression,
|
|
114
|
+
}));
|
|
115
|
+
// check out if this layout has a aggregation with wighted column
|
|
116
|
+
const aggregation = (_c = layout.AggregationColumns) === null || _c === void 0 ? void 0 : _c[column.columnId];
|
|
117
|
+
if (aggregation && typeof aggregation === 'object' && aggregation.weightedColumnId) {
|
|
118
|
+
expressionOptions.push({
|
|
119
|
+
label: 'WEIGHTERD_AVG',
|
|
120
|
+
value: WEIGHTED_AVERAGE_AGGREATED_FUNCTION,
|
|
121
|
+
});
|
|
122
|
+
}
|
|
123
|
+
const expression = rowSummary.ColumnsMap[column.columnId];
|
|
124
|
+
return (React.createElement(Flex, null,
|
|
125
|
+
React.createElement(Flex, { mr: 2, alignItems: 'center' }, label),
|
|
126
|
+
React.createElement(Select, { value: expression, options: expressionOptions, onChange: (expression) => {
|
|
127
|
+
onChange(Object.assign(Object.assign({}, rowSummary), { ColumnsMap: Object.assign(Object.assign({}, rowSummary.ColumnsMap), { [column.columnId]: expression }) }));
|
|
128
|
+
} })));
|
|
129
|
+
}, value: Object.keys(rowSummary.ColumnsMap), onChange: (colIds) => {
|
|
130
|
+
const newColumnsMap = {};
|
|
131
|
+
colIds.forEach((colId) => {
|
|
132
|
+
var _a;
|
|
133
|
+
newColumnsMap[colId] = (_a = rowSummary.ColumnsMap[colId]) !== null && _a !== void 0 ? _a : null;
|
|
134
|
+
});
|
|
135
|
+
onChange(Object.assign(Object.assign({}, rowSummary), { ColumnsMap: newColumnsMap }));
|
|
136
|
+
} })))));
|
|
137
|
+
};
|
|
138
|
+
export const RowSummarySection = (props) => {
|
|
139
|
+
var _a;
|
|
140
|
+
const adaptable = useAdaptable();
|
|
141
|
+
const { data: layout } = useOnePageAdaptableWizardContext();
|
|
142
|
+
const availableScalarExpressions = React.useMemo(() => {
|
|
143
|
+
return adaptable.api.internalApi
|
|
144
|
+
.getQueryLanguageService()
|
|
145
|
+
.getModuleExpressionFunctionsMap(LayoutModuleId).aggregatedScalarFunctions;
|
|
146
|
+
}, []);
|
|
147
|
+
return (React.createElement(Tabs, { style: { height: '100%' } },
|
|
148
|
+
React.createElement(Tabs.Tab, null, "Row Summaries"),
|
|
149
|
+
React.createElement(Tabs.Content, null,
|
|
150
|
+
React.createElement("div", null,
|
|
151
|
+
React.createElement(Flex, { mb: 1 },
|
|
152
|
+
React.createElement(Flex, { flex: 1 }),
|
|
153
|
+
React.createElement(SimpleButton, { onClick: () => {
|
|
154
|
+
var _a;
|
|
155
|
+
props.onChange(Object.assign(Object.assign({}, layout), { RowSummaries: [
|
|
156
|
+
...((_a = layout.RowSummaries) !== null && _a !== void 0 ? _a : []),
|
|
157
|
+
{
|
|
158
|
+
Position: 'Top',
|
|
159
|
+
ColumnsMap: {},
|
|
160
|
+
},
|
|
161
|
+
] }));
|
|
162
|
+
}, icon: "plus" }, "Add Row Summary")),
|
|
163
|
+
((_a = layout.RowSummaries) !== null && _a !== void 0 ? _a : []).map((rowSummary, index) => {
|
|
164
|
+
return (React.createElement(RowSummaryEditor, { key: index, onDelete: () => {
|
|
165
|
+
const newSummaries = [...layout.RowSummaries];
|
|
166
|
+
newSummaries.splice(index, 1);
|
|
167
|
+
props.onChange(Object.assign(Object.assign({}, layout), { RowSummaries: newSummaries }));
|
|
168
|
+
}, availableScalarExpressions: availableScalarExpressions, rowSummary: rowSummary, onChange: (rowSummary) => {
|
|
169
|
+
const newSummaries = [...layout.RowSummaries];
|
|
170
|
+
newSummaries[index] = rowSummary;
|
|
171
|
+
props.onChange(Object.assign(Object.assign({}, layout), { RowSummaries: newSummaries }));
|
|
172
|
+
} }));
|
|
173
|
+
})))));
|
|
174
|
+
};
|