cloud-ide-layout 1.0.206 → 1.0.207
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/fesm2022/{cloud-ide-layout-cloud-ide-layout-B0-zQGMo.mjs → cloud-ide-layout-cloud-ide-layout-2qeSM8A1.mjs} +28 -5
- package/fesm2022/cloud-ide-layout-cloud-ide-layout-2qeSM8A1.mjs.map +1 -0
- package/fesm2022/{cloud-ide-layout-dashboard-manager.component-BhdibeqP.mjs → cloud-ide-layout-dashboard-manager.component-CJHUNhoZ.mjs} +2 -2
- package/fesm2022/{cloud-ide-layout-dashboard-manager.component-BhdibeqP.mjs.map → cloud-ide-layout-dashboard-manager.component-CJHUNhoZ.mjs.map} +1 -1
- package/fesm2022/{cloud-ide-layout-drawer-theme.component-DMwnoVZe.mjs → cloud-ide-layout-drawer-theme.component-C9IMuYmm.mjs} +2 -2
- package/fesm2022/{cloud-ide-layout-drawer-theme.component-DMwnoVZe.mjs.map → cloud-ide-layout-drawer-theme.component-C9IMuYmm.mjs.map} +1 -1
- package/fesm2022/{cloud-ide-layout-home-wrapper.component-BDrz_P5S.mjs → cloud-ide-layout-home-wrapper.component-DxmyaTO-.mjs} +2 -2
- package/fesm2022/{cloud-ide-layout-home-wrapper.component-BDrz_P5S.mjs.map → cloud-ide-layout-home-wrapper.component-DxmyaTO-.mjs.map} +1 -1
- package/fesm2022/{cloud-ide-layout-sidedrawer-notes.component-v3FvA4dr.mjs → cloud-ide-layout-sidedrawer-notes.component-De3yMh-k.mjs} +2 -2
- package/fesm2022/{cloud-ide-layout-sidedrawer-notes.component-v3FvA4dr.mjs.map → cloud-ide-layout-sidedrawer-notes.component-De3yMh-k.mjs.map} +1 -1
- package/fesm2022/cloud-ide-layout.mjs +1 -1
- package/package.json +1 -1
- package/fesm2022/cloud-ide-layout-cloud-ide-layout-B0-zQGMo.mjs.map +0 -1
|
@@ -2616,6 +2616,7 @@ class CideLytHeaderWrapperComponent {
|
|
|
2616
2616
|
authService = inject(AUTH_SERVICE_TOKEN);
|
|
2617
2617
|
wsNotificationService = inject(WebSocketNotificationService);
|
|
2618
2618
|
notificationApiService = inject(NotificationApiService);
|
|
2619
|
+
toastService = inject(NotificationService);
|
|
2619
2620
|
floatingContainerService = inject(CideEleFloatingContainerService);
|
|
2620
2621
|
notificationSettingsService = inject(NotificationSettingsService);
|
|
2621
2622
|
sidebarService = inject(CideLytSidebarService);
|
|
@@ -2763,6 +2764,28 @@ class CideLytHeaderWrapperComponent {
|
|
|
2763
2764
|
this.loadNotifications();
|
|
2764
2765
|
// Play notification sound based on user settings
|
|
2765
2766
|
this.playNotificationSound();
|
|
2767
|
+
// Push toast notification for real-time visibility
|
|
2768
|
+
const toastOptions = {
|
|
2769
|
+
title: notification.title,
|
|
2770
|
+
icon: this.getNotificationIcon(notification.type),
|
|
2771
|
+
duration: 5000
|
|
2772
|
+
};
|
|
2773
|
+
switch (notification.type) {
|
|
2774
|
+
case 'success':
|
|
2775
|
+
this.toastService.success(notification.message, toastOptions);
|
|
2776
|
+
break;
|
|
2777
|
+
case 'error':
|
|
2778
|
+
this.toastService.error(notification.message, toastOptions);
|
|
2779
|
+
break;
|
|
2780
|
+
case 'warning':
|
|
2781
|
+
this.toastService.warning(notification.message, toastOptions);
|
|
2782
|
+
break;
|
|
2783
|
+
case 'info':
|
|
2784
|
+
case 'system':
|
|
2785
|
+
default:
|
|
2786
|
+
this.toastService.info(notification.message, toastOptions);
|
|
2787
|
+
break;
|
|
2788
|
+
}
|
|
2766
2789
|
},
|
|
2767
2790
|
error: (error) => {
|
|
2768
2791
|
console.error('[Notifications] Error in notification stream:', error);
|
|
@@ -5612,8 +5635,8 @@ class CideLytSidedrawerWrapperComponent {
|
|
|
5612
5635
|
}
|
|
5613
5636
|
ngOnInit() {
|
|
5614
5637
|
// Initialize the component map (You'd likely populate this from a config or service)
|
|
5615
|
-
this.componentMap['drowar_notes'] = () => import('./cloud-ide-layout-sidedrawer-notes.component-
|
|
5616
|
-
this.componentMap['drawer_theme'] = () => import('./cloud-ide-layout-drawer-theme.component-
|
|
5638
|
+
this.componentMap['drowar_notes'] = () => import('./cloud-ide-layout-sidedrawer-notes.component-De3yMh-k.mjs').then(m => m.CideLytSidedrawerNotesComponent);
|
|
5639
|
+
this.componentMap['drawer_theme'] = () => import('./cloud-ide-layout-drawer-theme.component-C9IMuYmm.mjs').then(m => m.CideLytDrawerThemeComponent);
|
|
5617
5640
|
}
|
|
5618
5641
|
async loadComponent(configFor) {
|
|
5619
5642
|
console.log('🔍 SIDEDRAWER - Loading component:', configFor, 'Current tab:', this.currentTabId);
|
|
@@ -7312,7 +7335,7 @@ const layoutControlPannelChildRoutes = [{
|
|
|
7312
7335
|
},
|
|
7313
7336
|
{
|
|
7314
7337
|
path: "home",
|
|
7315
|
-
loadComponent: () => import('./cloud-ide-layout-home-wrapper.component-
|
|
7338
|
+
loadComponent: () => import('./cloud-ide-layout-home-wrapper.component-DxmyaTO-.mjs').then(c => c.CideLytHomeWrapperComponent),
|
|
7316
7339
|
canActivate: [authGuard],
|
|
7317
7340
|
data: {
|
|
7318
7341
|
sypg_page_code: "cide_lyt_home" // Used by RequestService to fetch tab properties
|
|
@@ -7320,7 +7343,7 @@ const layoutControlPannelChildRoutes = [{
|
|
|
7320
7343
|
},
|
|
7321
7344
|
{
|
|
7322
7345
|
path: "dashboard-manager",
|
|
7323
|
-
loadComponent: () => import('./cloud-ide-layout-dashboard-manager.component-
|
|
7346
|
+
loadComponent: () => import('./cloud-ide-layout-dashboard-manager.component-CJHUNhoZ.mjs').then(c => c.DashboardManagerComponent),
|
|
7324
7347
|
canActivate: [authGuard],
|
|
7325
7348
|
data: {
|
|
7326
7349
|
sypg_page_code: "cide_lyt_dashboard_manager"
|
|
@@ -9144,4 +9167,4 @@ var floatingEntitySelection_component = /*#__PURE__*/Object.freeze({
|
|
|
9144
9167
|
*/
|
|
9145
9168
|
|
|
9146
9169
|
export { AppStateHelperService as A, CideLytSharedWrapperComponent as C, ENVIRONMENT_CONFIG as E, NotificationSettingsService as N, RightsService as R, CideLytSidebarService as a, CideLytSidedrawerService as b, CideLytThemeService as c, CloudIdeLayoutService as d, CloudIdeLayoutComponent as e, CideLytSharedService as f, ComponentContextService as g, layoutControlPannelChildRoutes as h, CustomRouteReuseStrategy as i, AppStateService as j, CideLytUserStatusService as k, layoutRoutes as l, CacheManagerService as m, CideLytFileManagerService as n, CideLytFloatingEntityRightsSharingComponent as o, processThemeVariable as p, CideLytFloatingEntityRightsSharingService as q, CideLytFloatingEntitySelectionComponent as r, setCSSVariable as s, themeFactory as t, CideLytFloatingEntitySelectionService as u };
|
|
9147
|
-
//# sourceMappingURL=cloud-ide-layout-cloud-ide-layout-
|
|
9170
|
+
//# sourceMappingURL=cloud-ide-layout-cloud-ide-layout-2qeSM8A1.mjs.map
|