2016-06-23 12:47:54 -04:00
|
|
|
/**
|
|
|
|
* @license
|
|
|
|
* Copyright Google Inc. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
|
|
* found in the LICENSE file at https://angular.io/license
|
|
|
|
*/
|
|
|
|
|
2016-08-16 14:15:01 -04:00
|
|
|
import {Component, NgModule} from '@angular/core';
|
|
|
|
import {BrowserModule} from '@angular/platform-browser';
|
|
|
|
import {platformBrowserDynamic} from '@angular/platform-browser-dynamic';
|
2015-11-02 18:46:59 -05:00
|
|
|
|
|
|
|
// #docregion NumberPipe
|
|
|
|
@Component({
|
|
|
|
selector: 'number-example',
|
|
|
|
template: `<div>
|
|
|
|
<p>e (no formatting): {{e}}</p>
|
|
|
|
<p>e (3.1-5): {{e | number:'3.1-5'}}</p>
|
|
|
|
<p>pi (no formatting): {{pi}}</p>
|
|
|
|
<p>pi (3.5-5): {{pi | number:'3.5-5'}}</p>
|
|
|
|
</div>`
|
|
|
|
})
|
|
|
|
export class NumberPipeExample {
|
|
|
|
pi: number = 3.141;
|
|
|
|
e: number = 2.718281828459045;
|
|
|
|
}
|
|
|
|
// #enddocregion
|
|
|
|
|
|
|
|
// #docregion PercentPipe
|
|
|
|
@Component({
|
|
|
|
selector: 'percent-example',
|
|
|
|
template: `<div>
|
|
|
|
<p>A: {{a | percent}}</p>
|
|
|
|
<p>B: {{b | percent:'4.3-5'}}</p>
|
|
|
|
</div>`
|
|
|
|
})
|
|
|
|
export class PercentPipeExample {
|
|
|
|
a: number = 0.259;
|
|
|
|
b: number = 1.3495;
|
|
|
|
}
|
|
|
|
// #enddocregion
|
|
|
|
|
|
|
|
// #docregion CurrencyPipe
|
|
|
|
@Component({
|
|
|
|
selector: 'currency-example',
|
|
|
|
template: `<div>
|
|
|
|
<p>A: {{a | currency:'USD':false}}</p>
|
|
|
|
<p>B: {{b | currency:'USD':true:'4.2-2'}}</p>
|
|
|
|
</div>`
|
|
|
|
})
|
|
|
|
export class CurrencyPipeExample {
|
|
|
|
a: number = 0.259;
|
|
|
|
b: number = 1.3495;
|
|
|
|
}
|
|
|
|
// #enddocregion
|
|
|
|
|
|
|
|
@Component({
|
|
|
|
selector: 'example-app',
|
2015-12-10 11:28:29 -05:00
|
|
|
template: `
|
2015-11-02 18:46:59 -05:00
|
|
|
<h1>Numeric Pipe Examples</h1>
|
|
|
|
<h2>NumberPipe Example</h2>
|
|
|
|
<number-example></number-example>
|
|
|
|
<h2>PercentPipe Example</h2>
|
|
|
|
<percent-example></percent-example>
|
|
|
|
<h2>CurrencyPipeExample</h2>
|
|
|
|
<currency-example></currency-example>
|
|
|
|
`
|
|
|
|
})
|
|
|
|
export class AppCmp {
|
|
|
|
}
|
|
|
|
|
2016-08-16 14:15:01 -04:00
|
|
|
@NgModule({imports: [BrowserModule], bootstrap: [AppCmp]})
|
|
|
|
class AppModule {
|
|
|
|
}
|
|
|
|
|
2015-11-02 18:46:59 -05:00
|
|
|
export function main() {
|
2016-08-16 14:15:01 -04:00
|
|
|
platformBrowserDynamic().bootstrapModule(AppModule);
|
2015-11-02 18:46:59 -05:00
|
|
|
}
|