[PR #205] [MERGED] feat(core-blocks): CB-397 add process snackbar to show disconnecting … #1531

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

📋 Pull Request Information

Original PR: https://github.com/dbeaver/cloudbeaver/pull/205
Author: @devnaumov
Created: 11/3/2020
Status: Merged
Merged: 11/5/2020
Merged by: @Wroud

Base: develHead: feat/processing-snackbar


📝 Commits (8)

  • c33174d feat(core-blocks): CB-397 add process snackbar to show disconnecting process
  • 3549b23 feat(core-blocks): CB-397 add copyrights, moved mounted logic to snackbarWrapper
  • d11af14 refactor(core-blocks): CB-397
  • be1b4a3 refactor(core-blocks): CB-397 add actions:empty selector, moved details button to parent component
  • 4e7dd2e refactor(core-blocks): CB-397 formating
  • fe4f85e refactor(core-blocks): CB-397 useSnackbarTimeout remove interface
  • 5366c74 refactor(core-blocks): CB-397 remove onClose conditional check in snackbar.tsx
  • 31574d6 refactor: CB-397 cleanup

📊 Changes

18 files changed (+580 additions, -73 deletions)

View changed files

📝 webapp/packages/core-blocks/src/Snackbars/ActionSnackbar.tsx (+8 -8)
webapp/packages/core-blocks/src/Snackbars/ProcessSnackbar.tsx (+70 -0)
📝 webapp/packages/core-blocks/src/Snackbars/Snackbar.tsx (+14 -32)
webapp/packages/core-blocks/src/Snackbars/SnackbarMarkups/SnackbarBody.tsx (+59 -0)
webapp/packages/core-blocks/src/Snackbars/SnackbarMarkups/SnackbarContent.tsx (+29 -0)
webapp/packages/core-blocks/src/Snackbars/SnackbarMarkups/SnackbarFooter.tsx (+42 -0)
webapp/packages/core-blocks/src/Snackbars/SnackbarMarkups/SnackbarStatus.tsx (+41 -0)
webapp/packages/core-blocks/src/Snackbars/SnackbarMarkups/SnackbarWrapper.tsx (+83 -0)
📝 webapp/packages/core-blocks/src/index.ts (+1 -0)
webapp/packages/core-blocks/src/useErrorDetails.tsx (+37 -0)
webapp/packages/core-blocks/src/useStateDelay.tsx (+29 -0)
📝 webapp/packages/core-connections/src/ConnectionsManagerService.ts (+30 -5)
📝 webapp/packages/core-events/src/INotification.ts (+22 -3)
📝 webapp/packages/core-events/src/NotificationService.ts (+58 -9)
webapp/packages/core-events/src/ProcessNotificationController.ts (+49 -0)
📝 webapp/packages/core-notifications/src/NotificationsItem/NotificationItemController.ts (+1 -8)
📝 webapp/packages/core-notifications/src/NotificationsItem/NotificationsItem.tsx (+6 -7)
📝 webapp/packages/plugin-data-export/src/ExportNotification/ExportNotification.tsx (+1 -1)

📄 Description

…process

CB-397


🔄 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/205 **Author:** [@devnaumov](https://github.com/devnaumov) **Created:** 11/3/2020 **Status:** ✅ Merged **Merged:** 11/5/2020 **Merged by:** [@Wroud](https://github.com/Wroud) **Base:** `devel` ← **Head:** `feat/processing-snackbar` --- ### 📝 Commits (8) - [`c33174d`](https://github.com/dbeaver/cloudbeaver/commit/c33174de0718f62464a2befc519bc53a88a77922) feat(core-blocks): CB-397 add process snackbar to show disconnecting process - [`3549b23`](https://github.com/dbeaver/cloudbeaver/commit/3549b231f94d91b430dba4b8343747c3800a502f) feat(core-blocks): CB-397 add copyrights, moved mounted logic to snackbarWrapper - [`d11af14`](https://github.com/dbeaver/cloudbeaver/commit/d11af146a9a8a99191c27624f916c8581a5706e9) refactor(core-blocks): CB-397 - [`be1b4a3`](https://github.com/dbeaver/cloudbeaver/commit/be1b4a35805bde0b7d4adf1d316cc0237ad8dd02) refactor(core-blocks): CB-397 add actions:empty selector, moved details button to parent component - [`4e7dd2e`](https://github.com/dbeaver/cloudbeaver/commit/4e7dd2e373e70721ab794430797f5d79680ca4f6) refactor(core-blocks): CB-397 formating - [`fe4f85e`](https://github.com/dbeaver/cloudbeaver/commit/fe4f85eb78abe7456db758154e31517712f40349) refactor(core-blocks): CB-397 useSnackbarTimeout remove interface - [`5366c74`](https://github.com/dbeaver/cloudbeaver/commit/5366c7424856e551d4a609b9f9f82c3f74514d42) refactor(core-blocks): CB-397 remove onClose conditional check in snackbar.tsx - [`31574d6`](https://github.com/dbeaver/cloudbeaver/commit/31574d6033e8d4ea5d84b2c9c295d31ce299a46b) refactor: CB-397 cleanup ### 📊 Changes **18 files changed** (+580 additions, -73 deletions) <details> <summary>View changed files</summary> 📝 `webapp/packages/core-blocks/src/Snackbars/ActionSnackbar.tsx` (+8 -8) ➕ `webapp/packages/core-blocks/src/Snackbars/ProcessSnackbar.tsx` (+70 -0) 📝 `webapp/packages/core-blocks/src/Snackbars/Snackbar.tsx` (+14 -32) ➕ `webapp/packages/core-blocks/src/Snackbars/SnackbarMarkups/SnackbarBody.tsx` (+59 -0) ➕ `webapp/packages/core-blocks/src/Snackbars/SnackbarMarkups/SnackbarContent.tsx` (+29 -0) ➕ `webapp/packages/core-blocks/src/Snackbars/SnackbarMarkups/SnackbarFooter.tsx` (+42 -0) ➕ `webapp/packages/core-blocks/src/Snackbars/SnackbarMarkups/SnackbarStatus.tsx` (+41 -0) ➕ `webapp/packages/core-blocks/src/Snackbars/SnackbarMarkups/SnackbarWrapper.tsx` (+83 -0) 📝 `webapp/packages/core-blocks/src/index.ts` (+1 -0) ➕ `webapp/packages/core-blocks/src/useErrorDetails.tsx` (+37 -0) ➕ `webapp/packages/core-blocks/src/useStateDelay.tsx` (+29 -0) 📝 `webapp/packages/core-connections/src/ConnectionsManagerService.ts` (+30 -5) 📝 `webapp/packages/core-events/src/INotification.ts` (+22 -3) 📝 `webapp/packages/core-events/src/NotificationService.ts` (+58 -9) ➕ `webapp/packages/core-events/src/ProcessNotificationController.ts` (+49 -0) 📝 `webapp/packages/core-notifications/src/NotificationsItem/NotificationItemController.ts` (+1 -8) 📝 `webapp/packages/core-notifications/src/NotificationsItem/NotificationsItem.tsx` (+6 -7) 📝 `webapp/packages/plugin-data-export/src/ExportNotification/ExportNotification.tsx` (+1 -1) </details> ### 📄 Description …process CB-397 --- <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:27 +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#1531
No description provided.