@adaptabletools/adaptable-cjs 18.0.0-canary.9 → 18.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/base.css +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 +5 -6
- package/src/AdaptableOptions/ActionColumnOptions.d.ts +3 -2
- package/src/AdaptableOptions/AdaptableFrameworkComponent.d.ts +3 -0
- package/src/AdaptableOptions/AdaptableOptions.d.ts +14 -13
- 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} +28 -28
- package/src/Api/CommentApi.d.ts +20 -22
- package/src/Api/ConfigApi.d.ts +12 -7
- 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 +2 -0
- package/src/Api/Events/GridDataChanged.d.ts +1 -1
- package/src/Api/FlashingCellApi.d.ts +2 -2
- package/src/Api/GridApi.d.ts +32 -4
- 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 +48 -16
- package/src/Api/Implementation/ColumnFilterApiImpl.js +7 -7
- package/src/Api/Implementation/ColumnMenuApiImpl.d.ts +8 -0
- package/src/Api/Implementation/ColumnMenuApiImpl.js +16 -0
- package/src/Api/Implementation/ColumnScopeApiImpl.d.ts +33 -0
- package/src/Api/Implementation/{ScopeApiImpl.js → ColumnScopeApiImpl.js} +48 -15
- package/src/Api/Implementation/CommentsApiImpl.d.ts +4 -5
- package/src/Api/Implementation/CommentsApiImpl.js +6 -6
- package/src/Api/Implementation/ConfigApiImpl.d.ts +4 -3
- package/src/Api/Implementation/ConfigApiImpl.js +25 -25
- package/src/Api/Implementation/ContextMenuApiImpl.d.ts +7 -0
- package/src/Api/Implementation/ContextMenuApiImpl.js +13 -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 -2
- package/src/Api/Implementation/GridApiImpl.js +52 -11
- package/src/Api/Implementation/LayoutApiImpl.d.ts +2 -7
- package/src/Api/Implementation/LayoutApiImpl.js +6 -15
- package/src/Api/Implementation/{NotesApiImpl.d.ts → NoteApiImpl.d.ts} +8 -8
- package/src/Api/Implementation/{NotesApiImpl.js → NoteApiImpl.js} +14 -14
- 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 +10 -16
- 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 +8 -1
- package/src/Api/Internal/CommentsInternalApi.d.ts +1 -1
- package/src/Api/Internal/CommentsInternalApi.js +3 -2
- 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 +37 -30
- package/src/Api/Internal/FreeTextColumnInternalApi.js +4 -3
- 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/{NotesInternalApi.js → NoteInternalApi.js} +6 -5
- 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 +9 -12
- package/src/Api/NoteApi.d.ts +48 -0
- package/src/Api/NoteApi.js +2 -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/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} +1 -1
- package/src/PredefinedConfig/Common/ColumnScope.js +2 -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 +126 -0
- package/src/PredefinedConfig/Common/RowScope.d.ts +17 -0
- package/src/PredefinedConfig/Common/RowScope.js +2 -0
- package/src/PredefinedConfig/Common/RowSummary.d.ts +15 -1
- package/src/PredefinedConfig/Common/RowSummary.js +17 -1
- package/src/PredefinedConfig/Common/TransposeConfig.d.ts +30 -0
- package/src/PredefinedConfig/Common/TransposeConfig.js +2 -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 +2 -2
- package/src/PredefinedConfig/{NotesState.d.ts → NoteState.d.ts} +4 -4
- package/src/PredefinedConfig/NoteState.js +2 -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 +5 -4
- package/src/Redux/ActionsReducers/CommentsRedux.d.ts +0 -4
- package/src/Redux/ActionsReducers/CommentsRedux.js +1 -39
- package/src/Redux/ActionsReducers/LayoutRedux.js +12 -10
- package/src/Redux/ActionsReducers/NoteRedux.d.ts +38 -0
- package/src/Redux/ActionsReducers/{NotesRedux.js → NoteRedux.js} +31 -31
- package/src/Redux/ActionsReducers/PopupRedux.d.ts +5 -13
- package/src/Redux/ActionsReducers/PopupRedux.js +1 -22
- package/src/Redux/ActionsReducers/SystemRedux.d.ts +11 -5
- package/src/Redux/ActionsReducers/SystemRedux.js +14 -11
- package/src/Redux/Store/AdaptableStore.js +39 -32
- 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 +9 -9
- package/src/Strategy/CellSummaryModule.js +96 -107
- 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 +75 -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 +10 -20
- 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 +56 -42
- 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 -10
- package/src/Strategy/LayoutModule.js +50 -150
- package/src/Strategy/NoteModule.d.ts +10 -0
- package/src/Strategy/NoteModule.js +60 -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 +3 -2
- package/src/Utilities/Constants/ModuleConstants.d.ts +6 -6
- package/src/Utilities/Constants/ModuleConstants.js +7 -7
- package/src/Utilities/Defaults/DefaultSettingsPanel.js +2 -2
- package/src/Utilities/ExpressionFunctions/aggregatedScalarExpressionFunctions.d.ts +2 -2
- package/src/Utilities/ExpressionFunctions/aggregatedScalarExpressionFunctions.js +144 -7
- package/src/Utilities/ExpressionFunctions/observableExpressionFunctions.js +3 -3
- package/src/Utilities/ExpressionFunctions/scalarExpressionFunctions.d.ts +1 -1
- package/src/Utilities/ExpressionFunctions/scalarExpressionFunctions.js +15 -0
- package/src/Utilities/Helpers/AdaptableHelper.d.ts +3 -1
- package/src/Utilities/Helpers/AdaptableHelper.js +21 -1
- 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 +1 -0
- package/src/Utilities/Services/AggregatedScalarLiveValue.js +12 -10
- package/src/Utilities/Services/CellPopupService.js +4 -4
- package/src/Utilities/Services/Interface/IReportService.d.ts +1 -4
- package/src/Utilities/Services/LicenseService/index.js +1 -198
- package/src/Utilities/Services/ModuleService.js +6 -2
- package/src/Utilities/Services/QueryLanguageService.js +2 -2
- 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 +160 -0
- package/src/Utilities/Services/ValidationService.js +2 -2
- package/src/Utilities/adaptableQlUtils.d.ts +2 -0
- package/src/Utilities/adaptableQlUtils.js +18 -0
- package/src/Utilities/license/decode.js +1 -70
- package/src/Utilities/license/hashing.js +1 -47
- 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 +46 -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 +6 -4
- 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 +20 -19
- 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 +181 -0
- package/src/View/License/LicenseWatermark.js +1 -66
- package/src/View/Note/NotePopup.d.ts +2 -0
- package/src/View/{Notes/NotesPopup.js → Note/NotePopup.js} +16 -11
- 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 +11 -16
- package/src/agGrid/AdaptableAgGrid.js +230 -250
- package/src/agGrid/AgGridAdapter.d.ts +4 -2
- package/src/agGrid/AgGridAdapter.js +12 -0
- package/src/agGrid/AgGridColumnAdapter.d.ts +1 -3
- package/src/agGrid/AgGridColumnAdapter.js +42 -71
- 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 +124 -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 +50 -0
- package/src/agGrid/weightedAverage.d.ts +0 -2
- package/src/agGrid/weightedAverage.js +1 -56
- package/src/components/Accordion.d.ts +7 -0
- package/src/components/Accordion.js +41 -0
- 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 +3 -17
- package/src/components/Input/index.d.ts +1 -2
- 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 +7 -0
- package/src/components/icons/copy.d.ts +3 -0
- package/src/components/icons/copy.js +7 -0
- package/src/components/icons/csv.d.ts +3 -0
- package/src/components/icons/csv.js +7 -0
- package/src/components/icons/data-object.d.ts +3 -0
- package/src/components/icons/data-object.js +7 -0
- package/src/components/icons/excel.d.ts +3 -0
- package/src/components/icons/excel.js +8 -0
- package/src/components/icons/expand-all.d.ts +3 -0
- package/src/components/icons/expand-all.js +7 -0
- package/src/components/icons/filter-off.d.ts +3 -0
- package/src/components/icons/filter-off.js +7 -0
- package/src/components/icons/grid-info.d.ts +3 -0
- package/src/components/icons/grid-info.js +7 -0
- package/src/components/icons/index.js +22 -0
- package/src/components/icons/note.js +2 -2
- package/src/components/icons/select-all.d.ts +3 -0
- package/src/components/icons/select-all.js +7 -0
- package/src/components/icons/select-fwd.d.ts +3 -0
- package/src/components/icons/select-fwd.js +7 -0
- package/src/components/icons/select-off.d.ts +3 -0
- package/src/components/icons/select-off.js +7 -0
- package/src/env.js +2 -2
- package/src/metamodel/adaptable.metamodel.d.ts +222 -116
- package/src/metamodel/adaptable.metamodel.js +1 -9429
- 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 +2 -2
- package/src/parser/src/types.js +1 -2
- package/src/types.d.ts +32 -25
- package/tsconfig.cjs.tsbuildinfo +1 -1
- package/src/AdaptableOptions/MenuOptions.d.ts +0 -234
- package/src/AdaptableOptions/MenuOptions.js +0 -99
- package/src/Api/Events/CommentsChangedInfo.d.ts +0 -5
- package/src/Api/Implementation/ScopeApiImpl.d.ts +0 -33
- package/src/Api/Internal/NotesInternalApi.d.ts +0 -4
- package/src/Api/NotesApi.d.ts +0 -48
- package/src/PredefinedConfig/CellAddress.d.ts +0 -13
- package/src/PredefinedConfig/CellAddress.js +0 -5
- package/src/Redux/ActionsReducers/NotesRedux.d.ts +0 -38
- package/src/Strategy/CommentsModule.d.ts +0 -17
- package/src/Strategy/CommentsModule.js +0 -86
- package/src/Strategy/NotesModule.d.ts +0 -10
- package/src/Strategy/NotesModule.js +0 -61
- package/src/Utilities/Services/SummaryService.d.ts +0 -19
- package/src/Utilities/Services/SummaryService.js +0 -33
- 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
package/src/Api/ConfigApi.d.ts
CHANGED
|
@@ -15,18 +15,23 @@ import { AdaptablePersistentState, AdaptableState } from '../PredefinedConfig/Ad
|
|
|
15
15
|
import { FreeTextColumnState } from '../PredefinedConfig/FreeTextColumnState';
|
|
16
16
|
import { ToolPanelState } from '../PredefinedConfig/ToolPanelState';
|
|
17
17
|
import { AdaptableStateKey, AdaptableModule } from '../PredefinedConfig/Common/Types';
|
|
18
|
-
import { AdaptableSearchState, AdaptableSortState, NamedQueryState, PredefinedConfig, ScheduleState } from '../types';
|
|
19
|
-
import { NotesState } from '../PredefinedConfig/NotesState';
|
|
18
|
+
import { AdaptableSearchState, AdaptableSortState, NamedQueryState, PredefinedConfig, ScheduleState, NoteState } from '../types';
|
|
20
19
|
/**
|
|
21
20
|
* Range of functions to access Predefined Config and Adaptable State
|
|
22
21
|
*/
|
|
23
22
|
export interface ConfigApi {
|
|
24
23
|
/**
|
|
25
|
-
* Changes the key used for persisting the AdaptableState into localStorage
|
|
26
|
-
* @param adaptableStateKey key for persisting the AdaptableState into localStorage
|
|
24
|
+
* Changes the key used for persisting the AdaptableState into localStorage. Optionally provides a predefinedConfig to load.
|
|
25
|
+
* @param adaptableStateKey - key for persisting the AdaptableState into localStorage
|
|
26
|
+
* @param config.predefinedConfig - new predefinedConfig to load
|
|
27
|
+
* @param config.flushCurrentState - whether to flush(persist) the current state before loading the new predefinedConfig
|
|
28
|
+
* @param config.progressIndicatorLabel - label for the progress indicator
|
|
29
|
+
*
|
|
27
30
|
*/
|
|
28
31
|
setAdaptableStateKey(adaptableStateKey: string, config?: {
|
|
29
|
-
predefinedConfig
|
|
32
|
+
predefinedConfig?: PredefinedConfig;
|
|
33
|
+
flushCurrentState?: boolean;
|
|
34
|
+
progressIndicatorLabel?: string;
|
|
30
35
|
}): Promise<void>;
|
|
31
36
|
/**
|
|
32
37
|
* Returns current Predefined Config
|
|
@@ -105,10 +110,10 @@ export interface ConfigApi {
|
|
|
105
110
|
*/
|
|
106
111
|
getCalculatedColumnState(returnJson?: boolean): CalculatedColumnState;
|
|
107
112
|
/**
|
|
108
|
-
* Returns
|
|
113
|
+
* Returns Note section of Adaptable State
|
|
109
114
|
* @param returnJson return as JSON rather than object
|
|
110
115
|
*/
|
|
111
|
-
|
|
116
|
+
getNoteState(returnJson?: boolean): NoteState;
|
|
112
117
|
/**
|
|
113
118
|
* Returns Custom Sort section of Adaptable State
|
|
114
119
|
* @param returnJson return as JSON rather than object
|
package/src/Api/EventApi.d.ts
CHANGED
|
@@ -1,6 +1,4 @@
|
|
|
1
|
-
import { ActionRowSubmittedInfo, AdaptableReadyInfo, AdaptableStateChangedInfo, AdaptableStateReloadedInfo, AlertFiredInfo, CellChangedInfo, CellSelectionChangedInfo, ChartChangedInfo, ColumnFilterAppliedInfo, CustomToolbarConfiguredInfo, DashboardChangedInfo, DataImportedInfo, DataSetSelectedInfo, Fdc3MessageInfo, FlashingCellDisplayedInfo, GridDataChangedInfo, GridFilterAppliedInfo, GridSortedInfo, LayoutChangedInfo, LiveDataChangedInfo, RowSelectionChangedInfo, ScheduleTriggeredInfo, SystemStatusMessageDisplayedInfo, TeamSharingEntityChangedInfo, ThemeChangedInfo, ThemeEditedInfo } from '../types';
|
|
2
|
-
import { CalculatedColumnChangedInfo } from './Events/CalculatedColumnChanged';
|
|
3
|
-
import { CommentsChangedInfo } from './Events/CommentsChangedInfo';
|
|
1
|
+
import { ActionRowSubmittedInfo, AdaptableReadyInfo, AdaptableStateChangedInfo, AdaptableStateReloadedInfo, AlertFiredInfo, CalculatedColumnChangedInfo, CellChangedInfo, CellSelectionChangedInfo, ChartChangedInfo, ColumnFilterAppliedInfo, CommentChangedInfo, CustomToolbarConfiguredInfo, DashboardChangedInfo, DataImportedInfo, DataSetSelectedInfo, Fdc3MessageInfo, FlashingCellDisplayedInfo, GridDataChangedInfo, GridFilterAppliedInfo, GridSortedInfo, LayoutChangedInfo, LiveDataChangedInfo, RowSelectionChangedInfo, ScheduleTriggeredInfo, SystemStatusMessageDisplayedInfo, TeamSharingEntityChangedInfo, ThemeChangedInfo, ThemeEditedInfo } from '../types';
|
|
4
2
|
/**
|
|
5
3
|
* Responsible for publishing the many Events that AdapTable fires
|
|
6
4
|
*/
|
|
@@ -297,17 +295,17 @@ export interface EventApi {
|
|
|
297
295
|
*/
|
|
298
296
|
off(eventName: 'ChartChanged', callback: (chartChangedInfo: ChartChangedInfo) => void): void;
|
|
299
297
|
/**
|
|
300
|
-
* Event fired when
|
|
301
|
-
* @param eventName
|
|
298
|
+
* Event fired when a Comment is Changed
|
|
299
|
+
* @param eventName CommentChanged
|
|
302
300
|
* @param callback
|
|
303
301
|
*/
|
|
304
|
-
on(eventName: '
|
|
302
|
+
on(eventName: 'CommentChanged', callback: (commentChangedInfo: CommentChangedInfo) => void): () => void;
|
|
305
303
|
/**
|
|
306
|
-
* Unsubscribe from
|
|
304
|
+
* Unsubscribe from CommentChanged
|
|
307
305
|
* @param eventName
|
|
308
306
|
* @param callback
|
|
309
307
|
*/
|
|
310
|
-
off(eventName: '
|
|
308
|
+
off(eventName: 'CommentChanged', callback: (commentChangedInfo: CommentChangedInfo) => void): void;
|
|
311
309
|
/**
|
|
312
310
|
* Fired when Adaptable is up and running - has no arguments.
|
|
313
311
|
* @param eventName - AdaptableReady
|
|
@@ -352,6 +350,6 @@ export interface EventApi {
|
|
|
352
350
|
emitSync(eventName: 'DashboardChanged', data?: any): any[];
|
|
353
351
|
emitSync(eventName: 'FlashingCellDisplayed', data?: any): any[];
|
|
354
352
|
emitSync(eventName: 'AdaptableDestroy'): any[];
|
|
355
|
-
emit(eventName: 'ActionRowSubmitted' | 'AdaptableReady' | 'AlertFired' | 'AdaptableStateChanged' | 'AdaptableStateReloaded' | 'CellChanged' | 'ChartChanged' | 'CheckboxColumnClicked' | 'CustomToolbarConfigured' | 'DashboardChanged' | 'DataImported' | 'DataSetSelected' | 'ColumnFilterApplied' | 'Fdc3Message' | 'GridDataChanged' | 'GridSorted' | 'LayoutChanged' | 'CalculatedColumnChanged' | 'LiveDataChanged' | 'ScheduleTriggered' | 'SearchChanged' | 'CellSelectionChanged' | 'RowSelectionChanged' | 'SystemStatusMessageDisplayed' | 'TeamSharingEntityChanged' | 'ThemeChanged' | 'ThemeEdited' | 'GridFilterApplied' | '
|
|
353
|
+
emit(eventName: 'ActionRowSubmitted' | 'AdaptableReady' | 'AlertFired' | 'AdaptableStateChanged' | 'AdaptableStateReloaded' | 'CellChanged' | 'ChartChanged' | 'CheckboxColumnClicked' | 'CustomToolbarConfigured' | 'DashboardChanged' | 'DataImported' | 'DataSetSelected' | 'ColumnFilterApplied' | 'Fdc3Message' | 'GridDataChanged' | 'GridSorted' | 'LayoutChanged' | 'CalculatedColumnChanged' | 'LiveDataChanged' | 'ScheduleTriggered' | 'SearchChanged' | 'CellSelectionChanged' | 'RowSelectionChanged' | 'SystemStatusMessageDisplayed' | 'TeamSharingEntityChanged' | 'ThemeChanged' | 'ThemeEdited' | 'GridFilterApplied' | 'CommentChanged', data?: any): Promise<any>;
|
|
356
354
|
destroy(): void;
|
|
357
355
|
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { CommentThread } from '../../types';
|
|
2
|
+
import { BaseEventInfo } from './BaseEventInfo';
|
|
3
|
+
/**
|
|
4
|
+
* Event fired when a Comment has changed
|
|
5
|
+
*/
|
|
6
|
+
export interface CommentChangedInfo extends BaseEventInfo {
|
|
7
|
+
/**
|
|
8
|
+
* All current Comment Threads
|
|
9
|
+
*/
|
|
10
|
+
commentThreads: CommentThread[];
|
|
11
|
+
}
|
|
@@ -13,7 +13,7 @@ export type GridDataChangeTrigger = 'Add' | 'Edit' | 'Delete' | 'Load';
|
|
|
13
13
|
*/
|
|
14
14
|
dataRows: TData[];
|
|
15
15
|
/**
|
|
16
|
-
* Trigger for row change:
|
|
16
|
+
* Trigger for row change: Load, Add, Edit, or Delete
|
|
17
17
|
*/
|
|
18
18
|
rowTrigger: GridDataChangeTrigger;
|
|
19
19
|
/**
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { AdaptableFlashingCell } from '../PredefinedConfig/Common/AdaptableFlashingCell';
|
|
2
2
|
import { AdaptablePredicateDef } from '../PredefinedConfig/Common/AdaptablePredicate';
|
|
3
|
-
import {
|
|
3
|
+
import { ColumnScope } from '../PredefinedConfig/Common/ColumnScope';
|
|
4
4
|
import { FlashingCellDefinition, FlashingCellState } from '../PredefinedConfig/FlashingCellState';
|
|
5
5
|
import { AdaptableObjectLookupCriteria } from '../PredefinedConfig/Common/AdaptableObject';
|
|
6
6
|
/**
|
|
@@ -83,7 +83,7 @@ export interface FlashingCellApi {
|
|
|
83
83
|
* Retrieves all Predicate Defs that match given Scope
|
|
84
84
|
* @param scope the Scope to check
|
|
85
85
|
*/
|
|
86
|
-
getFlashingCellPredicateDefsForScope(scope:
|
|
86
|
+
getFlashingCellPredicateDefsForScope(scope: ColumnScope): AdaptablePredicateDef[];
|
|
87
87
|
/**
|
|
88
88
|
* Clears all Cells and Rows which have been flashed (primarily used if duration is 'Always')
|
|
89
89
|
*/
|
package/src/Api/GridApi.d.ts
CHANGED
|
@@ -7,9 +7,10 @@ import { DataUpdateConfig } from '../PredefinedConfig/Common/DataUpdateConfig';
|
|
|
7
7
|
import { CellDataChangedInfo } from '../PredefinedConfig/Common/CellDataChangedInfo';
|
|
8
8
|
import { CellHighlightInfo } from '../PredefinedConfig/Common/CellHighlightInfo';
|
|
9
9
|
import { RowHighlightInfo } from '../PredefinedConfig/Common/RowHighlightInfo';
|
|
10
|
-
import { IRowNode, RowModelType } from '@ag-grid-community/core';
|
|
10
|
+
import { Column, IRowNode, RowModelType } from '@ag-grid-community/core';
|
|
11
11
|
import { GridCellRange } from '../PredefinedConfig/Selection/GridCellRange';
|
|
12
12
|
import { RowsHighlightInfo } from '../PredefinedConfig/Common/RowsHighlightInfo';
|
|
13
|
+
import { TransposeConfig } from '../PredefinedConfig/Common/TransposeConfig';
|
|
13
14
|
/**
|
|
14
15
|
* Provides access to important properites of AdapTable e.g. sorting, selected cells etc.
|
|
15
16
|
*/
|
|
@@ -26,6 +27,10 @@ export interface GridApi {
|
|
|
26
27
|
* Retrieves filtered data from the grid
|
|
27
28
|
*/
|
|
28
29
|
getFilteredData(): any[];
|
|
30
|
+
/**
|
|
31
|
+
* Retrieves visible data from the grid (filtered and sorted)
|
|
32
|
+
*/
|
|
33
|
+
getVisibleData(): any[];
|
|
29
34
|
/**
|
|
30
35
|
* @deprecated use `loadGridData()` instead
|
|
31
36
|
*/
|
|
@@ -354,18 +359,37 @@ export interface GridApi {
|
|
|
354
359
|
*/
|
|
355
360
|
isGridGroupable(): boolean;
|
|
356
361
|
/**
|
|
357
|
-
* Whether AdapTable instance offers
|
|
362
|
+
* Whether AdapTable instance offers row selection
|
|
363
|
+
*
|
|
364
|
+
* @deprecated use `isGridRowSelectable()` instead
|
|
358
365
|
*/
|
|
359
366
|
isGridSelectable(): boolean;
|
|
367
|
+
/**
|
|
368
|
+
* Whether AdapTable instance offers row selection
|
|
369
|
+
*/
|
|
370
|
+
isGridRowSelectable(): boolean;
|
|
371
|
+
/**
|
|
372
|
+
* Whether AdapTable instance offers cell range selection
|
|
373
|
+
*/
|
|
374
|
+
isGridRangeSelectable(): boolean;
|
|
360
375
|
/**
|
|
361
376
|
* Whether Grid is currently showing Row Groups
|
|
362
377
|
*/
|
|
363
378
|
isGridRowGrouped(): boolean;
|
|
379
|
+
/**
|
|
380
|
+
* Whether Grid is currently in Pivot Mode
|
|
381
|
+
*/
|
|
382
|
+
isGridInPivotMode(): boolean;
|
|
364
383
|
/**
|
|
365
384
|
* Whether given Row Node is a Row Group
|
|
366
385
|
* @param rowNode Node to check
|
|
367
386
|
*/
|
|
368
387
|
isGroupRowNode(rowNode: IRowNode): boolean;
|
|
388
|
+
/**
|
|
389
|
+
* Whether given Row Node is in a Smmary Row
|
|
390
|
+
* @param rowNode Node to check
|
|
391
|
+
*/
|
|
392
|
+
isSummaryNode(rowNode: IRowNode): boolean;
|
|
369
393
|
/**
|
|
370
394
|
* Whether Quick Filter is available in the Grid
|
|
371
395
|
*/
|
|
@@ -461,7 +485,7 @@ export interface GridApi {
|
|
|
461
485
|
*/
|
|
462
486
|
refreshRowNodes(rowNodes: IRowNode[]): void;
|
|
463
487
|
/**
|
|
464
|
-
* Forces a re-render of all
|
|
488
|
+
* Forces a re-render of all Group Rows (including aggregations)
|
|
465
489
|
*/
|
|
466
490
|
refreshGroupRowNodes(): void;
|
|
467
491
|
/**
|
|
@@ -519,5 +543,9 @@ export interface GridApi {
|
|
|
519
543
|
/**
|
|
520
544
|
* Opens a window with a transposed view of Grid
|
|
521
545
|
*/
|
|
522
|
-
showTransposedView(
|
|
546
|
+
showTransposedView(transposeConfig?: TransposeConfig): void;
|
|
547
|
+
/**
|
|
548
|
+
* Return all AG Grid columns
|
|
549
|
+
*/
|
|
550
|
+
getAllAgGridColumns(): Column<any>[];
|
|
523
551
|
}
|
|
@@ -13,11 +13,8 @@ class ActionColumnApiImpl extends ApiBase_1.ApiBase {
|
|
|
13
13
|
return (_a = this.getActionColumnOptions().actionColumns) !== null && _a !== void 0 ? _a : [];
|
|
14
14
|
}
|
|
15
15
|
getColDefsForActionColumns() {
|
|
16
|
-
const
|
|
17
|
-
|
|
18
|
-
suppressMenu: false,
|
|
19
|
-
suppressMovable: false,
|
|
20
|
-
};
|
|
16
|
+
const defaultSpecialColumnSettings = this.getGridApi().internalApi.deriveSpecialColumnSettingsFromAgGridDefaultColDef();
|
|
17
|
+
const defaultActionColumnSettings = Object.assign(Object.assign({}, defaultSpecialColumnSettings), { resizable: true, suppressMenu: false, suppressMovable: false });
|
|
21
18
|
return this.getActionColumnApi()
|
|
22
19
|
.getActionColumns()
|
|
23
20
|
.map((actionColumn) => {
|
|
@@ -29,7 +26,7 @@ class ActionColumnApiImpl extends ApiBase_1.ApiBase {
|
|
|
29
26
|
editable: false,
|
|
30
27
|
width: actionColumnSettings.width,
|
|
31
28
|
resizable: actionColumnSettings.resizable,
|
|
32
|
-
|
|
29
|
+
suppressHeaderMenuButton: actionColumnSettings.suppressMenu,
|
|
33
30
|
suppressMovable: actionColumnSettings.suppressMovable,
|
|
34
31
|
filter: false,
|
|
35
32
|
sortable: false,
|
|
@@ -12,17 +12,13 @@ class ActionRowApiImpl extends ApiBase_1.ApiBase {
|
|
|
12
12
|
getActionRowButtons() {
|
|
13
13
|
var actionRowButtons = this.getActionRowOptions().actionRowButtons;
|
|
14
14
|
if (typeof actionRowButtons === 'function') {
|
|
15
|
-
const context =
|
|
16
|
-
adaptableApi: this.getAdaptableApi(),
|
|
17
|
-
userName: this.getOptions().userName,
|
|
18
|
-
adaptableId: this.getOptions().adaptableId,
|
|
19
|
-
};
|
|
15
|
+
const context = this.getAdaptableApi().internalApi.buildBaseContext();
|
|
20
16
|
actionRowButtons = actionRowButtons(context);
|
|
21
17
|
}
|
|
22
18
|
return actionRowButtons !== null && actionRowButtons !== void 0 ? actionRowButtons : [];
|
|
23
19
|
}
|
|
24
20
|
displayEditActionRow(primaryKey) {
|
|
25
|
-
const rowNode = this.
|
|
21
|
+
const rowNode = this.getAdaptableApi().gridApi.getRowNodeForPrimaryKey(primaryKey);
|
|
26
22
|
if (!rowNode) {
|
|
27
23
|
this.logWarn(`Can NOT edit row: rowNode not found for primaryKey ${primaryKey}`);
|
|
28
24
|
}
|
|
@@ -44,7 +40,7 @@ class ActionRowApiImpl extends ApiBase_1.ApiBase {
|
|
|
44
40
|
}));
|
|
45
41
|
}
|
|
46
42
|
displayCloneActionRow(primaryKey) {
|
|
47
|
-
const rowNode = this.
|
|
43
|
+
const rowNode = this.getAdaptableApi().gridApi.getRowNodeForPrimaryKey(primaryKey);
|
|
48
44
|
if (!rowNode) {
|
|
49
45
|
this.logWarn(`Can NOT clone row: rowNode not found for primaryKey ${primaryKey}`);
|
|
50
46
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { IAdaptable } from '../../AdaptableInterfaces/IAdaptable';
|
|
2
2
|
import { AdaptableInternalApi } from '../Internal/AdaptableInternalApi';
|
|
3
|
-
import { AdaptableApi, DataImportApi, NamedQueryApi, OptionsApi, SettingsPanelApi } from '../../types';
|
|
3
|
+
import { AdaptableApi, ColumnMenuApi, ContextMenuApi, DataImportApi, NamedQueryApi, OptionsApi, SettingsPanelApi } from '../../types';
|
|
4
4
|
import { AlertApi } from '../AlertApi';
|
|
5
5
|
import { BulkUpdateApi } from '../BulkUpdateApi';
|
|
6
6
|
import { CalendarApi } from '../CalendarApi';
|
|
@@ -31,7 +31,7 @@ import { ExpressionApi } from '../ExpressionApi';
|
|
|
31
31
|
import { TeamSharingApi } from '../TeamSharingApi';
|
|
32
32
|
import { ColumnApi } from '../ColumnApi';
|
|
33
33
|
import { ApplicationApi } from '../ApplicationApi';
|
|
34
|
-
import {
|
|
34
|
+
import { ColumnScopeApi } from '../ColumnScopeApi';
|
|
35
35
|
import { PredicateApi } from '../PredicateApi';
|
|
36
36
|
import { DataChangeHistoryApi } from '../DataChangeHistoryApi';
|
|
37
37
|
import { FlashingCellApi } from '../FlashingCellApi';
|
|
@@ -40,7 +40,7 @@ import { StatusBarApi } from '../StatusBarApi';
|
|
|
40
40
|
import { StyledColumnApi } from '../StyledColumnApi';
|
|
41
41
|
import { ActionColumnApi } from '../ActionColumnApi';
|
|
42
42
|
import { ActionRowApi } from '../ActionRowApi';
|
|
43
|
-
import {
|
|
43
|
+
import { NoteApi } from '../NoteApi';
|
|
44
44
|
import { Fdc3Api } from '../Fdc3Api';
|
|
45
45
|
import { GridFilterApi } from '../GridFilterApi';
|
|
46
46
|
import { ColumnFilterApi } from '../ColumnFilterApi';
|
|
@@ -86,11 +86,13 @@ export declare class AdaptableApiImpl implements AdaptableApi {
|
|
|
86
86
|
styledColumnApi: StyledColumnApi;
|
|
87
87
|
toolPanelApi: ToolPanelApi;
|
|
88
88
|
teamSharingApi: TeamSharingApi;
|
|
89
|
-
|
|
89
|
+
columnScopeApi: ColumnScopeApi;
|
|
90
90
|
dataChangeHistoryApi: DataChangeHistoryApi;
|
|
91
91
|
chartingApi: ChartingApi;
|
|
92
92
|
statusBarApi: StatusBarApi;
|
|
93
|
-
|
|
93
|
+
noteApi: NoteApi;
|
|
94
|
+
columnMenuApi: ColumnMenuApi;
|
|
95
|
+
contextMenuApi: ContextMenuApi;
|
|
94
96
|
fdc3Api: Fdc3Api;
|
|
95
97
|
dataImportApi: DataImportApi;
|
|
96
98
|
gridFilterApi: GridFilterApi;
|
|
@@ -31,7 +31,7 @@ const ScheduleApiImpl_1 = require("./ScheduleApiImpl");
|
|
|
31
31
|
const TeamSharingApiImpl_1 = require("./TeamSharingApiImpl");
|
|
32
32
|
const ColumnApiImpl_1 = require("./ColumnApiImpl");
|
|
33
33
|
const ApplicationApiImpl_1 = require("./ApplicationApiImpl");
|
|
34
|
-
const
|
|
34
|
+
const ColumnScopeApiImpl_1 = require("./ColumnScopeApiImpl");
|
|
35
35
|
const DataChangeHistoryApiImpl_1 = require("./DataChangeHistoryApiImpl");
|
|
36
36
|
const ExpressionApiImpl_1 = require("./ExpressionApiImpl");
|
|
37
37
|
const FlashingCellApiImpl_1 = require("./FlashingCellApiImpl");
|
|
@@ -43,13 +43,15 @@ const StyledColumnApiImpl_1 = require("./StyledColumnApiImpl");
|
|
|
43
43
|
const CalendarApiImpl_1 = require("./CalendarApiImpl");
|
|
44
44
|
const EntitlementApiImpl_1 = require("./EntitlementApiImpl");
|
|
45
45
|
const OptionsApiImpl_1 = require("./OptionsApiImpl");
|
|
46
|
-
const
|
|
46
|
+
const NoteApiImpl_1 = require("./NoteApiImpl");
|
|
47
47
|
const Fdc3ApiImpl_1 = require("./Fdc3ApiImpl");
|
|
48
48
|
const DataImportApiImpl_1 = require("./DataImportApiImpl");
|
|
49
49
|
const GridFilterApiImpl_1 = require("./GridFilterApiImpl");
|
|
50
50
|
const NamedQueryApiImpl_1 = require("./NamedQueryApiImpl");
|
|
51
51
|
const ColumnFilterApiImpl_1 = require("./ColumnFilterApiImpl");
|
|
52
52
|
const CommentsApiImpl_1 = require("./CommentsApiImpl");
|
|
53
|
+
const ColumnMenuApiImpl_1 = require("./ColumnMenuApiImpl");
|
|
54
|
+
const ContextMenuApiImpl_1 = require("./ContextMenuApiImpl");
|
|
53
55
|
class AdaptableApiImpl {
|
|
54
56
|
constructor(adaptable) {
|
|
55
57
|
this.adaptable = adaptable;
|
|
@@ -68,6 +70,8 @@ class AdaptableApiImpl {
|
|
|
68
70
|
this.calculatedColumnApi = new CalculatedColumnApiImpl_1.CalculatedColumnApiImpl(adaptable);
|
|
69
71
|
this.cellSummaryApi = new CellSummaryApiImpl_1.CellSummaryApiImpl(adaptable);
|
|
70
72
|
this.columnApi = new ColumnApiImpl_1.ColumnApiImpl(adaptable);
|
|
73
|
+
this.columnMenuApi = new ColumnMenuApiImpl_1.ColumnMenuApiImpl(adaptable);
|
|
74
|
+
this.contextMenuApi = new ContextMenuApiImpl_1.ContextMenuApiImpl(adaptable);
|
|
71
75
|
this.configApi = new ConfigApiImpl_1.ConfigApiImpl(adaptable);
|
|
72
76
|
this.customSortApi = new CustomSortApiImpl_1.CustomSortApiImpl(adaptable);
|
|
73
77
|
this.dashboardApi = new DashboardApiImpl_1.DashboardApiImpl(adaptable);
|
|
@@ -93,11 +97,11 @@ class AdaptableApiImpl {
|
|
|
93
97
|
this.styledColumnApi = new StyledColumnApiImpl_1.StyledColumnApiImpl(adaptable);
|
|
94
98
|
this.toolPanelApi = new ToolPanelApiImpl_1.ToolPanelApiImpl(adaptable);
|
|
95
99
|
this.teamSharingApi = new TeamSharingApiImpl_1.TeamSharingApiImpl(adaptable);
|
|
96
|
-
this.
|
|
100
|
+
this.columnScopeApi = new ColumnScopeApiImpl_1.ColumnScopeApiImpl(adaptable);
|
|
97
101
|
this.dataChangeHistoryApi = new DataChangeHistoryApiImpl_1.DataChangeHistoryApiImpl(adaptable);
|
|
98
102
|
this.chartingApi = new ChartingApiImpl_1.ChartingApiImpl(adaptable);
|
|
99
103
|
this.statusBarApi = new StatusBarApiImpl_1.StatusBarApiImpl(adaptable);
|
|
100
|
-
this.
|
|
104
|
+
this.noteApi = new NoteApiImpl_1.NoteApiImpl(adaptable);
|
|
101
105
|
this.fdc3Api = new Fdc3ApiImpl_1.Fdc3ApiImpl(adaptable);
|
|
102
106
|
this.dataImportApi = new DataImportApiImpl_1.DataImportApiImpl(adaptable);
|
|
103
107
|
this.gridFilterApi = new GridFilterApiImpl_1.GridFilterApiImpl(adaptable);
|
|
@@ -147,7 +151,7 @@ class AdaptableApiImpl {
|
|
|
147
151
|
this.expressionApi = null;
|
|
148
152
|
this.quickSearchApi = null;
|
|
149
153
|
this.scheduleApi = null;
|
|
150
|
-
this.
|
|
154
|
+
this.columnScopeApi = null;
|
|
151
155
|
this.settingsPanelApi = null;
|
|
152
156
|
this.shortcutApi = null;
|
|
153
157
|
this.smartEditApi = null;
|
|
@@ -47,13 +47,8 @@ class AlertApiImpl extends ApiBase_1.ApiBase {
|
|
|
47
47
|
this.addUidToAdaptableObject(alertToShow);
|
|
48
48
|
this.dispatchAction(SystemRedux.SystemAlertAdd(alertToShow, this.getAlertOptions().maxAlertsInStore));
|
|
49
49
|
// 2. Publish the Alert Fired Event
|
|
50
|
-
const alertFiredInfo = {
|
|
51
|
-
|
|
52
|
-
alert: alertToShow,
|
|
53
|
-
userName: this.adaptable.api.optionsApi.getUserName(),
|
|
54
|
-
adaptableId: this.adaptable.api.optionsApi.getAdaptableId(),
|
|
55
|
-
};
|
|
56
|
-
const results = await this.adaptable.api.eventApi.emit('AlertFired', alertFiredInfo);
|
|
50
|
+
const alertFiredInfo = Object.assign(Object.assign({}, this.getAdaptableApi().internalApi.buildBaseContext()), { alert: alertToShow });
|
|
51
|
+
const results = await this.getAdaptableApi().eventApi.emit('AlertFired', alertFiredInfo);
|
|
57
52
|
const showPopup = results.reduce((endResult, aResult) => {
|
|
58
53
|
return endResult && aResult !== false;
|
|
59
54
|
}, true);
|
|
@@ -110,13 +105,13 @@ class AlertApiImpl extends ApiBase_1.ApiBase {
|
|
|
110
105
|
}
|
|
111
106
|
if (alertNode) {
|
|
112
107
|
if (alertProperties.HighlightRow) {
|
|
113
|
-
this.
|
|
108
|
+
this.getAdaptableApi().gridApi.refreshRowNodes([alertNode]);
|
|
114
109
|
setTimeout(() => {
|
|
115
110
|
this.dispatchAction(SystemRedux.SystemAlertRemoveRowHighlight(alertToShow));
|
|
116
111
|
}, this.adaptable.adaptableOptions.alertOptions.rowHighlightDuration);
|
|
117
112
|
}
|
|
118
113
|
if (alertProperties.HighlightCell) {
|
|
119
|
-
this.
|
|
114
|
+
this.getAdaptableApi().gridApi.refreshCells([alertNode], [alertToShow.cellDataChangedInfo.column.columnId]);
|
|
120
115
|
setTimeout(() => {
|
|
121
116
|
this.dispatchAction(SystemRedux.SystemAlertRemoveCellHighlight(alertToShow));
|
|
122
117
|
}, this.adaptable.adaptableOptions.alertOptions.cellHighlightDuration);
|
|
@@ -127,7 +122,7 @@ class AlertApiImpl extends ApiBase_1.ApiBase {
|
|
|
127
122
|
else if (alertProperties.HighlightRow &&
|
|
128
123
|
(0, AdaptableAlert_1.isAdaptableRowChangedAlert)(alertToShow) &&
|
|
129
124
|
((_b = alertToShow.gridDataChangedInfo) === null || _b === void 0 ? void 0 : _b.rowTrigger) === 'Add') {
|
|
130
|
-
this.
|
|
125
|
+
this.getAdaptableApi().gridApi.refreshRowNodes(alertToShow.gridDataChangedInfo.rowNodes);
|
|
131
126
|
setTimeout(() => {
|
|
132
127
|
this.dispatchAction(SystemRedux.SystemAlertRemoveRowHighlight(alertToShow));
|
|
133
128
|
}, this.adaptable.adaptableOptions.alertOptions.rowHighlightDuration);
|
|
@@ -171,7 +166,7 @@ class AlertApiImpl extends ApiBase_1.ApiBase {
|
|
|
171
166
|
}
|
|
172
167
|
evaluateAlertDefinitions(alertDefinitions) {
|
|
173
168
|
const filterScopeAllDefinitions = (alertDefinition) => {
|
|
174
|
-
if (this.getAdaptableApi().
|
|
169
|
+
if (this.getAdaptableApi().columnScopeApi.scopeIsAll(alertDefinition.Scope) &&
|
|
175
170
|
!this.getAdaptableApi().expressionApi.getAdaptableQueryExpression(alertDefinition.Rule)) {
|
|
176
171
|
// we don't support scope ALL without an expression
|
|
177
172
|
// the predicates for scope ALL do NOT make any sense for a programmatic evaluation
|
|
@@ -206,7 +201,7 @@ class AlertApiImpl extends ApiBase_1.ApiBase {
|
|
|
206
201
|
// if there is an Expression defined, extract only the columns from there (in that case the Scope would be 'All' anyway)
|
|
207
202
|
// columns referenced in rule expression
|
|
208
203
|
const ruleExpression = this.getAdaptableApi().expressionApi.getAdaptableQueryExpression(alertDefinition.Rule);
|
|
209
|
-
if (this.getAdaptableApi().
|
|
204
|
+
if (this.getAdaptableApi().columnScopeApi.scopeIsAll(alertDefinition.Scope) &&
|
|
210
205
|
StringExtensions_1.default.IsNotNullOrEmpty(ruleExpression)) {
|
|
211
206
|
// return only first referenced column (otherwise we would generate multiple alerts for the same row)
|
|
212
207
|
const queryColumns = this.getAdaptableApi()
|
|
@@ -217,7 +212,7 @@ class AlertApiImpl extends ApiBase_1.ApiBase {
|
|
|
217
212
|
else {
|
|
218
213
|
// otherwise return all columns for given scope
|
|
219
214
|
return this.getAdaptableApi()
|
|
220
|
-
.
|
|
215
|
+
.columnScopeApi.getColumnsForScope(alertDefinition.Scope)
|
|
221
216
|
.map((adaptableColumn) => adaptableColumn.columnId);
|
|
222
217
|
}
|
|
223
218
|
}
|
|
@@ -7,7 +7,7 @@ import { ModuleInfo } from '../../Strategy/Interface/IModule';
|
|
|
7
7
|
import { AdaptableOptions } from '../../AdaptableOptions/AdaptableOptions';
|
|
8
8
|
import { AdaptableApi } from '../AdaptableApi';
|
|
9
9
|
import { ExportOptions } from '../../AdaptableOptions/ExportOptions';
|
|
10
|
-
import { ActionColumnApi, ActionColumnOptions, ActionRowApi, ActionRowOptions, AlertApi, AlertOptions, ApplicationApi, BulkUpdateApi, CalculatedColumnApi, CalendarApi, CalendarOptions, CellSummaryApi, CellSummaryOptions, ChartingApi, ChartingOptions, ColumnApi, ColumnFilterApi, ColumnFilterOptions, ColumnOptions, ConfigApi, ContainerOptions, CustomSortApi, CustomSortOptions, DashboardApi, DashboardOptions, DataChangeHistoryApi, DataChangeHistoryOptions, DataSetApi, DataSetOptions, EditOptions, EntitlementApi, EntitlementOptions, EventApi, ExportApi, ExpressionApi, ExpressionOptions, Fdc3Api, Fdc3Options, FlashingCellApi, FlashingCellOptions, FormatColumnApi, FormatColumnOptions, FreeTextColumnApi, GridApi, GridFilterApi, GroupingOptions, LayoutApi, LayoutAssociatedObject, LayoutOptions,
|
|
10
|
+
import { ActionColumnApi, ActionColumnOptions, ActionRowApi, ActionRowOptions, AlertApi, AlertOptions, ApplicationApi, BulkUpdateApi, CalculatedColumnApi, CalendarApi, CalendarOptions, CellSummaryApi, CellSummaryOptions, ChartingApi, ChartingOptions, ColumnApi, ColumnFilterApi, ColumnFilterOptions, ColumnOptions, CommentOptions, ConfigApi, ContainerOptions, CustomSortApi, CustomSortOptions, DashboardApi, DashboardOptions, DataChangeHistoryApi, DataChangeHistoryOptions, DataSetApi, DataSetOptions, EditOptions, EntitlementApi, EntitlementOptions, EventApi, ExportApi, ExpressionApi, ExpressionOptions, Fdc3Api, Fdc3Options, FlashingCellApi, FlashingCellOptions, FormatColumnApi, FormatColumnOptions, FreeTextColumnApi, GridApi, GridFilterApi, GroupingOptions, LayoutApi, LayoutAssociatedObject, LayoutOptions, NamedQueryApi, NoteOptions, NotificationsOptions, PluginsApi, PlusMinusApi, PredicateApi, PredicateOptions, QuickSearchApi, QuickSearchOptions, ScheduleApi, ColumnScopeApi, SettingsPanelApi, SettingsPanelOptions, ShortcutApi, SmartEditApi, StateOptions, StatusBarApi, StyledColumnApi, SystemStatusApi, TeamSharingApi, TeamSharingOptions, ThemeApi, ToolPanelApi, ToolPanelOptions, UserInterfaceApi, UserInterfaceOptions, ColumnMenuOptions, ContextMenuOptions } from '../../types';
|
|
11
11
|
import { ModuleParams } from '../../View/Components/SharedProps/ModuleViewPopupProps';
|
|
12
12
|
export declare abstract class ApiBase {
|
|
13
13
|
protected adaptable: IAdaptable;
|
|
@@ -53,7 +53,8 @@ export declare abstract class ApiBase {
|
|
|
53
53
|
protected getActionColumnOptions(): ActionColumnOptions;
|
|
54
54
|
protected getActionRowOptions(): ActionRowOptions;
|
|
55
55
|
protected getColumnOptions(): ColumnOptions;
|
|
56
|
-
protected
|
|
56
|
+
protected getCommentOptions(): CommentOptions;
|
|
57
|
+
protected getNoteOptions(): NoteOptions;
|
|
57
58
|
protected getCustomSortOptions(): CustomSortOptions;
|
|
58
59
|
protected getDataSetOptions(): DataSetOptions;
|
|
59
60
|
protected getCalendarOptions(): CalendarOptions;
|
|
@@ -66,7 +67,8 @@ export declare abstract class ApiBase {
|
|
|
66
67
|
protected getExportOptions(): ExportOptions;
|
|
67
68
|
protected getGroupingOptions(): GroupingOptions;
|
|
68
69
|
protected getLayoutOptions(): LayoutOptions;
|
|
69
|
-
protected
|
|
70
|
+
protected getColumnMenuOptions(): ColumnMenuOptions;
|
|
71
|
+
protected getContextMenuOptions(): ContextMenuOptions;
|
|
70
72
|
protected getColumnFilterOptions(): ColumnFilterOptions;
|
|
71
73
|
protected getExpressionOptions(): ExpressionOptions;
|
|
72
74
|
protected getPredicateOptions(): PredicateOptions;
|
|
@@ -122,7 +124,7 @@ export declare abstract class ApiBase {
|
|
|
122
124
|
protected getStyledColumnApi(): StyledColumnApi;
|
|
123
125
|
protected getToolPanelApi(): ToolPanelApi;
|
|
124
126
|
protected getTeamSharingApi(): TeamSharingApi;
|
|
125
|
-
protected
|
|
127
|
+
protected getColumnScopeApi(): ColumnScopeApi;
|
|
126
128
|
protected getDataChangeHistoryApi(): DataChangeHistoryApi;
|
|
127
129
|
protected getChartingApi(): ChartingApi;
|
|
128
130
|
protected getStatusBarApi(): StatusBarApi;
|
|
@@ -105,7 +105,10 @@ class ApiBase {
|
|
|
105
105
|
getColumnOptions() {
|
|
106
106
|
return this.getOptions().columnOptions;
|
|
107
107
|
}
|
|
108
|
-
|
|
108
|
+
getCommentOptions() {
|
|
109
|
+
return this.getOptions().commentOptions;
|
|
110
|
+
}
|
|
111
|
+
getNoteOptions() {
|
|
109
112
|
return this.getOptions().noteOptions;
|
|
110
113
|
}
|
|
111
114
|
getCustomSortOptions() {
|
|
@@ -144,8 +147,11 @@ class ApiBase {
|
|
|
144
147
|
getLayoutOptions() {
|
|
145
148
|
return this.getOptions().layoutOptions;
|
|
146
149
|
}
|
|
147
|
-
|
|
148
|
-
return this.getOptions().
|
|
150
|
+
getColumnMenuOptions() {
|
|
151
|
+
return this.getOptions().columnMenuOptions;
|
|
152
|
+
}
|
|
153
|
+
getContextMenuOptions() {
|
|
154
|
+
return this.getOptions().contextMenuOptions;
|
|
149
155
|
}
|
|
150
156
|
getColumnFilterOptions() {
|
|
151
157
|
return this.getOptions().columnFilterOptions;
|
|
@@ -312,8 +318,8 @@ class ApiBase {
|
|
|
312
318
|
getTeamSharingApi() {
|
|
313
319
|
return this.getAdaptableApi().teamSharingApi;
|
|
314
320
|
}
|
|
315
|
-
|
|
316
|
-
return this.getAdaptableApi().
|
|
321
|
+
getColumnScopeApi() {
|
|
322
|
+
return this.getAdaptableApi().columnScopeApi;
|
|
317
323
|
}
|
|
318
324
|
getDataChangeHistoryApi() {
|
|
319
325
|
return this.getAdaptableApi().dataChangeHistoryApi;
|
|
@@ -45,12 +45,7 @@ class CalendarApiImpl extends ApiBase_1.ApiBase {
|
|
|
45
45
|
const holidays = this.getCalendarOptions().holidays;
|
|
46
46
|
if (holidays) {
|
|
47
47
|
if (typeof holidays === 'function') {
|
|
48
|
-
|
|
49
|
-
userName: this.getOptions().userName,
|
|
50
|
-
adaptableId: this.getOptions().adaptableId,
|
|
51
|
-
adaptableApi: this.getAdaptableApi(),
|
|
52
|
-
};
|
|
53
|
-
return holidays(baseContext);
|
|
48
|
+
return holidays(this.getAdaptableApi().internalApi.buildBaseContext());
|
|
54
49
|
}
|
|
55
50
|
else {
|
|
56
51
|
return holidays;
|
|
@@ -9,9 +9,4 @@ export declare class CellSummaryApiImpl extends ApiBase implements CellSummaryAp
|
|
|
9
9
|
setCurrentCellSummaryOperation(operation: SummaryOperation | string): void;
|
|
10
10
|
getCellSummaryOperationValue(operation: SummaryOperation | string): any;
|
|
11
11
|
getCurrentCellSummaryOperationValue(): any;
|
|
12
|
-
/**
|
|
13
|
-
* Weighted average is availabe only if the current layout has at leat a Weighted Average aggregation defined.
|
|
14
|
-
*/
|
|
15
|
-
private isWeightedAverageCellSummaryAvailable;
|
|
16
|
-
private getWeightedAverageCellSummaryOperation;
|
|
17
12
|
}
|
|
@@ -6,7 +6,6 @@ const ApiBase_1 = require("./ApiBase");
|
|
|
6
6
|
const ModuleConstants = tslib_1.__importStar(require("../../Utilities/Constants/ModuleConstants"));
|
|
7
7
|
const SystemRedux = tslib_1.__importStar(require("../../Redux/ActionsReducers/SystemRedux"));
|
|
8
8
|
const Enums_1 = require("../../PredefinedConfig/Common/Enums");
|
|
9
|
-
const weightedAverage_1 = require("../../agGrid/weightedAverage");
|
|
10
9
|
class CellSummaryApiImpl extends ApiBase_1.ApiBase {
|
|
11
10
|
openCellSummaryPopupSettingsPanel() {
|
|
12
11
|
this.showModulePopup(ModuleConstants.CellSummaryModuleId);
|
|
@@ -17,12 +16,6 @@ class CellSummaryApiImpl extends ApiBase_1.ApiBase {
|
|
|
17
16
|
getCellSummaryOperationDefinitions() {
|
|
18
17
|
var _a;
|
|
19
18
|
let cellSummaryOperations = (_a = this.getCellSummaryOptions().cellSummaryOperations) !== null && _a !== void 0 ? _a : [];
|
|
20
|
-
if (this.isWeightedAverageCellSummaryAvailable()) {
|
|
21
|
-
cellSummaryOperations = [
|
|
22
|
-
...cellSummaryOperations,
|
|
23
|
-
this.getWeightedAverageCellSummaryOperation(),
|
|
24
|
-
];
|
|
25
|
-
}
|
|
26
19
|
return cellSummaryOperations;
|
|
27
20
|
}
|
|
28
21
|
setCurrentCellSummaryOperation(operation) {
|
|
@@ -54,6 +47,8 @@ class CellSummaryApiImpl extends ApiBase_1.ApiBase {
|
|
|
54
47
|
return cellSummary.Std_Deviation;
|
|
55
48
|
case Enums_1.SummaryOperation.Only:
|
|
56
49
|
return cellSummary.Only;
|
|
50
|
+
case Enums_1.SummaryOperation.Weighted_Average:
|
|
51
|
+
return cellSummary.Weighted_Average;
|
|
57
52
|
default:
|
|
58
53
|
return cellSummary[operation];
|
|
59
54
|
}
|
|
@@ -65,21 +60,5 @@ class CellSummaryApiImpl extends ApiBase_1.ApiBase {
|
|
|
65
60
|
: cellSummaryOperation.operationName;
|
|
66
61
|
return this.getCellSummaryOperationValue(summaryOperation);
|
|
67
62
|
}
|
|
68
|
-
/**
|
|
69
|
-
* Weighted average is availabe only if the current layout has at leat a Weighted Average aggregation defined.
|
|
70
|
-
*/
|
|
71
|
-
isWeightedAverageCellSummaryAvailable() {
|
|
72
|
-
const currentLayout = this.getAdaptableApi().layoutApi.getCurrentLayout();
|
|
73
|
-
if (currentLayout.AggregationColumns == undefined) {
|
|
74
|
-
return false;
|
|
75
|
-
}
|
|
76
|
-
return Object.values(currentLayout.AggregationColumns).some((aggCol) => typeof aggCol === 'object' && aggCol.type === 'weightedAverage');
|
|
77
|
-
}
|
|
78
|
-
getWeightedAverageCellSummaryOperation() {
|
|
79
|
-
return {
|
|
80
|
-
operationName: 'Weighted Avg',
|
|
81
|
-
operationFunction: weightedAverage_1.cellSummaryWeightedAverage,
|
|
82
|
-
};
|
|
83
|
-
}
|
|
84
63
|
}
|
|
85
64
|
exports.CellSummaryApiImpl = CellSummaryApiImpl;
|
|
@@ -60,7 +60,7 @@ class ChartingApiImpl extends ApiBase_1.ApiBase {
|
|
|
60
60
|
}
|
|
61
61
|
showChartDefinitionOnce(chartDefinition, container) {
|
|
62
62
|
var _a;
|
|
63
|
-
const chartRef = this.
|
|
63
|
+
const chartRef = this.getAdaptableApi().chartingApi.getChartRef((_a = chartDefinition === null || chartDefinition === void 0 ? void 0 : chartDefinition.Model) === null || _a === void 0 ? void 0 : _a.chartId);
|
|
64
64
|
if (chartRef) {
|
|
65
65
|
return;
|
|
66
66
|
}
|
|
@@ -96,7 +96,7 @@ class ChartingApiImpl extends ApiBase_1.ApiBase {
|
|
|
96
96
|
}
|
|
97
97
|
getOpenChartContainer(chartDefinition) {
|
|
98
98
|
var _a, _b, _c;
|
|
99
|
-
const containerOptions = (_b = (_a = this.
|
|
99
|
+
const containerOptions = (_b = (_a = this.getAdaptableApi().optionsApi.getAdaptableOptions()) === null || _a === void 0 ? void 0 : _a.chartingOptions) === null || _b === void 0 ? void 0 : _b.chartContainers;
|
|
100
100
|
if (!containerOptions || !containerOptions.length) {
|
|
101
101
|
return null;
|
|
102
102
|
}
|
|
@@ -159,7 +159,7 @@ class ChartingApiImpl extends ApiBase_1.ApiBase {
|
|
|
159
159
|
],
|
|
160
160
|
} }),
|
|
161
161
|
};
|
|
162
|
-
this.
|
|
162
|
+
this.getAdaptableApi().alertApi.showAdaptableAlert(alert);
|
|
163
163
|
}
|
|
164
164
|
}
|
|
165
165
|
editExternalChartDefinition(chartDefinition) {
|