Reputation: 429
I have a problem with lazy loading not about to route to a named router-outlet. Can someone look at where I when wrong? I have a mainpage where there is a link to Product -> default router outlet and Product Detail -> named router outlet.
<div>
<div><a [routerLink]="['product']"> Product </a> </div>
<div><a [routerLink]="['productdetail',{outlets:{productdetail: 'detail'}}]"> Product Detail </a> </div>
<div> <router-outlet></router-outlet></div>
<div> <router-outlet name="detail"></router-outlet>
</div>
Below is the plunker code.
Upvotes: 10
Views: 19696
Reputation: 542
Got the solution to the problem, by avoiding empty paths "". Thanks to the courtesy of Domenic Helfenstein, who took time to reproduce the problem here.
Upvotes: 0
Reputation: 9745
Let's say routes are part of profile ProfileComponent (example.com/profile)
profile.component.ts
<a routerLink="/profile/about">About</a>
<a routerLink="/profile/edit">Edit</a>
<a routerLink="/profile/settings">Settings</a>
<router-outlet></router-outlet>
There are three different components:
Then routes will look like:
{
path: 'profile',
component: ProfileComponent,
children: [
{
path: 'about',
component: AboutComponent
},
{
path: 'edit',
component: EditComponent
},
{
path: 'settings',
component: SettingsComponent
}
]
}
Upvotes: 0
Reputation: 5334
This is known bug, you can track the issue here
The workaround or we can say solution to this issue is, use non-empty paths for your top level routes if auxilary(i.e. named) routes exist in a lazy loaded module.
The only flaw I can see is, an additional url segment added in routes
MainRoutingModule: Top level non-empty path(i.e. "path: 'load'")
import { ModuleWithProviders, NgModule } from '@angular/core';
import { Routes, RouterModule } from '@angular/router';
import { MainpageComponent } from './mainpage.component';
import { ProductComponent } from './product.component';
import { ProductDetailComponent } from './productdetail.component';
const childroutes: Routes = [
{ path: 'load', component: MainpageComponent ,
children: [
{path: 'product', component: ProductComponent
{path: 'productdetail', component: ProductDetailComponent,
outlet: 'detail'
},
]
},
];
export const routing: ModuleWithProviders = RouterModule.forChild(childroutes);
const newLocal: NgModule = {
imports: [RouterModule.forChild(childroutes) ],
exports: [RouterModule, ],
declarations: []
};
@NgModule(newLocal)
export class MainRoutingModule { }
MainpageComponent:The correct syntax to use the secondary routes.
[routerLink]="[{outlets:{detail:['productdetail']}}]"
import { Component, OnInit, ViewEncapsulation } from '@angular/core';
import { Router } from '@angular/router';
@Component({
selector: 'app-main',
template: `
<div>
<div><a [routerLink]="['product']"> Product </a> </div>
<div><a [routerLink]="[{outlets:{detail:['productdetail']}}]"> Product Detail </a> </div>
<div> <router-outlet></router-outlet></div>
<div> <router-outlet name="detail"></router-outlet>
</div>
`,
encapsulation: ViewEncapsulation.None,
})
export class MainpageComponent {}
LoginComponent:
Use [routerLink]="['mainpage/load']" to load the main module.
import { Component, OnInit, OnDestroy } from '@angular/core';
@Component({
selector: 'app-login',
template: `This is login page place holder <br> <a [routerLink]="['mainpage/load']">Go to Main Page</a>`,
})
export class LoginComponent implements Oninit, OnDestroy {
constructor() {}
ngOnInit(): void {}
}
Demo:https://plnkr.co/edit/0ZpNL3lvbRbexLzQqRZh?p=preview
Upvotes: 13