cloud-ide-layout 1.0.194 → 1.0.195
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-CsY3Ygak.mjs → cloud-ide-layout-cloud-ide-layout-Bg2j0XfT.mjs} +9 -13
- package/fesm2022/{cloud-ide-layout-cloud-ide-layout-CsY3Ygak.mjs.map → cloud-ide-layout-cloud-ide-layout-Bg2j0XfT.mjs.map} +1 -1
- package/fesm2022/{cloud-ide-layout-dashboard-manager.component-BYQI6-FO.mjs → cloud-ide-layout-dashboard-manager.component-DP7G62qH.mjs} +2 -2
- package/fesm2022/{cloud-ide-layout-dashboard-manager.component-BYQI6-FO.mjs.map → cloud-ide-layout-dashboard-manager.component-DP7G62qH.mjs.map} +1 -1
- package/fesm2022/{cloud-ide-layout-drawer-theme.component-KLkC4yub.mjs → cloud-ide-layout-drawer-theme.component--ZkrhILT.mjs} +2 -2
- package/fesm2022/{cloud-ide-layout-drawer-theme.component-KLkC4yub.mjs.map → cloud-ide-layout-drawer-theme.component--ZkrhILT.mjs.map} +1 -1
- package/fesm2022/{cloud-ide-layout-home-wrapper.component-71YgePtl.mjs → cloud-ide-layout-home-wrapper.component-CY567Tsp.mjs} +2 -2
- package/fesm2022/{cloud-ide-layout-home-wrapper.component-71YgePtl.mjs.map → cloud-ide-layout-home-wrapper.component-CY567Tsp.mjs.map} +1 -1
- package/fesm2022/{cloud-ide-layout-sidedrawer-notes.component-DIJLes0w.mjs → cloud-ide-layout-sidedrawer-notes.component-HMa0q-AC.mjs} +2 -2
- package/fesm2022/{cloud-ide-layout-sidedrawer-notes.component-DIJLes0w.mjs.map → cloud-ide-layout-sidedrawer-notes.component-HMa0q-AC.mjs.map} +1 -1
- package/fesm2022/cloud-ide-layout.mjs +1 -1
- package/package.json +1 -1
|
@@ -4702,15 +4702,11 @@ class CustomRouteReuseStrategy {
|
|
|
4702
4702
|
// IMPORTANT: We ALWAYS detach routes to support tab-based navigation
|
|
4703
4703
|
// This ensures components are preserved when switching between tabs
|
|
4704
4704
|
shouldDetach(route) {
|
|
4705
|
-
|
|
4706
|
-
// When navigating to /control-panel/teacher/view/123, Angular calls this for:
|
|
4707
|
-
// 1. /control-panel (has children) - should NOT detach
|
|
4708
|
-
// 2. /teacher (has children) - should NOT detach
|
|
4709
|
-
// 3. /view/123 (leaf route) - SHOULD detach
|
|
4710
|
-
// We only want to store the deepest/final route, not parent routes
|
|
4705
|
+
const hasComponent = !!route.component || !!route.routeConfig?.loadComponent;
|
|
4711
4706
|
const hasChildren = route.firstChild !== null;
|
|
4712
|
-
const shouldDetach = !hasChildren;
|
|
4713
|
-
|
|
4707
|
+
const shouldDetach = hasComponent && !hasChildren;
|
|
4708
|
+
const pathKey = this.getPathKey(route);
|
|
4709
|
+
console.log(`🔍 [shouldDetach] Route: ${pathKey}, hasComponent: ${hasComponent}, hasChildren: ${hasChildren}, shouldDetach: ${shouldDetach}`);
|
|
4714
4710
|
return shouldDetach;
|
|
4715
4711
|
}
|
|
4716
4712
|
// Stores the detached route.
|
|
@@ -5410,8 +5406,8 @@ class CideLytSidedrawerWrapperComponent {
|
|
|
5410
5406
|
}
|
|
5411
5407
|
ngOnInit() {
|
|
5412
5408
|
// Initialize the component map (You'd likely populate this from a config or service)
|
|
5413
|
-
this.componentMap['drowar_notes'] = () => import('./cloud-ide-layout-sidedrawer-notes.component-
|
|
5414
|
-
this.componentMap['drawer_theme'] = () => import('./cloud-ide-layout-drawer-theme.component
|
|
5409
|
+
this.componentMap['drowar_notes'] = () => import('./cloud-ide-layout-sidedrawer-notes.component-HMa0q-AC.mjs').then(m => m.CideLytSidedrawerNotesComponent);
|
|
5410
|
+
this.componentMap['drawer_theme'] = () => import('./cloud-ide-layout-drawer-theme.component--ZkrhILT.mjs').then(m => m.CideLytDrawerThemeComponent);
|
|
5415
5411
|
}
|
|
5416
5412
|
async loadComponent(configFor) {
|
|
5417
5413
|
console.log('🔍 SIDEDRAWER - Loading component:', configFor, 'Current tab:', this.currentTabId);
|
|
@@ -7103,7 +7099,7 @@ const layoutControlPannelChildRoutes = [{
|
|
|
7103
7099
|
},
|
|
7104
7100
|
{
|
|
7105
7101
|
path: "home",
|
|
7106
|
-
loadComponent: () => import('./cloud-ide-layout-home-wrapper.component-
|
|
7102
|
+
loadComponent: () => import('./cloud-ide-layout-home-wrapper.component-CY567Tsp.mjs').then(c => c.CideLytHomeWrapperComponent),
|
|
7107
7103
|
canActivate: [authGuard],
|
|
7108
7104
|
data: {
|
|
7109
7105
|
sypg_page_code: "cide_lyt_home" // Used by RequestService to fetch tab properties
|
|
@@ -7111,7 +7107,7 @@ const layoutControlPannelChildRoutes = [{
|
|
|
7111
7107
|
},
|
|
7112
7108
|
{
|
|
7113
7109
|
path: "dashboard-manager",
|
|
7114
|
-
loadComponent: () => import('./cloud-ide-layout-dashboard-manager.component-
|
|
7110
|
+
loadComponent: () => import('./cloud-ide-layout-dashboard-manager.component-DP7G62qH.mjs').then(c => c.DashboardManagerComponent),
|
|
7115
7111
|
canActivate: [authGuard],
|
|
7116
7112
|
data: {
|
|
7117
7113
|
sypg_page_code: "cide_lyt_dashboard_manager"
|
|
@@ -8935,4 +8931,4 @@ var floatingEntitySelection_component = /*#__PURE__*/Object.freeze({
|
|
|
8935
8931
|
*/
|
|
8936
8932
|
|
|
8937
8933
|
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 };
|
|
8938
|
-
//# sourceMappingURL=cloud-ide-layout-cloud-ide-layout-
|
|
8934
|
+
//# sourceMappingURL=cloud-ide-layout-cloud-ide-layout-Bg2j0XfT.mjs.map
|