format.ts
67 lines
| 1.8 KiB
| video/mp2t
|
TypeScriptLexer
|
|
r55 | import { format as dojoFormatNumber } from "dojo/number"; | ||
| import { format as dojoFormatDate } from "dojo/date/locale"; | ||||
|
|
r65 | import { Formatter, compile as _compile } from "./StringFormat"; | ||
|
|
r55 | |||
|
|
r65 | import { isNumber, isNull } from "../safe"; | ||
|
|
r55 | |||
| interface NumberFormatOptions { | ||||
| round?: number; | ||||
| pattern?: string; | ||||
| } | ||||
| function convertNumber(value: any, pattern: string) { | ||||
| if (isNumber(value)) { | ||||
| const nopt = {} as NumberFormatOptions; | ||||
| if (pattern.indexOf("!") === 0) { | ||||
| nopt.round = -1; | ||||
| pattern = pattern.substr(1); | ||||
| } | ||||
| nopt.pattern = pattern; | ||||
| return dojoFormatNumber(value, nopt); | ||||
| } | ||||
| } | ||||
| function convertDate(value: any, pattern: string) { | ||||
| if (value instanceof Date) { | ||||
| const m = pattern.match(/^(\w+)-(\w+)$/); | ||||
| if (m) | ||||
| return dojoFormatDate(value, { | ||||
| selector: m[2], | ||||
| formatLength: m[1] | ||||
| }); | ||||
| else if (pattern === "iso") | ||||
| return value.toISOString(); | ||||
| else | ||||
| return dojoFormatDate(value, { | ||||
| selector: "date", | ||||
| datePattern: pattern | ||||
| }); | ||||
| } | ||||
| } | ||||
| const _formatter = new Formatter([convertNumber, convertDate]); | ||||
|
|
r65 | function format(msg: string, ...args: any[]) { | ||
| return _formatter.format(msg, ...args); | ||||
| } | ||||
| function _convert(value: any, pattern: string) { | ||||
| return _formatter.convert(value, pattern); | ||||
| } | ||||
| namespace format { | ||||
| export const convert = _convert; | ||||
| export function compile(text: string) { | ||||
| const template = _compile(text); | ||||
| return (...data) => { | ||||
| return template((name, pattern) => { | ||||
| const value = data[name]; | ||||
| return !isNull(value) ? convert(value, pattern) : ""; | ||||
| }); | ||||
| }; | ||||
| } | ||||
| } | ||||
| export = format; | ||||
