[PR #317] [MERGED] Feat/gis #1610

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

📋 Pull Request Information

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

Base: develHead: feat/gis


📝 Commits (4)

  • 9e08b67 feat(plugin-gis-viewer): CB-664 add gis support to value panel
  • abac674 feat(plugin-gis-viewer): CB-664 remove unnecessary types
  • 103e45b feat(plugin-gis-viewer): CB-664 moved types to LeafletMap.tsx
  • a7bfe80 feat(plugin-gis-viewer): CB-664 for -> for of

📊 Changes

27 files changed (+834 additions, -51 deletions)

View changed files

📝 webapp/packages/core-blocks/src/Split/index.ts (+1 -0)
webapp/packages/core-blocks/src/Split/useSplit.tsx (+14 -0)
📝 webapp/packages/core-cli/configs/webpack.config.js (+57 -48)
📝 webapp/packages/core-cli/package.json (+2 -1)
📝 webapp/packages/plugin-data-spreadsheet-new/src/DataGrid/CellRenderer/CellRenderer.tsx (+5 -0)
📝 webapp/packages/plugin-data-spreadsheet-new/src/DataGrid/DataGridContext.ts (+2 -0)
webapp/packages/plugin-data-viewer/src/DatabaseDataModel/Actions/IDatabaseDataAction.ts (+16 -0)
webapp/packages/plugin-data-viewer/src/DatabaseDataModel/Actions/ResultSet/ResultSetDataAction.ts (+29 -0)
📝 webapp/packages/plugin-data-viewer/src/TableViewer/ValuePanel/ValuePanel.tsx (+22 -1)
📝 webapp/packages/plugin-data-viewer/src/ValuePanelPresentation/TextValue/TextValuePresentationBootstrap.ts (+2 -1)
📝 webapp/packages/plugin-data-viewer/src/index.ts (+2 -0)
webapp/packages/plugin-gis-viewer/.gitignore (+17 -0)
webapp/packages/plugin-gis-viewer/package.json (+48 -0)
webapp/packages/plugin-gis-viewer/src/GISValuePresentation.tsx (+82 -0)
webapp/packages/plugin-gis-viewer/src/GISViewerBootstrap.ts (+57 -0)
webapp/packages/plugin-gis-viewer/src/IDatabaseDataGISAction.ts (+18 -0)
webapp/packages/plugin-gis-viewer/src/LeafletMap.tsx (+215 -0)
webapp/packages/plugin-gis-viewer/src/LocaleService.ts (+32 -0)
webapp/packages/plugin-gis-viewer/src/ResultSetGISAction.ts (+72 -0)
webapp/packages/plugin-gis-viewer/src/index.ts (+5 -0)

...and 7 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/317 **Author:** [@devnaumov](https://github.com/devnaumov) **Created:** 3/26/2021 **Status:** ✅ Merged **Merged:** 3/26/2021 **Merged by:** [@Wroud](https://github.com/Wroud) **Base:** `devel` ← **Head:** `feat/gis` --- ### 📝 Commits (4) - [`9e08b67`](https://github.com/dbeaver/cloudbeaver/commit/9e08b67d866df3e1bec11c4acba8d91995c652fb) feat(plugin-gis-viewer): CB-664 add gis support to value panel - [`abac674`](https://github.com/dbeaver/cloudbeaver/commit/abac674d94a92199ab2157f172f9b8e4b474426f) feat(plugin-gis-viewer): CB-664 remove unnecessary types - [`103e45b`](https://github.com/dbeaver/cloudbeaver/commit/103e45b44b5dd4219d9dc74eca8fd4e40c351caa) feat(plugin-gis-viewer): CB-664 moved types to LeafletMap.tsx - [`a7bfe80`](https://github.com/dbeaver/cloudbeaver/commit/a7bfe808b7d316b8b89f2375c8faa43ac8d79ac3) feat(plugin-gis-viewer): CB-664 for -> for of ### 📊 Changes **27 files changed** (+834 additions, -51 deletions) <details> <summary>View changed files</summary> 📝 `webapp/packages/core-blocks/src/Split/index.ts` (+1 -0) ➕ `webapp/packages/core-blocks/src/Split/useSplit.tsx` (+14 -0) 📝 `webapp/packages/core-cli/configs/webpack.config.js` (+57 -48) 📝 `webapp/packages/core-cli/package.json` (+2 -1) 📝 `webapp/packages/plugin-data-spreadsheet-new/src/DataGrid/CellRenderer/CellRenderer.tsx` (+5 -0) 📝 `webapp/packages/plugin-data-spreadsheet-new/src/DataGrid/DataGridContext.ts` (+2 -0) ➕ `webapp/packages/plugin-data-viewer/src/DatabaseDataModel/Actions/IDatabaseDataAction.ts` (+16 -0) ➕ `webapp/packages/plugin-data-viewer/src/DatabaseDataModel/Actions/ResultSet/ResultSetDataAction.ts` (+29 -0) 📝 `webapp/packages/plugin-data-viewer/src/TableViewer/ValuePanel/ValuePanel.tsx` (+22 -1) 📝 `webapp/packages/plugin-data-viewer/src/ValuePanelPresentation/TextValue/TextValuePresentationBootstrap.ts` (+2 -1) 📝 `webapp/packages/plugin-data-viewer/src/index.ts` (+2 -0) ➕ `webapp/packages/plugin-gis-viewer/.gitignore` (+17 -0) ➕ `webapp/packages/plugin-gis-viewer/package.json` (+48 -0) ➕ `webapp/packages/plugin-gis-viewer/src/GISValuePresentation.tsx` (+82 -0) ➕ `webapp/packages/plugin-gis-viewer/src/GISViewerBootstrap.ts` (+57 -0) ➕ `webapp/packages/plugin-gis-viewer/src/IDatabaseDataGISAction.ts` (+18 -0) ➕ `webapp/packages/plugin-gis-viewer/src/LeafletMap.tsx` (+215 -0) ➕ `webapp/packages/plugin-gis-viewer/src/LocaleService.ts` (+32 -0) ➕ `webapp/packages/plugin-gis-viewer/src/ResultSetGISAction.ts` (+72 -0) ➕ `webapp/packages/plugin-gis-viewer/src/index.ts` (+5 -0) _...and 7 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:04:50 +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#1610
No description provided.