I have set up my app so that I have a Recipe Book
which has a list of Recipies
which when I click on a Recipe it then shows the Recipe Details
in a nested route. This then also has a button that when clicked loads the ingredients in a nested route inside the Recipes Details
.
So far the routing seems to work, except when I try to navigate to another Recipe
. If the Ingredients
tray(route) is active then it will change Recipe and collapse the Ingredients
Route, If I then try and navigate (without opening the Ingredients) I get the following error:
Uncaught (in promise): Error: Outlet is not activated
Error: Outlet is not activated
It looks like I the router needs Ingredients
to be active or else it doesn't understand the nested route. Thats my take on it but not sure how to fix it or when I went wrong.
single-recipe-book-page.component.html
<app-tray class="recipe-list">
<app-recipe-list [recipe]="recipe"></app-recipe-list>
</app-tray>
<router-outlet></router-outlet>
recipe-detail.component.html
<app-tray class="recipe">
The routing has worked and loaded recipe.
</app-tray>
<router-outlet></router-outlet>
ingredients-list.component.html
<app-tray class="ingredients-list">
Recipe Ingredients have loaded.
</app-tray>
app.routes.ts (updated)
export const routerConfig : Route[] = [
{
path: 'recipe-books',
children: [
{
path: ':id', component: SingleRecipeBookPageComponent,
children: [
{
path: 'recipes',
children: [
{ path: ':id', component: RecipeDetailComponent,
children: [
{ path: '', component: IngredientsListComponent },
{ path: 'ingredients', component: IngredientsListComponent }
]
},
{ path: 'new', component: IngredientsListComponent },
{ path: '', component: RecipeDetailComponent }
]
},
{ path: '', redirectTo: 'recipes', pathMatch: 'full' }
]
},
{ path: '', component: RecipeBooksPageComponent }
]
},
{ path: 'ingredients', component: IngredientsComponent },
{ path: '', redirectTo: 'recipe-books', pathMatch: 'full' },
{ path: '**', redirectTo: 'recipe-books', pathMatch: 'full' }
];
This route is invalid and you should get an error for it.
{ path: '' },
A route either needs to have a component
, a redirectTo
, or children
.
If an empty path route has no children it also should have pathMatch: 'full'
.
I guess what you want is
{ path: '', component: DummyComponent, pathMatch: 'full' },
Where DummyComponent
is a component with an empty view.
You can reuse the same DummyComponent
for all these paths.