[PR #365] [MERGED] feat(plugin-data-viewer): CB-665 sort by column from context menu #1647

Closed
opened 2026-03-07 21:05:00 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/dbeaver/cloudbeaver/pull/365
Author: @devnaumov
Created: 5/17/2021
Status: Merged
Merged: 5/19/2021
Merged by: @Wroud

Base: develHead: feat/context-sort


📝 Commits (4)

  • c39fae5 feat(plugin-data-viewer): CB-665 sort by column from context menu
  • e58716f Merge branch 'devel' into feat/context-sort
  • 50fa85e feat(plugin-data-viewer): CB-665 types improvements
  • b196797 feat(plugin-data-viewer): CB-665 create DataGridContextMenuSortingService

📊 Changes

23 files changed (+349 additions, -155 deletions)

View changed files

webapp/packages/core-app/public/icons/sorting.png (+0 -0)
📝 webapp/packages/core-app/src/TopNavBar/ConnectionSchemaManager/ConnectionSelector/ConnectionSelectorController.ts (+3 -3)
📝 webapp/packages/core-dialogs/src/Menu/ContextMenu/ContextMenu.ts (+3 -1)
📝 webapp/packages/core-dialogs/src/Menu/ContextMenu/IContextMenuItem.ts (+3 -0)
📝 webapp/packages/core-dialogs/src/Menu/MenuPanel/menuPanelStyles.ts (+2 -0)
📝 webapp/packages/core-dialogs/src/Menu/models/MenuOptionsStore.ts (+1 -1)
📝 webapp/packages/plugin-data-spreadsheet-new/src/DataGrid/DataGridContextMenu/DataGridContextMenuService.ts (+6 -2)
webapp/packages/plugin-data-spreadsheet-new/src/DataGrid/DataGridContextMenu/DataGridContextMenuSortingService.ts (+129 -0)
webapp/packages/plugin-data-spreadsheet-new/src/DataGrid/DataGridSorting/DataGridSortingContext.ts (+0 -21)
webapp/packages/plugin-data-spreadsheet-new/src/DataGrid/DataGridSorting/useGridSortingContext.tsx (+0 -56)
📝 webapp/packages/plugin-data-spreadsheet-new/src/DataGrid/DataGridTable.tsx (+34 -39)
📝 webapp/packages/plugin-data-spreadsheet-new/src/DataGrid/Formatters/Menu/CellMenu.tsx (+1 -1)
📝 webapp/packages/plugin-data-spreadsheet-new/src/DataGrid/TableColumnHeader/TableColumnHeader.tsx (+16 -26)
📝 webapp/packages/plugin-data-spreadsheet-new/src/SpreadsheetBootstrap.ts (+3 -3)
📝 webapp/packages/plugin-data-spreadsheet-new/src/locales/en.ts (+2 -0)
📝 webapp/packages/plugin-data-spreadsheet-new/src/locales/ru.ts (+2 -0)
📝 webapp/packages/plugin-data-spreadsheet-new/src/manifest.ts (+3 -1)
📝 webapp/packages/plugin-data-viewer/src/DatabaseDataModel/Actions/IDatabaseDataAction.ts (+3 -0)
webapp/packages/plugin-data-viewer/src/DatabaseDataModel/Actions/IDatabaseDataSortAction.ts (+17 -0)
📝 webapp/packages/plugin-data-viewer/src/DatabaseDataModel/Actions/ResultSet/ResultSetDataAction.ts (+8 -0)

...and 3 more files

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/dbeaver/cloudbeaver/pull/365 **Author:** [@devnaumov](https://github.com/devnaumov) **Created:** 5/17/2021 **Status:** ✅ Merged **Merged:** 5/19/2021 **Merged by:** [@Wroud](https://github.com/Wroud) **Base:** `devel` ← **Head:** `feat/context-sort` --- ### 📝 Commits (4) - [`c39fae5`](https://github.com/dbeaver/cloudbeaver/commit/c39fae5b3b064d5ad4116a7899ab24bdf2e253c6) feat(plugin-data-viewer): CB-665 sort by column from context menu - [`e58716f`](https://github.com/dbeaver/cloudbeaver/commit/e58716f85454aac697ac8737ef145e397f685ac0) Merge branch 'devel' into feat/context-sort - [`50fa85e`](https://github.com/dbeaver/cloudbeaver/commit/50fa85ed1a67f6d23e46d6aba8af357f8545b6f8) feat(plugin-data-viewer): CB-665 types improvements - [`b196797`](https://github.com/dbeaver/cloudbeaver/commit/b19679786c9a70e722dae4e56dd7133a7064b268) feat(plugin-data-viewer): CB-665 create DataGridContextMenuSortingService ### 📊 Changes **23 files changed** (+349 additions, -155 deletions) <details> <summary>View changed files</summary> ➕ `webapp/packages/core-app/public/icons/sorting.png` (+0 -0) 📝 `webapp/packages/core-app/src/TopNavBar/ConnectionSchemaManager/ConnectionSelector/ConnectionSelectorController.ts` (+3 -3) 📝 `webapp/packages/core-dialogs/src/Menu/ContextMenu/ContextMenu.ts` (+3 -1) 📝 `webapp/packages/core-dialogs/src/Menu/ContextMenu/IContextMenuItem.ts` (+3 -0) 📝 `webapp/packages/core-dialogs/src/Menu/MenuPanel/menuPanelStyles.ts` (+2 -0) 📝 `webapp/packages/core-dialogs/src/Menu/models/MenuOptionsStore.ts` (+1 -1) 📝 `webapp/packages/plugin-data-spreadsheet-new/src/DataGrid/DataGridContextMenu/DataGridContextMenuService.ts` (+6 -2) ➕ `webapp/packages/plugin-data-spreadsheet-new/src/DataGrid/DataGridContextMenu/DataGridContextMenuSortingService.ts` (+129 -0) ➖ `webapp/packages/plugin-data-spreadsheet-new/src/DataGrid/DataGridSorting/DataGridSortingContext.ts` (+0 -21) ➖ `webapp/packages/plugin-data-spreadsheet-new/src/DataGrid/DataGridSorting/useGridSortingContext.tsx` (+0 -56) 📝 `webapp/packages/plugin-data-spreadsheet-new/src/DataGrid/DataGridTable.tsx` (+34 -39) 📝 `webapp/packages/plugin-data-spreadsheet-new/src/DataGrid/Formatters/Menu/CellMenu.tsx` (+1 -1) 📝 `webapp/packages/plugin-data-spreadsheet-new/src/DataGrid/TableColumnHeader/TableColumnHeader.tsx` (+16 -26) 📝 `webapp/packages/plugin-data-spreadsheet-new/src/SpreadsheetBootstrap.ts` (+3 -3) 📝 `webapp/packages/plugin-data-spreadsheet-new/src/locales/en.ts` (+2 -0) 📝 `webapp/packages/plugin-data-spreadsheet-new/src/locales/ru.ts` (+2 -0) 📝 `webapp/packages/plugin-data-spreadsheet-new/src/manifest.ts` (+3 -1) 📝 `webapp/packages/plugin-data-viewer/src/DatabaseDataModel/Actions/IDatabaseDataAction.ts` (+3 -0) ➕ `webapp/packages/plugin-data-viewer/src/DatabaseDataModel/Actions/IDatabaseDataSortAction.ts` (+17 -0) 📝 `webapp/packages/plugin-data-viewer/src/DatabaseDataModel/Actions/ResultSet/ResultSetDataAction.ts` (+8 -0) _...and 3 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-07 21:05:00 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/cloudbeaver#1647
No description provided.