cloud-ide-layout 1.0.192 → 1.0.193
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-ClcC017r.mjs → cloud-ide-layout-cloud-ide-layout-DbL2BVqF.mjs} +10 -5
- package/fesm2022/cloud-ide-layout-cloud-ide-layout-DbL2BVqF.mjs.map +1 -0
- package/fesm2022/{cloud-ide-layout-dashboard-manager.component-m0dwpUhX.mjs → cloud-ide-layout-dashboard-manager.component-Bxvu6fzX.mjs} +2 -2
- package/fesm2022/{cloud-ide-layout-dashboard-manager.component-m0dwpUhX.mjs.map → cloud-ide-layout-dashboard-manager.component-Bxvu6fzX.mjs.map} +1 -1
- package/fesm2022/{cloud-ide-layout-drawer-theme.component-CBrHfZ62.mjs → cloud-ide-layout-drawer-theme.component-0-NtPP4b.mjs} +2 -2
- package/fesm2022/{cloud-ide-layout-drawer-theme.component-CBrHfZ62.mjs.map → cloud-ide-layout-drawer-theme.component-0-NtPP4b.mjs.map} +1 -1
- package/fesm2022/{cloud-ide-layout-home-wrapper.component-ZgFNWqdK.mjs → cloud-ide-layout-home-wrapper.component-DbfUgVoZ.mjs} +2 -2
- package/fesm2022/{cloud-ide-layout-home-wrapper.component-ZgFNWqdK.mjs.map → cloud-ide-layout-home-wrapper.component-DbfUgVoZ.mjs.map} +1 -1
- package/fesm2022/{cloud-ide-layout-sidedrawer-notes.component-CpXEOOfa.mjs → cloud-ide-layout-sidedrawer-notes.component-DfrKyTi7.mjs} +2 -2
- package/fesm2022/{cloud-ide-layout-sidedrawer-notes.component-CpXEOOfa.mjs.map → cloud-ide-layout-sidedrawer-notes.component-DfrKyTi7.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-ClcC017r.mjs.map +0 -1
|
@@ -4678,10 +4678,14 @@ class CustomRouteReuseStrategy {
|
|
|
4678
4678
|
// Generates a unique key for a route.
|
|
4679
4679
|
// This key includes sorted query parameters to ensure distinct states for tabs differing by query params.
|
|
4680
4680
|
getPathKey(route) {
|
|
4681
|
+
// Debug: log the route tree
|
|
4682
|
+
const segments = route.pathFromRoot.map(r => r.url.map(segment => segment.path).join('/'));
|
|
4683
|
+
console.log('🔑 [getPathKey] Route segments:', segments);
|
|
4681
4684
|
let path = route.pathFromRoot
|
|
4682
4685
|
.map(r => r.url.map(segment => segment.path).join('/'))
|
|
4683
4686
|
.filter(p => p.length > 0)
|
|
4684
4687
|
.join('/');
|
|
4688
|
+
console.log('🔑 [getPathKey] Generated path:', path);
|
|
4685
4689
|
// Always append query parameters to the key for tab-based navigation
|
|
4686
4690
|
// This ensures each unique route + params combination gets its own stored component
|
|
4687
4691
|
if (route.queryParamMap.keys.length > 0) {
|
|
@@ -4691,6 +4695,7 @@ class CustomRouteReuseStrategy {
|
|
|
4691
4695
|
.join('&');
|
|
4692
4696
|
path += '?' + queryParams;
|
|
4693
4697
|
}
|
|
4698
|
+
console.log('🔑 [getPathKey] Final key:', path);
|
|
4694
4699
|
return path;
|
|
4695
4700
|
}
|
|
4696
4701
|
// Determines if this route (and its subtree) should be detached to be reused later.
|
|
@@ -5399,8 +5404,8 @@ class CideLytSidedrawerWrapperComponent {
|
|
|
5399
5404
|
}
|
|
5400
5405
|
ngOnInit() {
|
|
5401
5406
|
// Initialize the component map (You'd likely populate this from a config or service)
|
|
5402
|
-
this.componentMap['drowar_notes'] = () => import('./cloud-ide-layout-sidedrawer-notes.component-
|
|
5403
|
-
this.componentMap['drawer_theme'] = () => import('./cloud-ide-layout-drawer-theme.component-
|
|
5407
|
+
this.componentMap['drowar_notes'] = () => import('./cloud-ide-layout-sidedrawer-notes.component-DfrKyTi7.mjs').then(m => m.CideLytSidedrawerNotesComponent);
|
|
5408
|
+
this.componentMap['drawer_theme'] = () => import('./cloud-ide-layout-drawer-theme.component-0-NtPP4b.mjs').then(m => m.CideLytDrawerThemeComponent);
|
|
5404
5409
|
}
|
|
5405
5410
|
async loadComponent(configFor) {
|
|
5406
5411
|
console.log('🔍 SIDEDRAWER - Loading component:', configFor, 'Current tab:', this.currentTabId);
|
|
@@ -7092,7 +7097,7 @@ const layoutControlPannelChildRoutes = [{
|
|
|
7092
7097
|
},
|
|
7093
7098
|
{
|
|
7094
7099
|
path: "home",
|
|
7095
|
-
loadComponent: () => import('./cloud-ide-layout-home-wrapper.component-
|
|
7100
|
+
loadComponent: () => import('./cloud-ide-layout-home-wrapper.component-DbfUgVoZ.mjs').then(c => c.CideLytHomeWrapperComponent),
|
|
7096
7101
|
canActivate: [authGuard],
|
|
7097
7102
|
data: {
|
|
7098
7103
|
sypg_page_code: "cide_lyt_home" // Used by RequestService to fetch tab properties
|
|
@@ -7100,7 +7105,7 @@ const layoutControlPannelChildRoutes = [{
|
|
|
7100
7105
|
},
|
|
7101
7106
|
{
|
|
7102
7107
|
path: "dashboard-manager",
|
|
7103
|
-
loadComponent: () => import('./cloud-ide-layout-dashboard-manager.component-
|
|
7108
|
+
loadComponent: () => import('./cloud-ide-layout-dashboard-manager.component-Bxvu6fzX.mjs').then(c => c.DashboardManagerComponent),
|
|
7104
7109
|
canActivate: [authGuard],
|
|
7105
7110
|
data: {
|
|
7106
7111
|
sypg_page_code: "cide_lyt_dashboard_manager"
|
|
@@ -8924,4 +8929,4 @@ var floatingEntitySelection_component = /*#__PURE__*/Object.freeze({
|
|
|
8924
8929
|
*/
|
|
8925
8930
|
|
|
8926
8931
|
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 };
|
|
8927
|
-
//# sourceMappingURL=cloud-ide-layout-cloud-ide-layout-
|
|
8932
|
+
//# sourceMappingURL=cloud-ide-layout-cloud-ide-layout-DbL2BVqF.mjs.map
|