2016-06-23 09:47:54 -07: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-11-02 17:40:15 -07:00
|
|
|
import {isPrimitive, isStrictStringMap} from './facade/lang';
|
2016-01-06 14:13:44 -08:00
|
|
|
|
2016-07-30 19:31:25 -07:00
|
|
|
export const MODULE_SUFFIX = '';
|
2015-08-25 15:36:02 -07:00
|
|
|
|
2016-10-19 13:42:39 -07:00
|
|
|
const CAMEL_CASE_REGEXP = /([A-Z])/g;
|
2016-11-08 15:45:30 -08:00
|
|
|
const DASH_CASE_REGEXP = /-+([a-z0-9])/g;
|
2015-12-02 10:35:51 -08:00
|
|
|
|
2015-08-27 16:29:02 -07:00
|
|
|
export function camelCaseToDashCase(input: string): string {
|
2016-10-06 15:10:27 -07:00
|
|
|
return input.replace(CAMEL_CASE_REGEXP, (...m: any[]) => '-' + m[1].toLowerCase());
|
2016-11-08 15:45:30 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
export function dashCaseToCamelCase(input: string): string {
|
|
|
|
return input.replace(DASH_CASE_REGEXP, (...m: any[]) => m[1].toUpperCase());
|
2015-08-27 16:29:02 -07:00
|
|
|
}
|
2015-09-11 13:37:05 -07:00
|
|
|
|
2015-09-18 10:33:23 -07:00
|
|
|
export function splitAtColon(input: string, defaultValues: string[]): string[] {
|
2016-09-23 16:37:04 -04:00
|
|
|
return _splitAt(input, ':', defaultValues);
|
|
|
|
}
|
|
|
|
|
|
|
|
export function splitAtPeriod(input: string, defaultValues: string[]): string[] {
|
|
|
|
return _splitAt(input, '.', defaultValues);
|
|
|
|
}
|
|
|
|
|
|
|
|
function _splitAt(input: string, character: string, defaultValues: string[]): string[] {
|
|
|
|
const characterIndex = input.indexOf(character);
|
|
|
|
if (characterIndex == -1) return defaultValues;
|
|
|
|
return [input.slice(0, characterIndex).trim(), input.slice(characterIndex + 1).trim()];
|
2015-09-18 10:33:23 -07:00
|
|
|
}
|
2016-04-20 18:10:19 -07:00
|
|
|
|
2016-04-30 16:13:03 -07:00
|
|
|
export function visitValue(value: any, visitor: ValueVisitor, context: any): any {
|
2016-10-19 13:42:39 -07:00
|
|
|
if (Array.isArray(value)) {
|
2016-04-30 16:13:03 -07:00
|
|
|
return visitor.visitArray(<any[]>value, context);
|
2016-10-19 13:42:39 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
if (isStrictStringMap(value)) {
|
2016-04-30 16:13:03 -07:00
|
|
|
return visitor.visitStringMap(<{[key: string]: any}>value, context);
|
2016-10-19 13:42:39 -07:00
|
|
|
}
|
|
|
|
|
2016-11-02 17:40:15 -07:00
|
|
|
if (value == null || isPrimitive(value)) {
|
2016-04-30 16:13:03 -07:00
|
|
|
return visitor.visitPrimitive(value, context);
|
|
|
|
}
|
2016-10-19 13:42:39 -07:00
|
|
|
|
|
|
|
return visitor.visitOther(value, context);
|
2016-04-30 16:13:03 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
export interface ValueVisitor {
|
|
|
|
visitArray(arr: any[], context: any): any;
|
|
|
|
visitStringMap(map: {[key: string]: any}, context: any): any;
|
|
|
|
visitPrimitive(value: any, context: any): any;
|
|
|
|
visitOther(value: any, context: any): any;
|
|
|
|
}
|
|
|
|
|
|
|
|
export class ValueTransformer implements ValueVisitor {
|
|
|
|
visitArray(arr: any[], context: any): any {
|
|
|
|
return arr.map(value => visitValue(value, this, context));
|
|
|
|
}
|
|
|
|
visitStringMap(map: {[key: string]: any}, context: any): any {
|
2016-11-12 14:08:58 +01:00
|
|
|
const result: {[key: string]: any} = {};
|
2016-10-07 17:36:08 -07:00
|
|
|
Object.keys(map).forEach(key => { result[key] = visitValue(map[key], this, context); });
|
2016-04-30 16:13:03 -07:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
visitPrimitive(value: any, context: any): any { return value; }
|
|
|
|
visitOther(value: any, context: any): any { return value; }
|
|
|
|
}
|
2016-04-28 17:50:03 -07:00
|
|
|
|
2016-06-28 09:54:42 -07:00
|
|
|
export class SyncAsyncResult<T> {
|
|
|
|
constructor(public syncResult: T, public asyncResult: Promise<T> = null) {
|
|
|
|
if (!asyncResult) {
|
2016-07-12 13:55:06 -07:00
|
|
|
this.asyncResult = Promise.resolve(syncResult);
|
2016-06-28 09:54:42 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|