How do aux routes work in Angular2 RC5/Router3 RC1?

872 Views Asked by At

There is hardly any information regarding auxiliary routes on the web, even less so for RC5/RC1, I hope someone here on SO managed to get them to work (they are supposed to have been fixed or so I heard, but that's about it).

I got the following routing declaration:

import {
    RouterModule,
    Routes
} from '@angular/router';

import { ContactsComponent } from './contacts.component';
import { NewContactComponent } from './new-contact.component';

const contactsRoutes: Routes = [
    { path: '', component: ContactsComponent },
    { path: 'new', component: NewContactsComponent, outlet: 'form' }
];

export const contactsRouting = RouterModule.forChild(contactsRoutes);

Here's the routerLink and outlet on ContactsComponent:

<a [routerLink]="['.', 'form:new']"> 
    <button md-fab class="md-fab">
        <md-icon class="md-24">add</md-icon>
    </button>
</a>
<router-outlet name="form"></router-outlet>

However, this only leads to error messages such as

Error: Cannot match any routes: 'contacts/form%3Anew'

Does anyone have a working example for Angular2 RC5/Router3 RC1?

2

There are 2 best solutions below

5
On

As far as I know it should be something like

<a [routerLink]="[{ outlets: { 'aux': ['/employee/14/chat'] } }]">

See also https://angular.io/docs/ts/latest/api/router/index/RouterLink-directive.html

1
On

I finally got this to work (use the source, Luke), with a twist for now, but I'll keep on investigating until I find the complete solution.

Given this routing setup

const appRoutes: Routes = [
    { path: '', redirectTo: 'welcome', pathMatch: 'full' },
    { path: 'welcome', component: WelcomeComponent },
    { path: 'employee/:id', component: EmployeeDetailComponent }
    { path: 'chat', component: ChatComponent, outlet: 'aux' }
];

that is, with the aux route in the root path (this is the twist I mentioned), I can write

<a [routerLink]="['/', { outlets: { primary: 'employee/14', aux: 'chat' } }]"

and it translates to this route:

/employee/14(aux:chat)

Clicking on this link then actually renders the component in the outlet,

import { Component } from '@angular/core';

@Component({
    selector: 'my-app',
    template: '<router-outlet></router-outlet><router-outlet name="aux"></router-outlet>'
})
export class AppComponent {}

The full plnkr can be found here.

Once I get this to work for child components I'll update this answer.