92 lines
3.8 KiB
TypeScript
92 lines
3.8 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 {addToViewTree, createLContainer, createLView, createTNode, createTView, getOrCreateTNode, refreshView, renderView} from '../../../src/render3/instructions/shared';
|
|
import {ComponentTemplate, DirectiveDefList} from '../../../src/render3/interfaces/definition';
|
|
import {TAttributes, TNodeType, TViewNode} from '../../../src/render3/interfaces/node';
|
|
import {RendererFactory3, domRendererFactory3} from '../../../src/render3/interfaces/renderer';
|
|
import {LView, LViewFlags, TView, TViewType} from '../../../src/render3/interfaces/view';
|
|
import {insertView} from '../../../src/render3/node_manipulation';
|
|
|
|
import {MicroBenchmarkRendererFactory} from './noop_renderer';
|
|
|
|
const isBrowser = typeof process === 'undefined';
|
|
const rendererFactory: RendererFactory3 =
|
|
isBrowser ? domRendererFactory3 : new MicroBenchmarkRendererFactory;
|
|
const renderer = rendererFactory.createRenderer(null, null);
|
|
|
|
export function createAndRenderLView(parentLView: LView, tView: TView, hostTNode: TViewNode) {
|
|
const embeddedLView = createLView(
|
|
parentLView, tView, {}, LViewFlags.CheckAlways, null, hostTNode, rendererFactory, renderer);
|
|
renderView(embeddedLView, tView, null);
|
|
}
|
|
|
|
export function setupRootViewWithEmbeddedViews(
|
|
templateFn: ComponentTemplate<any>| null, decls: number, vars: number, noOfViews: number,
|
|
embeddedViewContext: any = {}, consts: TAttributes[] | null = null,
|
|
directiveRegistry: DirectiveDefList | null = null): LView {
|
|
return setupTestHarness(
|
|
templateFn, decls, vars, noOfViews, embeddedViewContext, consts, directiveRegistry)
|
|
.hostLView;
|
|
}
|
|
|
|
export interface TestHarness {
|
|
hostLView: LView;
|
|
hostTView: TView;
|
|
embeddedTView: TView;
|
|
createEmbeddedLView(): LView;
|
|
detectChanges(): void;
|
|
}
|
|
|
|
export function setupTestHarness(
|
|
templateFn: ComponentTemplate<any>| null, decls: number, vars: number, noOfViews: number,
|
|
embeddedViewContext: any = {}, consts: TAttributes[] | null = null,
|
|
directiveRegistry: DirectiveDefList | null = null): TestHarness {
|
|
// Create a root view with a container
|
|
const hostTView = createTView(TViewType.Root, -1, null, 1, 0, null, null, null, null, consts);
|
|
const tContainerNode = getOrCreateTNode(hostTView, null, 0, TNodeType.Container, null, null);
|
|
const hostNode = renderer.createElement('div');
|
|
const hostLView = createLView(
|
|
null, hostTView, {}, LViewFlags.CheckAlways | LViewFlags.IsRoot, hostNode, null,
|
|
rendererFactory, renderer);
|
|
const mockRCommentNode = renderer.createComment('');
|
|
const lContainer =
|
|
createLContainer(mockRCommentNode, hostLView, mockRCommentNode, tContainerNode);
|
|
addToViewTree(hostLView, lContainer);
|
|
|
|
|
|
// create test embedded views
|
|
const embeddedTView = createTView(
|
|
TViewType.Embedded, -1, templateFn, decls, vars, directiveRegistry, null, null, null, consts);
|
|
const viewTNode = createTNode(hostTView, null, TNodeType.View, -1, null, null) as TViewNode;
|
|
|
|
function createEmbeddedLView(): LView {
|
|
const embeddedLView = createLView(
|
|
hostLView, embeddedTView, embeddedViewContext, LViewFlags.CheckAlways, null, viewTNode,
|
|
rendererFactory, renderer);
|
|
renderView(embeddedLView, embeddedTView, embeddedViewContext);
|
|
return embeddedLView;
|
|
}
|
|
|
|
function detectChanges(): void {
|
|
refreshView(hostLView, hostTView, hostTView.template, embeddedViewContext);
|
|
}
|
|
|
|
// create embedded views and add them to the container
|
|
for (let i = 0; i < noOfViews; i++) {
|
|
insertView(createEmbeddedLView(), lContainer, i);
|
|
}
|
|
|
|
return {
|
|
hostLView: hostLView,
|
|
hostTView: hostTView,
|
|
embeddedTView: embeddedTView,
|
|
createEmbeddedLView: createEmbeddedLView,
|
|
detectChanges: detectChanges,
|
|
};
|
|
}
|