2016-01-21 09:58:28 -08:00
|
|
|
// import {ROUTER_PROVIDERS_COMMON} from './router_providers_common';
|
|
|
|
|
import {ROUTER_PROVIDERS_COMMON} from 'angular2/router';
|
|
|
|
|
import {Provider} from 'angular2/core';
|
|
|
|
|
import {CONST_EXPR} from 'angular2/src/facade/lang';
|
2016-02-09 11:12:41 -08:00
|
|
|
import {BrowserPlatformLocation} from './location/browser_platform_location';
|
|
|
|
|
import {PlatformLocation} from './location/platform_location';
|
2016-01-21 09:58:28 -08:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* A list of {@link Provider}s. To use the router, you must add this to your application.
|
|
|
|
|
*
|
|
|
|
|
* ### Example ([live demo](http://plnkr.co/edit/iRUP8B5OUbxCWQ3AcIDm))
|
|
|
|
|
*
|
|
|
|
|
* ```
|
|
|
|
|
* import {Component} from 'angular2/core';
|
|
|
|
|
* import {
|
|
|
|
|
* ROUTER_DIRECTIVES,
|
|
|
|
|
* ROUTER_PROVIDERS,
|
|
|
|
|
* RouteConfig
|
|
|
|
|
* } from 'angular2/router';
|
|
|
|
|
*
|
|
|
|
|
* @Component({directives: [ROUTER_DIRECTIVES]})
|
|
|
|
|
* @RouteConfig([
|
|
|
|
|
* {...},
|
|
|
|
|
* ])
|
|
|
|
|
* class AppCmp {
|
|
|
|
|
* // ...
|
|
|
|
|
* }
|
|
|
|
|
*
|
|
|
|
|
* bootstrap(AppCmp, [ROUTER_PROVIDERS]);
|
|
|
|
|
* ```
|
|
|
|
|
*/
|
|
|
|
|
export const ROUTER_PROVIDERS: any[] = CONST_EXPR([
|
|
|
|
|
ROUTER_PROVIDERS_COMMON,
|
|
|
|
|
CONST_EXPR(new Provider(PlatformLocation, {useClass: BrowserPlatformLocation})),
|
|
|
|
|
]);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Use {@link ROUTER_PROVIDERS} instead.
|
|
|
|
|
*
|
|
|
|
|
* @deprecated
|
|
|
|
|
*/
|
|
|
|
|
export const ROUTER_BINDINGS = ROUTER_PROVIDERS;
|