[PR #272] [MERGED] feat(plugin-data-speadsheet-new): CB-652 CB-654 add sort and copy fun… #1576

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

📋 Pull Request Information

Original PR: https://github.com/dbeaver/cloudbeaver/pull/272
Author: @devnaumov
Created: 1/26/2021
Status: Merged
Merged: 1/27/2021
Merged by: @Wroud

Base: develHead: feat/grid-sort-and-copy


📝 Commits (4)

  • 0be7230 feat(plugin-data-speadsheet-new): CB-652 CB-654 add sort and copy functionality in new grid
  • 1de5d76 feat(plugin-data-speadsheet-new): CB-652 CB-654 changed selection map structure
  • 3203b2a feat(plugin-data-speadsheet-new): CB-652 CB-654 changed column.idx to column.key
  • 734896a feat(plugin-data-speadsheet-new): CB-652 CB-654 remove unnecessary set call

📊 Changes

15 files changed (+669 additions, -36 deletions)

View changed files

webapp/packages/core-utils/src/copyToClipboard.ts (+23 -0)
📝 webapp/packages/core-utils/src/index.ts (+1 -0)
webapp/packages/plugin-data-spreadsheet-new/src/DataGrid/CellFormatter/CellFormatter.tsx (+17 -0)
webapp/packages/plugin-data-spreadsheet-new/src/DataGrid/CellRenderer/CellRenderer.tsx (+41 -0)
webapp/packages/plugin-data-spreadsheet-new/src/DataGrid/DataGridContext.ts (+18 -0)
📝 webapp/packages/plugin-data-spreadsheet-new/src/DataGrid/DataGridLoader.tsx (+5 -5)
webapp/packages/plugin-data-spreadsheet-new/src/DataGrid/DataGridSelection/DataGridSelectionContext.ts (+17 -0)
webapp/packages/plugin-data-spreadsheet-new/src/DataGrid/DataGridSelection/useGridSelectionContext.tsx (+164 -0)
webapp/packages/plugin-data-spreadsheet-new/src/DataGrid/DataGridSorting/DataGridSortingContext.ts (+21 -0)
webapp/packages/plugin-data-spreadsheet-new/src/DataGrid/DataGridSorting/useGridSortingContext.tsx (+56 -0)
📝 webapp/packages/plugin-data-spreadsheet-new/src/DataGrid/DataGridTable.tsx (+52 -23)
webapp/packages/plugin-data-spreadsheet-new/src/DataGrid/DataGridTableContainer.tsx (+95 -0)
webapp/packages/plugin-data-spreadsheet-new/src/DataGrid/RowRenderer/RowRenderer.tsx (+18 -0)
webapp/packages/plugin-data-spreadsheet-new/src/DataGrid/TableColumnHeader/TableColumnHeader-new.tsx (+137 -0)
📝 webapp/packages/plugin-data-spreadsheet-new/src/SpreadsheetGrid.tsx (+4 -8)

📄 Description

…ctionality in new grid


🔄 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/272 **Author:** [@devnaumov](https://github.com/devnaumov) **Created:** 1/26/2021 **Status:** ✅ Merged **Merged:** 1/27/2021 **Merged by:** [@Wroud](https://github.com/Wroud) **Base:** `devel` ← **Head:** `feat/grid-sort-and-copy` --- ### 📝 Commits (4) - [`0be7230`](https://github.com/dbeaver/cloudbeaver/commit/0be7230578d61a6e34c90d0ddc54d8e8f226e31d) feat(plugin-data-speadsheet-new): CB-652 CB-654 add sort and copy functionality in new grid - [`1de5d76`](https://github.com/dbeaver/cloudbeaver/commit/1de5d76da80de162c12b48819240e59b8e3740d3) feat(plugin-data-speadsheet-new): CB-652 CB-654 changed selection map structure - [`3203b2a`](https://github.com/dbeaver/cloudbeaver/commit/3203b2ad2af78204ec708eacc58ac183efc44b90) feat(plugin-data-speadsheet-new): CB-652 CB-654 changed column.idx to column.key - [`734896a`](https://github.com/dbeaver/cloudbeaver/commit/734896a17bbe1dfae4ce22b2def650cd813c9da0) feat(plugin-data-speadsheet-new): CB-652 CB-654 remove unnecessary set call ### 📊 Changes **15 files changed** (+669 additions, -36 deletions) <details> <summary>View changed files</summary> ➕ `webapp/packages/core-utils/src/copyToClipboard.ts` (+23 -0) 📝 `webapp/packages/core-utils/src/index.ts` (+1 -0) ➕ `webapp/packages/plugin-data-spreadsheet-new/src/DataGrid/CellFormatter/CellFormatter.tsx` (+17 -0) ➕ `webapp/packages/plugin-data-spreadsheet-new/src/DataGrid/CellRenderer/CellRenderer.tsx` (+41 -0) ➕ `webapp/packages/plugin-data-spreadsheet-new/src/DataGrid/DataGridContext.ts` (+18 -0) 📝 `webapp/packages/plugin-data-spreadsheet-new/src/DataGrid/DataGridLoader.tsx` (+5 -5) ➕ `webapp/packages/plugin-data-spreadsheet-new/src/DataGrid/DataGridSelection/DataGridSelectionContext.ts` (+17 -0) ➕ `webapp/packages/plugin-data-spreadsheet-new/src/DataGrid/DataGridSelection/useGridSelectionContext.tsx` (+164 -0) ➕ `webapp/packages/plugin-data-spreadsheet-new/src/DataGrid/DataGridSorting/DataGridSortingContext.ts` (+21 -0) ➕ `webapp/packages/plugin-data-spreadsheet-new/src/DataGrid/DataGridSorting/useGridSortingContext.tsx` (+56 -0) 📝 `webapp/packages/plugin-data-spreadsheet-new/src/DataGrid/DataGridTable.tsx` (+52 -23) ➕ `webapp/packages/plugin-data-spreadsheet-new/src/DataGrid/DataGridTableContainer.tsx` (+95 -0) ➕ `webapp/packages/plugin-data-spreadsheet-new/src/DataGrid/RowRenderer/RowRenderer.tsx` (+18 -0) ➕ `webapp/packages/plugin-data-spreadsheet-new/src/DataGrid/TableColumnHeader/TableColumnHeader-new.tsx` (+137 -0) 📝 `webapp/packages/plugin-data-spreadsheet-new/src/SpreadsheetGrid.tsx` (+4 -8) </details> ### 📄 Description …ctionality in new grid --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-07 21:04:40 +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#1576
No description provided.