2016-04-28 17:50:03 -07:00
|
|
|
import {Injectable, PipeTransform, WrappedValue, Pipe} from '@angular/core';
|
|
|
|
|
2016-04-12 09:40:37 -07:00
|
|
|
import {
|
|
|
|
isNumber,
|
|
|
|
isPresent,
|
|
|
|
isBlank,
|
|
|
|
NumberWrapper,
|
|
|
|
RegExpWrapper,
|
2016-04-28 17:50:03 -07:00
|
|
|
} from '../../src/facade/lang';
|
|
|
|
import {BaseException} from '../../src/facade/exceptions';
|
|
|
|
import {NumberFormatter, NumberFormatStyle} from '../../src/facade/intl';
|
|
|
|
import {ListWrapper} from '../../src/facade/collection';
|
2015-08-07 11:41:38 -07:00
|
|
|
|
|
|
|
import {InvalidPipeArgumentException} from './invalid_pipe_argument_exception';
|
|
|
|
|
2015-07-04 22:25:43 +04:30
|
|
|
var defaultLocale: string = 'en-US';
|
|
|
|
var _re = RegExpWrapper.create('^(\\d+)?\\.((\\d+)(\\-(\\d+))?)?$');
|
|
|
|
|
2015-11-02 15:46:59 -08:00
|
|
|
/**
|
|
|
|
* Internal base class for numeric pipes.
|
|
|
|
*/
|
2015-08-06 10:39:02 -07:00
|
|
|
@Injectable()
|
2015-08-12 12:04:54 -07:00
|
|
|
export class NumberPipe {
|
2015-10-28 15:04:55 -07:00
|
|
|
/** @internal */
|
2016-04-12 09:40:37 -07:00
|
|
|
static _format(value: number, style: NumberFormatStyle, digits: string, currency: string = null,
|
|
|
|
currencyAsSymbol: boolean = false): string {
|
2015-08-06 10:39:02 -07:00
|
|
|
if (isBlank(value)) return null;
|
|
|
|
if (!isNumber(value)) {
|
|
|
|
throw new InvalidPipeArgumentException(NumberPipe, value);
|
|
|
|
}
|
2015-07-04 22:25:43 +04:30
|
|
|
var minInt = 1, minFraction = 0, maxFraction = 3;
|
|
|
|
if (isPresent(digits)) {
|
|
|
|
var parts = RegExpWrapper.firstMatch(_re, digits);
|
|
|
|
if (isBlank(parts)) {
|
|
|
|
throw new BaseException(`${digits} is not a valid digit info for number pipes`);
|
|
|
|
}
|
|
|
|
if (isPresent(parts[1])) { // min integer digits
|
|
|
|
minInt = NumberWrapper.parseIntAutoRadix(parts[1]);
|
|
|
|
}
|
|
|
|
if (isPresent(parts[3])) { // min fraction digits
|
|
|
|
minFraction = NumberWrapper.parseIntAutoRadix(parts[3]);
|
|
|
|
}
|
|
|
|
if (isPresent(parts[5])) { // max fraction digits
|
|
|
|
maxFraction = NumberWrapper.parseIntAutoRadix(parts[5]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return NumberFormatter.format(value, defaultLocale, style, {
|
|
|
|
minimumIntegerDigits: minInt,
|
|
|
|
minimumFractionDigits: minFraction,
|
|
|
|
maximumFractionDigits: maxFraction,
|
|
|
|
currency: currency,
|
|
|
|
currencyAsSymbol: currencyAsSymbol
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-08-18 16:16:30 +02:00
|
|
|
* WARNING: this pipe uses the Internationalization API.
|
|
|
|
* Therefore it is only reliable in Chrome and Opera browsers.
|
|
|
|
*
|
2015-09-22 12:11:25 +03:00
|
|
|
* Formats a number as local text. i.e. group sizing and separator and other locale-specific
|
2015-07-04 22:25:43 +04:30
|
|
|
* configurations are based on the active locale.
|
|
|
|
*
|
2015-11-17 09:41:31 -08:00
|
|
|
* ### Usage
|
2015-07-04 22:25:43 +04:30
|
|
|
*
|
|
|
|
* expression | number[:digitInfo]
|
|
|
|
*
|
|
|
|
* where `expression` is a number and `digitInfo` has the following format:
|
|
|
|
*
|
|
|
|
* {minIntegerDigits}.{minFractionDigits}-{maxFractionDigits}
|
|
|
|
*
|
|
|
|
* - minIntegerDigits is the minimum number of integer digits to use. Defaults to 1.
|
|
|
|
* - minFractionDigits is the minimum number of digits after fraction. Defaults to 0.
|
|
|
|
* - maxFractionDigits is the maximum number of digits after fraction. Defaults to 3.
|
|
|
|
*
|
|
|
|
* For more information on the acceptable range for each of these numbers and other
|
|
|
|
* details see your native internationalization library.
|
|
|
|
*
|
2015-11-02 15:46:59 -08:00
|
|
|
* ### Example
|
2015-07-04 22:25:43 +04:30
|
|
|
*
|
2015-11-02 15:46:59 -08:00
|
|
|
* {@example core/pipes/ts/number_pipe/number_pipe_example.ts region='NumberPipe'}
|
2015-07-04 22:25:43 +04:30
|
|
|
*/
|
2015-08-07 11:41:38 -07:00
|
|
|
@Pipe({name: 'number'})
|
|
|
|
@Injectable()
|
2015-08-12 12:04:54 -07:00
|
|
|
export class DecimalPipe extends NumberPipe implements PipeTransform {
|
2016-04-22 15:33:32 -07:00
|
|
|
transform(value: any, digits: string = null): string {
|
2015-08-26 13:40:12 -07:00
|
|
|
return NumberPipe._format(value, NumberFormatStyle.Decimal, digits);
|
2015-07-04 22:25:43 +04:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-08-18 16:16:30 +02:00
|
|
|
* WARNING: this pipe uses the Internationalization API.
|
|
|
|
* Therefore it is only reliable in Chrome and Opera browsers.
|
|
|
|
*
|
2015-07-04 22:25:43 +04:30
|
|
|
* Formats a number as local percent.
|
|
|
|
*
|
2015-11-17 09:41:31 -08:00
|
|
|
* ### Usage
|
2015-07-04 22:25:43 +04:30
|
|
|
*
|
|
|
|
* expression | percent[:digitInfo]
|
|
|
|
*
|
|
|
|
* For more information about `digitInfo` see {@link DecimalPipe}
|
2015-11-02 15:46:59 -08:00
|
|
|
*
|
|
|
|
* ### Example
|
|
|
|
*
|
|
|
|
* {@example core/pipes/ts/number_pipe/number_pipe_example.ts region='PercentPipe'}
|
2015-07-04 22:25:43 +04:30
|
|
|
*/
|
2015-08-07 11:41:38 -07:00
|
|
|
@Pipe({name: 'percent'})
|
|
|
|
@Injectable()
|
2015-08-12 12:04:54 -07:00
|
|
|
export class PercentPipe extends NumberPipe implements PipeTransform {
|
2016-04-22 15:33:32 -07:00
|
|
|
transform(value: any, digits: string = null): string {
|
2015-08-26 13:40:12 -07:00
|
|
|
return NumberPipe._format(value, NumberFormatStyle.Percent, digits);
|
2015-07-04 22:25:43 +04:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-08-18 16:16:30 +02:00
|
|
|
* WARNING: this pipe uses the Internationalization API.
|
|
|
|
* Therefore it is only reliable in Chrome and Opera browsers.
|
|
|
|
*
|
2015-07-04 22:25:43 +04:30
|
|
|
* Formats a number as local currency.
|
|
|
|
*
|
2015-11-17 09:41:31 -08:00
|
|
|
* ### Usage
|
2015-07-04 22:25:43 +04:30
|
|
|
*
|
|
|
|
* expression | currency[:currencyCode[:symbolDisplay[:digitInfo]]]
|
|
|
|
*
|
|
|
|
* where `currencyCode` is the ISO 4217 currency code, such as "USD" for the US dollar and
|
|
|
|
* "EUR" for the euro. `symbolDisplay` is a boolean indicating whether to use the currency
|
|
|
|
* symbol (e.g. $) or the currency code (e.g. USD) in the output. The default for this value
|
|
|
|
* is `false`.
|
|
|
|
* For more information about `digitInfo` see {@link DecimalPipe}
|
2015-11-02 15:46:59 -08:00
|
|
|
*
|
|
|
|
* ### Example
|
|
|
|
*
|
|
|
|
* {@example core/pipes/ts/number_pipe/number_pipe_example.ts region='CurrencyPipe'}
|
2015-07-04 22:25:43 +04:30
|
|
|
*/
|
2015-08-07 11:41:38 -07:00
|
|
|
@Pipe({name: 'currency'})
|
|
|
|
@Injectable()
|
2015-08-12 12:04:54 -07:00
|
|
|
export class CurrencyPipe extends NumberPipe implements PipeTransform {
|
2016-04-22 15:33:32 -07:00
|
|
|
transform(value: any, currencyCode: string = 'USD', symbolDisplay: boolean = false,
|
|
|
|
digits: string = null): string {
|
2016-04-12 09:40:37 -07:00
|
|
|
return NumberPipe._format(value, NumberFormatStyle.Currency, digits, currencyCode,
|
|
|
|
symbolDisplay);
|
2015-07-04 22:25:43 +04:30
|
|
|
}
|
|
|
|
}
|