- Make sure `NodeDef`s don’t fall into dictionary mode. - Use strategy pattern to add debug information / checks, instead of constantly checking for `isDevMode`. - introduce a very light weight `RendererV2` interface to not have duplicate code paths for direct and non direct rendering The strategy pattern is implemented via the new `Services` object. Part of #14013 PR Close #14345
		
			
				
	
	
		
			42 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
/**
 | 
						|
 * @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
 | 
						|
 */
 | 
						|
 | 
						|
import {Injector, RootRenderer, Sanitizer} from '@angular/core';
 | 
						|
import {ArgumentType, NodeCheckFn, RootData, Services, ViewData, ViewDefinition, initServicesIfNeeded} from '@angular/core/src/view/index';
 | 
						|
import {TestBed} from '@angular/core/testing';
 | 
						|
import {getDOM} from '@angular/platform-browser/src/dom/dom_adapter';
 | 
						|
 | 
						|
export function isBrowser() {
 | 
						|
  return getDOM().supportsDOMEvents();
 | 
						|
}
 | 
						|
 | 
						|
export const ARG_TYPE_VALUES = [ArgumentType.Inline, ArgumentType.Dynamic];
 | 
						|
 | 
						|
export function checkNodeInlineOrDynamic(
 | 
						|
    check: NodeCheckFn, view: ViewData, nodeIndex: number, argType: ArgumentType,
 | 
						|
    values: any[]): any {
 | 
						|
  switch (argType) {
 | 
						|
    case ArgumentType.Inline:
 | 
						|
      return (<any>check)(view, nodeIndex, argType, ...values);
 | 
						|
    case ArgumentType.Dynamic:
 | 
						|
      return check(view, nodeIndex, argType, values);
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
export function createRootView(
 | 
						|
    def: ViewDefinition, context?: any, projectableNodes?: any[][],
 | 
						|
    rootSelectorOrNode?: any): ViewData {
 | 
						|
  initServicesIfNeeded();
 | 
						|
  return Services.createRootView(
 | 
						|
      TestBed.get(Injector), projectableNodes || [], rootSelectorOrNode, def, context);
 | 
						|
}
 | 
						|
 | 
						|
export let removeNodes: Node[];
 | 
						|
beforeEach(() => { removeNodes = []; });
 | 
						|
afterEach(() => { removeNodes.forEach((node) => getDOM().remove(node)); });
 |