[PR #1073] [MERGED] CB-2030 offline mode #2211

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

📋 Pull Request Information

Original PR: https://github.com/dbeaver/cloudbeaver/pull/1073
Author: @Wroud
Created: 8/23/2022
Status: Merged
Merged: 8/25/2022
Merged by: @Wroud

Base: develHead: feat/CB-2030/offline-mode


📝 Commits (6)

  • 19df786 fix(plugin-blocks): CB-2030 pass persistent prop to snackbar
  • 862665a fix(plugin-codemirror): CB-2030 read-only state
  • 30380c7 feat(plugin-root): CB-2030 offline mode notification
  • 69121eb feat(plugin-sql-editor): CB-2030 add isReadonly for ISqlDataSource
  • 178bb7e fix(plugin-data-viewer): CB-2030 code editor props
  • 0339c2a fix(plugin-sql-editor-navigation-tab-resource): CB-2030 remove unused arg

📊 Changes

26 files changed (+158 additions, -17 deletions)

View changed files

📝 webapp/packages/core-blocks/src/Snackbars/ActionSnackbar.tsx (+1 -1)
📝 webapp/packages/core-blocks/src/Snackbars/ProcessSnackbar.tsx (+1 -1)
📝 webapp/packages/core-blocks/src/Snackbars/Snackbar.tsx (+3 -1)
📝 webapp/packages/core-blocks/src/Snackbars/SnackbarMarkups/SnackbarWrapper.tsx (+3 -3)
📝 webapp/packages/core-notifications/src/NotificationsItem/NotificationsItem.tsx (+1 -0)
📝 webapp/packages/core-root/src/NetworkStateService.ts (+6 -4)
📝 webapp/packages/plugin-codemirror/src/CodeEditor.tsx (+3 -1)
📝 webapp/packages/plugin-codemirror/src/ICodeEditorProps.ts (+0 -1)
📝 webapp/packages/plugin-data-export/src/ExportNotification/ExportNotification.tsx (+1 -1)
📝 webapp/packages/plugin-data-viewer/src/ValuePanelPresentation/TextValue/TextValuePresentation.tsx (+1 -1)
webapp/packages/plugin-root/src/LocaleService.ts (+36 -0)
webapp/packages/plugin-root/src/NetworkStateNotification/NetworkStateNotificationService.ts (+48 -0)
webapp/packages/plugin-root/src/locales/en.ts (+4 -0)
webapp/packages/plugin-root/src/locales/it.ts (+4 -0)
webapp/packages/plugin-root/src/locales/ru.ts (+4 -0)
webapp/packages/plugin-root/src/locales/zh.ts (+4 -0)
📝 webapp/packages/plugin-root/src/manifest.ts (+4 -0)
📝 webapp/packages/plugin-sql-editor-navigation-tab-resource/src/ResourceSqlDataSource.ts (+13 -0)
📝 webapp/packages/plugin-sql-editor-navigation-tab-resource/src/ResourceSqlDataSourceBootstrap.ts (+6 -1)
📝 webapp/packages/plugin-sql-editor/src/SqlDataSource/BaseSqlDataSource.ts (+4 -0)

...and 6 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/1073 **Author:** [@Wroud](https://github.com/Wroud) **Created:** 8/23/2022 **Status:** ✅ Merged **Merged:** 8/25/2022 **Merged by:** [@Wroud](https://github.com/Wroud) **Base:** `devel` ← **Head:** `feat/CB-2030/offline-mode` --- ### 📝 Commits (6) - [`19df786`](https://github.com/dbeaver/cloudbeaver/commit/19df7862114bcd51610319e8dd5f4494904d9f0e) fix(plugin-blocks): CB-2030 pass persistent prop to snackbar - [`862665a`](https://github.com/dbeaver/cloudbeaver/commit/862665a419da1155c764757c746b02e8f743f899) fix(plugin-codemirror): CB-2030 read-only state - [`30380c7`](https://github.com/dbeaver/cloudbeaver/commit/30380c7b24ac98e97dc96181f82d888ff827cd8c) feat(plugin-root): CB-2030 offline mode notification - [`69121eb`](https://github.com/dbeaver/cloudbeaver/commit/69121eb1a4ee5a4ac56830e072cddeb6016e76a6) feat(plugin-sql-editor): CB-2030 add isReadonly for ISqlDataSource - [`178bb7e`](https://github.com/dbeaver/cloudbeaver/commit/178bb7e6e878ac79ec19640a91a751b84e7a6484) fix(plugin-data-viewer): CB-2030 code editor props - [`0339c2a`](https://github.com/dbeaver/cloudbeaver/commit/0339c2a7885dc761c0305fbe736ca84c3cf5777d) fix(plugin-sql-editor-navigation-tab-resource): CB-2030 remove unused arg ### 📊 Changes **26 files changed** (+158 additions, -17 deletions) <details> <summary>View changed files</summary> 📝 `webapp/packages/core-blocks/src/Snackbars/ActionSnackbar.tsx` (+1 -1) 📝 `webapp/packages/core-blocks/src/Snackbars/ProcessSnackbar.tsx` (+1 -1) 📝 `webapp/packages/core-blocks/src/Snackbars/Snackbar.tsx` (+3 -1) 📝 `webapp/packages/core-blocks/src/Snackbars/SnackbarMarkups/SnackbarWrapper.tsx` (+3 -3) 📝 `webapp/packages/core-notifications/src/NotificationsItem/NotificationsItem.tsx` (+1 -0) 📝 `webapp/packages/core-root/src/NetworkStateService.ts` (+6 -4) 📝 `webapp/packages/plugin-codemirror/src/CodeEditor.tsx` (+3 -1) 📝 `webapp/packages/plugin-codemirror/src/ICodeEditorProps.ts` (+0 -1) 📝 `webapp/packages/plugin-data-export/src/ExportNotification/ExportNotification.tsx` (+1 -1) 📝 `webapp/packages/plugin-data-viewer/src/ValuePanelPresentation/TextValue/TextValuePresentation.tsx` (+1 -1) ➕ `webapp/packages/plugin-root/src/LocaleService.ts` (+36 -0) ➕ `webapp/packages/plugin-root/src/NetworkStateNotification/NetworkStateNotificationService.ts` (+48 -0) ➕ `webapp/packages/plugin-root/src/locales/en.ts` (+4 -0) ➕ `webapp/packages/plugin-root/src/locales/it.ts` (+4 -0) ➕ `webapp/packages/plugin-root/src/locales/ru.ts` (+4 -0) ➕ `webapp/packages/plugin-root/src/locales/zh.ts` (+4 -0) 📝 `webapp/packages/plugin-root/src/manifest.ts` (+4 -0) 📝 `webapp/packages/plugin-sql-editor-navigation-tab-resource/src/ResourceSqlDataSource.ts` (+13 -0) 📝 `webapp/packages/plugin-sql-editor-navigation-tab-resource/src/ResourceSqlDataSourceBootstrap.ts` (+6 -1) 📝 `webapp/packages/plugin-sql-editor/src/SqlDataSource/BaseSqlDataSource.ts` (+4 -0) _...and 6 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:07: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#2211
No description provided.