/**
* @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 {QueryList, TemplateRef, ViewContainerRef} from '@angular/core';
import {SelectorFlags} from '@angular/core/src/render3/interfaces/projection';
import {AttributeMarker, detectChanges, ɵɵdefineComponent, ɵɵdefineDirective, ɵɵdirectiveInject, ɵɵloadViewQuery, ɵɵqueryRefresh, ɵɵreference, ɵɵtemplateRefExtractor, ɵɵviewQuery} from '../../src/render3/index';
import {ɵɵbind, ɵɵcontainer, ɵɵcontainerRefreshEnd, ɵɵcontainerRefreshStart, ɵɵelement, ɵɵelementContainerEnd, ɵɵelementContainerStart, ɵɵelementEnd, ɵɵelementProperty, ɵɵelementStart, ɵɵembeddedViewEnd, ɵɵembeddedViewStart, ɵɵinterpolation1, ɵɵprojection, ɵɵprojectionDef, ɵɵtemplate, ɵɵtext, ɵɵtextBinding} from '../../src/render3/instructions/all';
import {RenderFlags} from '../../src/render3/interfaces/definition';
import {NgForOf, NgIf} from './common_with_def';
import {ComponentFixture, createComponent, getDirectiveOnNode, renderComponent, toHtml} from './render_util';
describe('content projection', () => {
it('should project content', () => {
/**
*
*/
const Child = createComponent('child', function(rf: RenderFlags, ctx: any) {
if (rf & RenderFlags.Create) {
ɵɵprojectionDef();
ɵɵelementStart(0, 'div');
{ ɵɵprojection(1); }
ɵɵelementEnd();
}
}, 2);
/**
* content
*/
const Parent = createComponent('parent', function(rf: RenderFlags, ctx: any) {
if (rf & RenderFlags.Create) {
ɵɵelementStart(0, 'child');
{ ɵɵtext(1, 'content'); }
ɵɵelementEnd();
}
}, 2, 0, [Child]);
const parent = renderComponent(Parent);
expect(toHtml(parent)).toEqual('content
');
});
it('should project content when is at a template root', () => {
/** */
const Child = createComponent('child', function(rf: RenderFlags, ctx: any) {
if (rf & RenderFlags.Create) {
ɵɵprojectionDef();
ɵɵprojection(0);
}
}, 1);
/** content */
const Parent = createComponent('parent', function(rf: RenderFlags, ctx: any) {
if (rf & RenderFlags.Create) {
ɵɵelementStart(0, 'child');
{ ɵɵtext(1, 'content'); }
ɵɵelementEnd();
}
}, 2, 0, [Child]);
const parent = renderComponent(Parent);
expect(toHtml(parent)).toEqual('content ');
});
it('should project content with siblings', () => {
/** */
const Child = createComponent('child', function(rf: RenderFlags, ctx: any) {
if (rf & RenderFlags.Create) {
ɵɵprojectionDef();
ɵɵprojection(0);
}
}, 1);
/**
*
* before
* content
* after
*
*/
const Parent = createComponent('parent', function(rf: RenderFlags, ctx: any) {
if (rf & RenderFlags.Create) {
ɵɵelementStart(0, 'child');
{
ɵɵtext(1, 'before');
ɵɵelementStart(2, 'div');
{ ɵɵtext(3, 'content'); }
ɵɵelementEnd();
ɵɵtext(4, 'after');
}
ɵɵelementEnd();
}
}, 5, 0, [Child]);
const parent = renderComponent(Parent);
expect(toHtml(parent)).toEqual('beforecontent
after ');
});
it('should re-project content when root.', () => {
/**
*/
const GrandChild = createComponent('grand-child', function(rf: RenderFlags, ctx: any) {
if (rf & RenderFlags.Create) {
ɵɵprojectionDef();
ɵɵelementStart(0, 'div');
{ ɵɵprojection(1); }
ɵɵelementEnd();
}
}, 2);
/** */
const Child = createComponent('child', function(rf: RenderFlags, ctx: any) {
if (rf & RenderFlags.Create) {
ɵɵprojectionDef();
ɵɵelementStart(0, 'grand-child');
{ ɵɵprojection(1); }
ɵɵelementEnd();
}
}, 2, 0, [GrandChild]);
/** Hello World! */
const Parent = createComponent('parent', function(rf: RenderFlags, ctx: any) {
if (rf & RenderFlags.Create) {
ɵɵelementStart(0, 'child');
{
ɵɵelementStart(1, 'b');
ɵɵtext(2, 'Hello');
ɵɵelementEnd();
ɵɵtext(3, 'World!');
}
ɵɵelementEnd();
}
}, 4, 0, [Child]);
const parent = renderComponent(Parent);
expect(toHtml(parent))
.toEqual('Hello World!
');
});
it('should project components', () => {
/**
*/
const Child = createComponent('child', (rf: RenderFlags, ctx: any) => {
if (rf & RenderFlags.Create) {
ɵɵprojectionDef();
ɵɵelementStart(0, 'div');
{ ɵɵprojection(1); }
ɵɵelementEnd();
}
}, 2);
const ProjectedComp = createComponent('projected-comp', (rf: RenderFlags, ctx: any) => {
if (rf & RenderFlags.Create) {
ɵɵtext(0, 'content');
}
}, 1);
/**
*
*
*
*/
const Parent = createComponent('parent', (rf: RenderFlags, ctx: any) => {
if (rf & RenderFlags.Create) {
ɵɵelementStart(0, 'child');
{ ɵɵelement(1, 'projected-comp'); }
ɵɵelementEnd();
}
}, 2, 0, [Child, ProjectedComp]);
const parent = renderComponent(Parent);
expect(toHtml(parent))
.toEqual(' ');
});
it('should project components that have their own projection', () => {
/**
*/
const Child = createComponent('child', (rf: RenderFlags, ctx: any) => {
if (rf & RenderFlags.Create) {
ɵɵprojectionDef();
ɵɵelementStart(0, 'div');
{ ɵɵprojection(1); }
ɵɵelementEnd();
}
}, 2);
/**
*/
const ProjectedComp = createComponent('projected-comp', (rf: RenderFlags, ctx: any) => {
if (rf & RenderFlags.Create) {
ɵɵprojectionDef();
ɵɵelementStart(0, 'p');
ɵɵprojection(1);
ɵɵelementEnd();
}
}, 2);
/**
*
*
* Some content
* Other content
*
*
*/
const Parent = createComponent('parent', (rf: RenderFlags, ctx: any) => {
if (rf & RenderFlags.Create) {
ɵɵelementStart(0, 'child');
{
ɵɵelementStart(1, 'projected-comp');
{
ɵɵelementStart(2, 'div');
ɵɵtext(3, 'Some content');
ɵɵelementEnd();
ɵɵtext(4, 'Other content');
}
ɵɵelementEnd();
}
ɵɵelementEnd();
}
}, 5, 0, [Child, ProjectedComp]);
const parent = renderComponent(Parent);
expect(toHtml(parent))
.toEqual(
'
Some content
Other content ');
});
it('should project containers', () => {
/**
*/
const Child = createComponent('child', function(rf: RenderFlags, ctx: any) {
if (rf & RenderFlags.Create) {
ɵɵprojectionDef();
ɵɵelementStart(0, 'div');
{ ɵɵprojection(1); }
ɵɵelementEnd();
}
}, 2);
/**
*
* (
* % if (value) {
* content
* % }
* )
*
*/
const Parent = createComponent('parent', function(rf: RenderFlags, ctx: {value: any}) {
if (rf & RenderFlags.Create) {
ɵɵelementStart(0, 'child');
{
ɵɵtext(1, '(');
ɵɵcontainer(2);
ɵɵtext(3, ')');
}
ɵɵelementEnd();
}
if (rf & RenderFlags.Update) {
ɵɵcontainerRefreshStart(2);
{
if (ctx.value) {
let rf0 = ɵɵembeddedViewStart(0, 1, 0);
if (rf0 & RenderFlags.Create) {
ɵɵtext(0, 'content');
}
ɵɵembeddedViewEnd();
}
}
ɵɵcontainerRefreshEnd();
}
}, 4, 0, [Child]);
const parent = renderComponent(Parent);
expect(toHtml(parent)).toEqual('()
');
parent.value = true;
detectChanges(parent);
expect(toHtml(parent)).toEqual('(content)
');
parent.value = false;
detectChanges(parent);
expect(toHtml(parent)).toEqual('()
');
});
it('should project containers into root', () => {
/** */
const Child = createComponent('child', function(rf: RenderFlags, ctx: any) {
if (rf & RenderFlags.Create) {
ɵɵprojectionDef();
ɵɵprojection(0);
}
}, 1);
/**
*
* % if (value) {
* content
* % }
*
*/
const Parent = createComponent('parent', function(rf: RenderFlags, ctx: {value: any}) {
if (rf & RenderFlags.Create) {
ɵɵelementStart(0, 'child');
{ ɵɵcontainer(1); }
ɵɵelementEnd();
}
if (rf & RenderFlags.Update) {
ɵɵcontainerRefreshStart(1);
{
if (ctx.value) {
let rf0 = ɵɵembeddedViewStart(0, 1, 0);
if (rf0 & RenderFlags.Create) {
ɵɵtext(0, 'content');
}
ɵɵembeddedViewEnd();
}
}
ɵɵcontainerRefreshEnd();
}
}, 2, 0, [Child]);
const parent = renderComponent(Parent);
expect(toHtml(parent)).toEqual(' ');
parent.value = true;
detectChanges(parent);
expect(toHtml(parent)).toEqual('content ');
parent.value = false;
detectChanges(parent);
expect(toHtml(parent)).toEqual(' ');
});
it('should project containers with if-else.', () => {
/**
*/
const Child = createComponent('child', function(rf: RenderFlags, ctx: any) {
if (rf & RenderFlags.Create) {
ɵɵprojectionDef();
ɵɵelementStart(0, 'div');
{ ɵɵprojection(1); }
ɵɵelementEnd();
}
}, 2);
/**
*
* (
* % if (value) {
* content
* % } else {
* else
* % }
* )
*
*/
const Parent = createComponent('parent', function(rf: RenderFlags, ctx: {value: any}) {
if (rf & RenderFlags.Create) {
ɵɵelementStart(0, 'child');
{
ɵɵtext(1, '(');
ɵɵcontainer(2);
ɵɵtext(3, ')');
}
ɵɵelementEnd();
}
if (rf & RenderFlags.Update) {
ɵɵcontainerRefreshStart(2);
{
if (ctx.value) {
let rf0 = ɵɵembeddedViewStart(0, 1, 0);
if (rf0 & RenderFlags.Create) {
ɵɵtext(0, 'content');
}
ɵɵembeddedViewEnd();
} else {
if (ɵɵembeddedViewStart(1, 1, 0)) {
ɵɵtext(0, 'else');
}
ɵɵembeddedViewEnd();
}
}
ɵɵcontainerRefreshEnd();
}
}, 4, 0, [Child]);
const parent = renderComponent(Parent);
expect(toHtml(parent)).toEqual('(else)
');
parent.value = true;
detectChanges(parent);
expect(toHtml(parent)).toEqual('(content)
');
parent.value = false;
detectChanges(parent);
expect(toHtml(parent)).toEqual('(else)
');
});
it('should support projection into embedded views', () => {
let childCmptInstance: any;
/**
*
* % if (!skipContent) {
*
*
*
* % }
*
*/
const Child = createComponent('child', function(rf: RenderFlags, ctx: any) {
if (rf & RenderFlags.Create) {
ɵɵprojectionDef();
ɵɵelementStart(0, 'div');
{ ɵɵcontainer(1); }
ɵɵelementEnd();
}
if (rf & RenderFlags.Update) {
ɵɵcontainerRefreshStart(1);
{
if (!ctx.skipContent) {
let rf0 = ɵɵembeddedViewStart(0, 2, 0);
if (rf0 & RenderFlags.Create) {
ɵɵelementStart(0, 'span');
ɵɵprojection(1);
ɵɵelementEnd();
}
ɵɵembeddedViewEnd();
}
}
ɵɵcontainerRefreshEnd();
}
}, 2, 0);
/**
*
* text
* content
*
*/
const Parent = createComponent('parent', function(rf: RenderFlags, ctx: any) {
if (rf & RenderFlags.Create) {
ɵɵelementStart(0, 'child');
{
ɵɵelementStart(1, 'div');
{ ɵɵtext(2, 'text'); }
ɵɵelementEnd();
ɵɵtext(3, 'content');
}
ɵɵelementEnd();
// testing
childCmptInstance = getDirectiveOnNode(0);
}
}, 4, 0, [Child]);
const parent = renderComponent(Parent);
expect(toHtml(parent)).toEqual(' ');
childCmptInstance.skipContent = true;
detectChanges(parent);
expect(toHtml(parent)).toEqual('
');
});
it('should support projection into embedded views when no projected nodes', () => {
let childCmptInstance: any;
/**
*
* % if (!skipContent) {
*
* text
* % }
*
*/
const Child = createComponent('child', function(rf: RenderFlags, ctx: any) {
if (rf & RenderFlags.Create) {
ɵɵprojectionDef();
ɵɵelementStart(0, 'div');
{ ɵɵcontainer(1); }
ɵɵelementEnd();
}
if (rf & RenderFlags.Update) {
ɵɵcontainerRefreshStart(1);
{
if (!ctx.skipContent) {
let rf0 = ɵɵembeddedViewStart(0, 2, 0);
if (rf0 & RenderFlags.Create) {
ɵɵprojection(0);
ɵɵtext(1, 'text');
}
ɵɵembeddedViewEnd();
}
}
ɵɵcontainerRefreshEnd();
}
}, 2);
/** */
const Parent = createComponent('parent', function(rf: RenderFlags, ctx: any) {
if (rf & RenderFlags.Create) {
ɵɵelement(0, 'child');
// testing
childCmptInstance = getDirectiveOnNode(0);
}
}, 1, 0, [Child]);
const parent = renderComponent(Parent);
expect(toHtml(parent)).toEqual('text
');
childCmptInstance.skipContent = true;
detectChanges(parent);
expect(toHtml(parent)).toEqual('
');
});
it('should support projection into embedded views when ng-content is a root node of an embedded view',
() => {
let childCmptInstance: any;
/**
*
* % if (!skipContent) {
*
* % }
*
*/
const Child = createComponent('child', function(rf: RenderFlags, ctx: any) {
if (rf & RenderFlags.Create) {
ɵɵprojectionDef();
ɵɵelementStart(0, 'div');
{ ɵɵcontainer(1); }
ɵɵelementEnd();
}
if (rf & RenderFlags.Update) {
ɵɵcontainerRefreshStart(1);
{
if (!ctx.skipContent) {
let rf0 = ɵɵembeddedViewStart(0, 1, 0);
if (rf0 & RenderFlags.Create) {
ɵɵprojection(0);
}
ɵɵembeddedViewEnd();
}
}
ɵɵcontainerRefreshEnd();
}
}, 2);
/**
* content
*/
const Parent = createComponent('parent', function(rf: RenderFlags, ctx: any) {
if (rf & RenderFlags.Create) {
ɵɵelementStart(0, 'child');
{
childCmptInstance = getDirectiveOnNode(0);
ɵɵtext(1, 'content');
}
ɵɵelementEnd();
}
}, 2, 0, [Child]);
const parent = renderComponent(Parent);
expect(toHtml(parent)).toEqual('content
');
childCmptInstance.skipContent = true;
detectChanges(parent);
expect(toHtml(parent)).toEqual('
');
});
it('should project containers into containers', () => {
/**
*
* Before (inside)
* % if (!skipContent) {
*
* % }
* After (inside)
*
*/
const Child = createComponent('child', function(rf: RenderFlags, ctx: any) {
if (rf & RenderFlags.Create) {
ɵɵprojectionDef();
ɵɵelementStart(0, 'div');
{
ɵɵtext(1, 'Before (inside)-');
ɵɵcontainer(2);
ɵɵtext(3, '-After (inside)');
}
ɵɵelementEnd();
}
if (rf & RenderFlags.Update) {
ɵɵcontainerRefreshStart(2);
{
if (!ctx.skipContent) {
let rf0 = ɵɵembeddedViewStart(0, 1, 0);
if (rf0 & RenderFlags.Create) {
ɵɵprojection(0);
}
ɵɵembeddedViewEnd();
}
}
ɵɵcontainerRefreshEnd();
}
}, 4);
/**
*
* Before text-
* % if (!skipContent) {
* content
* % }
* -After text
*
*/
const Parent = createComponent('parent', function(rf: RenderFlags, ctx: any) {
if (rf & RenderFlags.Create) {
ɵɵelementStart(0, 'child');
{
ɵɵtext(1, 'Before text-');
ɵɵcontainer(2);
ɵɵtext(3, '-After text');
}
ɵɵelementEnd();
}
if (rf & RenderFlags.Update) {
ɵɵcontainerRefreshStart(2);
{
if (!ctx.skipContent) {
let rf0 = ɵɵembeddedViewStart(0, 1, 0);
if (rf0 & RenderFlags.Create) {
ɵɵtext(0, 'content');
}
ɵɵembeddedViewEnd();
}
}
ɵɵcontainerRefreshEnd();
}
}, 4, 0, [Child]);
const fixture = new ComponentFixture(Parent);
expect(fixture.html)
.toEqual(
'Before (inside)-Before text-content-After text-After (inside)
');
fixture.component.skipContent = true;
fixture.update();
expect(fixture.html)
.toEqual(
'Before (inside)-Before text--After text-After (inside)
');
});
it('should re-project containers into containers', () => {
/**
*
* % if (!skipContent) {
*
* % }
*
*/
const Child = createComponent('child', function(rf: RenderFlags, ctx: any) {
if (rf & RenderFlags.Create) {
ɵɵprojectionDef();
ɵɵelementStart(0, 'div');
{ ɵɵcontainer(1); }
ɵɵelementEnd();
}
if (rf & RenderFlags.Update) {
ɵɵcontainerRefreshStart(1);
{
if (!ctx.skipContent) {
let rf0 = ɵɵembeddedViewStart(0, 1, 0);
if (rf0 & RenderFlags.Create) {
ɵɵprojection(0);
}
ɵɵembeddedViewEnd();
}
}
ɵɵcontainerRefreshEnd();
}
}, 2);
/**
*
* Before text
* % if (!skipContent) {
*
* % }
* -After text
*
*/
const Parent = createComponent('parent', function(rf: RenderFlags, ctx: any) {
if (rf & RenderFlags.Create) {
ɵɵprojectionDef();
ɵɵelementStart(0, 'child');
{
ɵɵtext(1, 'Before text');
ɵɵcontainer(2);
ɵɵtext(3, '-After text');
}
ɵɵelementEnd();
}
if (rf & RenderFlags.Update) {
ɵɵcontainerRefreshStart(2);
{
if (!ctx.skipContent) {
let rf0 = ɵɵembeddedViewStart(0, 1, 0);
if (rf0 & RenderFlags.Create) {
ɵɵprojection(0);
}
ɵɵembeddedViewEnd();
}
}
ɵɵcontainerRefreshEnd();
}
}, 4, 0, [Child]);
let parent: any;
/** text
*/
const App = createComponent('app', function(rf: RenderFlags, ctx: any) {
if (rf & RenderFlags.Create) {
ɵɵelementStart(0, 'parent');
{
ɵɵelementStart(1, 'p');
{ ɵɵtext(2, 'text'); }
ɵɵelementEnd();
}
ɵɵelementEnd();
// testing
parent = getDirectiveOnNode(0);
}
}, 3, 0, [Parent]);
const fixture = new ComponentFixture(App);
expect(fixture.html)
.toEqual('Before text
text
-After text
');
parent.skipContent = true;
fixture.update();
expect(fixture.html)
.toEqual('Before text-After text
');
});
it('should support projection into embedded views when ng-content is a root node of an embedded view, with other nodes after',
() => {
let childCmptInstance: any;
/**
*
* % if (!skipContent) {
* before- -after
* % }
*
*/
const Child = createComponent('child', function(rf: RenderFlags, ctx: any) {
if (rf & RenderFlags.Create) {
ɵɵprojectionDef();
ɵɵelementStart(0, 'div');
{ ɵɵcontainer(1); }
ɵɵelementEnd();
}
if (rf & RenderFlags.Update) {
ɵɵcontainerRefreshStart(1);
{
if (!ctx.skipContent) {
let rf0 = ɵɵembeddedViewStart(0, 3, 0);
if (rf0 & RenderFlags.Create) {
ɵɵtext(0, 'before-');
ɵɵprojection(1);
ɵɵtext(2, '-after');
}
ɵɵembeddedViewEnd();
}
}
ɵɵcontainerRefreshEnd();
}
}, 2);
/**
* content
*/
const Parent = createComponent('parent', function(rf: RenderFlags, ctx: any) {
if (rf & RenderFlags.Create) {
ɵɵelementStart(0, 'child');
{
childCmptInstance = getDirectiveOnNode(0);
ɵɵtext(1, 'content');
}
ɵɵelementEnd();
}
}, 2, 0, [Child]);
const parent = renderComponent(Parent);
expect(toHtml(parent)).toEqual('before-content-after
');
childCmptInstance.skipContent = true;
detectChanges(parent);
expect(toHtml(parent)).toEqual('
');
});
it('should project into dynamic views (with createEmbeddedView)', () => {
/**
* Before-
*
*
*
* -After
*/
const Child = createComponent('child', function(rf: RenderFlags, ctx: any) {
if (rf & RenderFlags.Create) {
ɵɵprojectionDef();
ɵɵtext(0, 'Before-');
ɵɵtemplate(1, IfTemplate, 1, 0, 'ng-template', [AttributeMarker.Bindings, 'ngIf']);
ɵɵtext(2, '-After');
}
if (rf & RenderFlags.Update) {
ɵɵelementProperty(1, 'ngIf', ɵɵbind(ctx.showing));
}
}, 3, 1, [NgIf]);
function IfTemplate(rf1: RenderFlags, ctx: any) {
if (rf1 & RenderFlags.Create) {
ɵɵprojection(0);
}
}
let child: {showing: boolean};
/**
*
* A
* Some text
*
*/
const App = createComponent('app', function(rf: RenderFlags, ctx: any) {
if (rf & RenderFlags.Create) {
ɵɵelementStart(0, 'child');
{
ɵɵelementStart(1, 'div');
{ ɵɵtext(2, 'A'); }
ɵɵelementEnd();
ɵɵtext(3, 'Some text');
}
ɵɵelementEnd();
// testing
child = getDirectiveOnNode(0);
}
}, 4, 0, [Child]);
const fixture = new ComponentFixture(App);
child !.showing = true;
fixture.update();
expect(fixture.html).toEqual('Before-A
Some text-After ');
child !.showing = false;
fixture.update();
expect(fixture.html).toEqual('Before--After ');
child !.showing = true;
fixture.update();
expect(fixture.html).toEqual('Before-A
Some text-After ');
});
it('should project into dynamic views (with insertion)', () => {
/**
* Before-
*
*
*
* -After
*/
const Child = createComponent('child', function(rf: RenderFlags, ctx: any) {
if (rf & RenderFlags.Create) {
ɵɵprojectionDef();
ɵɵtext(0, 'Before-');
ɵɵtemplate(1, IfTemplate, 1, 0, 'ng-template', [AttributeMarker.Bindings, 'ngIf']);
ɵɵtext(2, '-After');
}
if (rf & RenderFlags.Update) {
ɵɵelementProperty(1, 'ngIf', ɵɵbind(ctx.showing));
}
}, 3, 1, [NgIf]);
function IfTemplate(rf: RenderFlags, ctx: any) {
if (rf & RenderFlags.Create) {
ɵɵprojection(0);
}
}
let child: {showing: boolean};
/**
*
* A
* Some text
*
*/
const App = createComponent('app', function(rf: RenderFlags, ctx: any) {
if (rf & RenderFlags.Create) {
ɵɵelementStart(0, 'child');
{
ɵɵelementStart(1, 'div');
{ ɵɵtext(2, 'A'); }
ɵɵelementEnd();
ɵɵtext(3, 'Some text');
}
ɵɵelementEnd();
// testing
child = getDirectiveOnNode(0);
}
}, 4, 0, [Child]);
const fixture = new ComponentFixture(App);
child !.showing = true;
fixture.update();
expect(fixture.html).toEqual('Before-A
Some text-After ');
child !.showing = false;
fixture.update();
expect(fixture.html).toEqual('Before--After ');
child !.showing = true;
fixture.update();
expect(fixture.html).toEqual('Before-A
Some text-After ');
});
it('should project into dynamic views with specific selectors', () => {
/**
*
* Before-
*
*
*
* -After
*/
const Child = createComponent('child', function(rf: RenderFlags, ctx: any) {
if (rf & RenderFlags.Create) {
ɵɵprojectionDef([[['div']]]);
ɵɵprojection(0);
ɵɵtext(1, 'Before-');
ɵɵtemplate(2, IfTemplate, 1, 0, 'ng-template', [AttributeMarker.Bindings, 'ngIf']);
ɵɵtext(3, '-After');
}
if (rf & RenderFlags.Update) {
ɵɵelementProperty(2, 'ngIf', ɵɵbind(ctx.showing));
}
}, 4, 1, [NgIf]);
function IfTemplate(rf1: RenderFlags) {
if (rf1 & RenderFlags.Create) {
ɵɵprojection(0, 1);
}
}
let child: {showing: boolean};
/**
*
* A
* B
*
*/
const App = createComponent('app', function(rf: RenderFlags, ctx: any) {
if (rf & RenderFlags.Create) {
ɵɵelementStart(0, 'child');
{
ɵɵelementStart(1, 'div');
{ ɵɵtext(2, 'A'); }
ɵɵelementEnd();
ɵɵelementStart(3, 'span');
{ ɵɵtext(4, 'B'); }
ɵɵelementEnd();
}
ɵɵelementEnd();
// testing
child = getDirectiveOnNode(0);
}
}, 5, 0, [Child]);
const fixture = new ComponentFixture(App);
child !.showing = true;
fixture.update();
expect(fixture.html).toEqual('B Before-A
-After ');
child !.showing = false;
fixture.update();
expect(fixture.html).toEqual('B Before--After ');
child !.showing = true;
fixture.update();
expect(fixture.html).toEqual('B Before-A
-After ');
});
it('should project if is in a template that has different declaration/insertion points',
() => {
let triggerDir !: Trigger;
function NgTemplate(rf: RenderFlags, ctx: any) {
if (rf & RenderFlags.Create) {
ɵɵprojection(0);
}
}
/**
*
*
*
*/
const Comp = createComponent(
'comp',
(rf: RenderFlags, ctx: any) => {
if (rf & RenderFlags.Create) {
ɵɵprojectionDef();
ɵɵtemplate(1, NgTemplate, 1, 0, 'ng-template', null, null, ɵɵtemplateRefExtractor);
}
},
2, 0, [], [],
function(rf: RenderFlags, ctx: any) {
/** @ViewChild(TemplateRef) template: TemplateRef */
if (rf & RenderFlags.Create) {
ɵɵviewQuery(TemplateRef as any, true, null);
}
if (rf & RenderFlags.Update) {
let tmp: any;
ɵɵqueryRefresh(tmp = ɵɵloadViewQuery>()) &&
(ctx.template = tmp.first);
}
});
class Trigger {
// @Input()
trigger: any;
constructor(public vcr: ViewContainerRef) {}
open() { this.vcr.createEmbeddedView(this.trigger.template); }
static ngComponentDef = ɵɵdefineDirective({
type: Trigger,
selectors: [['', 'trigger', '']],
factory: () => triggerDir = new Trigger(ɵɵdirectiveInject(ViewContainerRef as any)),
inputs: {trigger: 'trigger'}
});
}
/**
*
*
* Some content
*
*/
const App = createComponent('app', (rf: RenderFlags, ctx: any) => {
if (rf & RenderFlags.Create) {
ɵɵelement(0, 'button', [AttributeMarker.Bindings, 'trigger']);
ɵɵelementStart(1, 'comp', null, ['comp', '']);
{ ɵɵtext(3, 'Some content'); }
ɵɵelementEnd();
}
if (rf & RenderFlags.Update) {
const comp = ɵɵreference(2);
ɵɵelementProperty(0, 'trigger', ɵɵbind(comp));
}
}, 4, 1, [Comp, Trigger]);
const fixture = new ComponentFixture(App);
expect(fixture.html).toEqual(` `);
triggerDir.open();
expect(fixture.html).toEqual(` Some content `);
});
it('should project nodes into the last ng-content', () => {
/**
*
*
*/
const Child = createComponent('child', function(rf: RenderFlags, ctx: any) {
if (rf & RenderFlags.Create) {
ɵɵprojectionDef();
ɵɵelementStart(0, 'div');
{ ɵɵprojection(1); }
ɵɵelementEnd();
ɵɵelementStart(2, 'span');
{ ɵɵprojection(3); }
ɵɵelementEnd();
}
}, 4);
/**
* content
*/
const Parent = createComponent('parent', function(rf: RenderFlags, ctx: any) {
if (rf & RenderFlags.Create) {
ɵɵelementStart(0, 'child');
{ ɵɵtext(1, 'content'); }
ɵɵelementEnd();
}
}, 2, 0, [Child]);
const parent = renderComponent(Parent);
expect(toHtml(parent)).toEqual('
content ');
});
/**
* Warning: this test is _not_ in-line with what Angular does atm.
* Moreover the current implementation logic will result in DOM nodes
* being re-assigned from one parent to another. Proposal: have compiler
* to remove all but the latest occurrence of so we generate
* only one P(n, m, 0) instruction. It would make it consistent with the
* current Angular behavior:
* http://plnkr.co/edit/OAYkNawTDPkYBFTqovTP?p=preview
*/
it('should project nodes into the last available ng-content', () => {
let childCmptInstance: any;
/**
*
*
* % if (show) {
*
* % }
*
*/
const Child = createComponent('child', function(rf: RenderFlags, ctx: any) {
if (rf & RenderFlags.Create) {
ɵɵprojectionDef();
ɵɵprojection(0);
ɵɵelementStart(1, 'div');
{ ɵɵcontainer(2); }
ɵɵelementEnd();
}
if (rf & RenderFlags.Update) {
ɵɵcontainerRefreshStart(2);
{
if (ctx.show) {
let rf0 = ɵɵembeddedViewStart(0, 1, 0);
if (rf0 & RenderFlags.Create) {
ɵɵprojection(0);
}
ɵɵembeddedViewEnd();
}
}
ɵɵcontainerRefreshEnd();
}
}, 3);
/**
* content
*/
const Parent = createComponent('parent', function(rf: RenderFlags, ctx: any) {
if (rf & RenderFlags.Create) {
ɵɵelementStart(0, 'child');
{
childCmptInstance = getDirectiveOnNode(0);
ɵɵtext(1, 'content');
}
ɵɵelementEnd();
}
}, 2, 0, [Child]);
const parent = renderComponent(Parent);
expect(toHtml(parent)).toEqual('content
');
childCmptInstance.show = true;
detectChanges(parent);
expect(toHtml(parent)).toEqual('content
');
});
// https://stackblitz.com/edit/angular-ceqmnw?file=src%2Fapp%2Fapp.component.ts
it('should project nodes into the last ng-content unrolled by ngFor', () => {
const items = [1, 2];
/**
({{index}}):
*/
const Child = createComponent('child', function(rf: RenderFlags, ctx: any) {
if (rf & RenderFlags.Create) {
ɵɵprojectionDef();
{ ɵɵtemplate(0, ForTemplate, 3, 1, 'div', [AttributeMarker.Template, 'ngFor', 'ngForOf']); }
}
if (rf & RenderFlags.Update) {
ɵɵelementProperty(0, 'ngForOf', ɵɵbind(items));
}
}, 1, 1, [NgForOf]);
function ForTemplate(rf1: RenderFlags, ctx: {index: number}) {
if (rf1 & RenderFlags.Create) {
ɵɵelementStart(0, 'div');
ɵɵtext(1);
ɵɵprojection(2);
ɵɵelementEnd();
}
if (rf1 & RenderFlags.Update) {
ɵɵtextBinding(1, ɵɵinterpolation1('(', ctx.index, '):'));
}
}
/**
* content
*/
const Parent = createComponent('parent', function(rf: RenderFlags, ctx: any) {
if (rf & RenderFlags.Create) {
ɵɵelementStart(0, 'child');
{ ɵɵtext(1, 'content'); }
ɵɵelementEnd();
}
}, 2, 0, [Child]);
const parent = renderComponent(Parent);
expect(toHtml(parent)).toEqual('(0):
(1):content
');
});
it('should project with multiple instances of a component with projection', () => {
const ProjectionComp = createComponent('projection-comp', function(rf: RenderFlags, ctx: any) {
if (rf & RenderFlags.Create) {
ɵɵprojectionDef();
ɵɵtext(0, 'Before');
ɵɵprojection(1);
ɵɵtext(2, 'After');
}
}, 3);
/**
*
* A
* 123
*
*
* B
* 456
*
*/
const AppComp = createComponent('app-comp', function(rf: RenderFlags, ctx: any) {
if (rf & RenderFlags.Create) {
ɵɵelementStart(0, 'projection-comp');
{
ɵɵelementStart(1, 'div');
{ ɵɵtext(2, 'A'); }
ɵɵelementEnd();
ɵɵelementStart(3, 'p');
{ ɵɵtext(4, '123'); }
ɵɵelementEnd();
}
ɵɵelementEnd();
ɵɵelementStart(5, 'projection-comp');
{
ɵɵelementStart(6, 'div');
{ ɵɵtext(7, 'B'); }
ɵɵelementEnd();
ɵɵelementStart(8, 'p');
{ ɵɵtext(9, '456'); }
ɵɵelementEnd();
}
ɵɵelementEnd();
}
}, 10, 0, [ProjectionComp]);
const fixture = new ComponentFixture(AppComp);
fixture.update();
expect(fixture.html)
.toEqual(
'BeforeA
123
After ' +
'BeforeB
456
After ');
});
it('should re-project with multiple instances of a component with projection', () => {
/**
* Before
*
* After
*/
const ProjectionComp = createComponent('projection-comp', function(rf: RenderFlags, ctx: any) {
if (rf & RenderFlags.Create) {
ɵɵprojectionDef();
ɵɵtext(0, 'Before');
ɵɵprojection(1);
ɵɵtext(2, 'After');
}
}, 3);
/**
*
* A
*
* 123
*
*
* B
* 456
*
*/
const ProjectionParent = createComponent('parent-comp', function(rf: RenderFlags, ctx: any) {
if (rf & RenderFlags.Create) {
ɵɵprojectionDef();
ɵɵelementStart(0, 'projection-comp');
{
ɵɵelementStart(1, 'div');
{ ɵɵtext(2, 'A'); }
ɵɵelementEnd();
ɵɵprojection(3, 0);
ɵɵelementStart(4, 'p');
{ ɵɵtext(5, '123'); }
ɵɵelementEnd();
}
ɵɵelementEnd();
ɵɵelementStart(6, 'projection-comp');
{
ɵɵelementStart(7, 'div');
{ ɵɵtext(8, 'B'); }
ɵɵelementEnd();
ɵɵelementStart(9, 'p');
{ ɵɵtext(10, '456'); }
ɵɵelementEnd();
}
ɵɵelementEnd();
}
}, 11, 0, [ProjectionComp]);
/**
*
* **ABC**
*
*
* **DEF**
*
*/
const AppComp = createComponent('app-comp', function(rf: RenderFlags, ctx: any) {
if (rf & RenderFlags.Create) {
ɵɵelementStart(0, 'parent-comp');
{ ɵɵtext(1, '**ABC**'); }
ɵɵelementEnd();
ɵɵelementStart(2, 'parent-comp');
{ ɵɵtext(3, '**DEF**'); }
ɵɵelementEnd();
}
}, 4, 0, [ProjectionParent]);
const fixture = new ComponentFixture(AppComp);
fixture.update();
expect(fixture.html)
.toEqual(
'' +
'BeforeA
**ABC**123
After ' +
'BeforeB
456
After ' +
'' +
'BeforeA
**DEF**123
After ' +
'BeforeB
456
After ');
});
it('should project ng-container at the content root', () => {
` `;
const Child = createComponent('child', function(rf: RenderFlags, ctx: any) {
if (rf & RenderFlags.Create) {
ɵɵprojectionDef();
ɵɵprojection(0);
}
}, 1);
`
content
`;
const Parent = createComponent('parent', function(rf: RenderFlags, ctx: any) {
if (rf & RenderFlags.Create) {
ɵɵelementStart(0, 'child');
{
ɵɵelementContainerStart(1);
{
ɵɵelementContainerStart(2);
{ ɵɵtext(3, 'content'); }
ɵɵelementContainerEnd();
}
ɵɵelementContainerEnd();
}
ɵɵelementEnd();
}
}, 4, 0, [Child]);
const parent = renderComponent(Parent);
expect(toHtml(parent)).toEqual('content ');
});
it('should re-project ng-container at the content root', () => {
` `;
const GrandChild = createComponent('grand-child', function(rf: RenderFlags, ctx: any) {
if (rf & RenderFlags.Create) {
ɵɵprojectionDef();
ɵɵprojection(0);
}
}, 1);
`
`;
const Child = createComponent('child', function(rf: RenderFlags, ctx: any) {
if (rf & RenderFlags.Create) {
ɵɵprojectionDef();
ɵɵelementStart(0, 'grand-child');
{ ɵɵprojection(1); }
ɵɵelementEnd();
}
}, 2, 0, [GrandChild]);
`
content
`;
const Parent = createComponent('parent', function(rf: RenderFlags, ctx: any) {
if (rf & RenderFlags.Create) {
ɵɵelementStart(0, 'child');
{
ɵɵelementContainerStart(1);
{
ɵɵelementContainerStart(2);
{ ɵɵtext(3, 'content'); }
ɵɵelementContainerEnd();
}
ɵɵelementContainerEnd();
}
ɵɵelementEnd();
}
}, 4, 0, [Child]);
const parent = renderComponent(Parent);
expect(toHtml(parent)).toEqual('content ');
});
it('should handle projected containers inside other containers', () => {
// Child content
const NestedComp = createComponent('nested-comp', function(rf: RenderFlags, ctx: any) {
if (rf & RenderFlags.Create) {
ɵɵelementStart(0, 'div');
ɵɵtext(1, 'Child content');
ɵɵelementEnd();
}
}, 2, 0, []);
//
const RootComp = createComponent('root-comp', function(rf: RenderFlags, ctx: any) {
if (rf & RenderFlags.Create) {
ɵɵprojectionDef();
ɵɵprojection(0);
}
}, 1, 0, []);
//
//
//
//
//
function MyApp_ng_container_1_child_comp_1_Template(rf: RenderFlags, ctx: any) {
if (rf & RenderFlags.Create) {
ɵɵelement(0, 'nested-comp');
}
}
function MyApp_ng_container_1_Template(rf: RenderFlags, ctx: any) {
if (rf & RenderFlags.Create) {
ɵɵelementContainerStart(0);
ɵɵtemplate(
1, MyApp_ng_container_1_child_comp_1_Template, 1, 0, 'nested-comp',
[AttributeMarker.Template, 'ngIf']);
ɵɵelementContainerEnd();
}
if (rf & RenderFlags.Update) {
const last_r2 = ctx.last;
ɵɵelementProperty(1, 'ngIf', ɵɵbind(!last_r2));
}
}
let myAppInstance: MyApp;
class MyApp {
items = [1, 2];
static ngComponentDef = ɵɵdefineComponent({
type: MyApp,
selectors: [['', 'my-app', '']],
factory: () => myAppInstance = new MyApp(),
consts: 2,
vars: 1,
template: function MyApp_Template(rf: RenderFlags, ctx: any) {
if (rf & RenderFlags.Create) {
ɵɵelementStart(0, 'root-comp');
ɵɵtemplate(
1, MyApp_ng_container_1_Template, 2, 1, 'ng-container',
[AttributeMarker.Template, 'ngFor', 'ngForOf']);
ɵɵelementEnd();
}
if (rf & RenderFlags.Update) {
ɵɵelementProperty(1, 'ngForOf', ɵɵbind(ctx.items));
}
},
directives: [NgForOf, NgIf, NestedComp, RootComp]
});
}
const fixture = new ComponentFixture(MyApp);
fixture.update();
// expecting # of divs to be (items.length - 1), since last element is filtered out by *ngIf,
// this applies to all other assertions below
expect(fixture.hostElement.querySelectorAll('div').length).toBe(1);
myAppInstance !.items = [3, 4, 5];
fixture.update();
expect(fixture.hostElement.querySelectorAll('div').length).toBe(2);
myAppInstance !.items = [6, 7, 8, 9];
fixture.update();
expect(fixture.hostElement.querySelectorAll('div').length).toBe(3);
});
describe('with selectors', () => {
it('should project nodes using attribute selectors', () => {
/**
*
*
*/
const Child = createComponent('child', function(rf: RenderFlags, ctx: any) {
if (rf & RenderFlags.Create) {
ɵɵprojectionDef([[['span', 'title', 'toFirst']], [['span', 'title', 'toSecond']]]);
ɵɵelementStart(0, 'div', ['id', 'first']);
{ ɵɵprojection(1, 1); }
ɵɵelementEnd();
ɵɵelementStart(2, 'div', ['id', 'second']);
{ ɵɵprojection(3, 2); }
ɵɵelementEnd();
}
}, 4);
/**
*
* 1
* 2
*
*/
const Parent = createComponent('parent', function(rf: RenderFlags, ctx: any) {
if (rf & RenderFlags.Create) {
ɵɵelementStart(0, 'child');
{
ɵɵelementStart(1, 'span', ['title', 'toFirst']);
{ ɵɵtext(2, '1'); }
ɵɵelementEnd();
ɵɵelementStart(3, 'span', ['title', 'toSecond']);
{ ɵɵtext(4, '2'); }
ɵɵelementEnd();
}
ɵɵelementEnd();
}
}, 5, 0, [Child]);
const parent = renderComponent(Parent);
expect(toHtml(parent))
.toEqual(
'1
2
');
});
// https://stackblitz.com/edit/angular-psokum?file=src%2Fapp%2Fapp.module.ts
it('should project nodes where attribute selector matches a binding', () => {
/**
*
*/
const Child = createComponent('child', function(rf: RenderFlags, ctx: any) {
if (rf & RenderFlags.Create) {
ɵɵprojectionDef([[['', 'title', '']]]);
{ ɵɵprojection(0, 1); }
}
}, 1);
/**
*
* Has title
*
*/
const Parent = createComponent('parent', function(rf: RenderFlags, ctx: any) {
if (rf & RenderFlags.Create) {
ɵɵelementStart(0, 'child');
{
ɵɵelementStart(1, 'span', [AttributeMarker.Bindings, 'title']);
{ ɵɵtext(2, 'Has title'); }
ɵɵelementEnd();
}
ɵɵelementEnd();
}
if (rf & RenderFlags.Update) {
ɵɵelementProperty(1, 'title', ɵɵbind('Some title'));
}
}, 3, 1, [Child]);
const fixture = new ComponentFixture(Parent);
expect(fixture.html).toEqual('Has title ');
});
it('should project nodes using class selectors', () => {
/**
*
*
*/
const Child = createComponent('child', function(rf: RenderFlags, ctx: any) {
if (rf & RenderFlags.Create) {
ɵɵprojectionDef([
[['span', SelectorFlags.CLASS, 'toFirst']],
[['span', SelectorFlags.CLASS, 'toSecond']]
]);
ɵɵelementStart(0, 'div', ['id', 'first']);
{ ɵɵprojection(1, 1); }
ɵɵelementEnd();
ɵɵelementStart(2, 'div', ['id', 'second']);
{ ɵɵprojection(3, 2); }
ɵɵelementEnd();
}
}, 4);
/**
*
* 1
* 2
*
*/
const Parent = createComponent('parent', function(rf: RenderFlags, ctx: any) {
if (rf & RenderFlags.Create) {
ɵɵelementStart(0, 'child');
{
ɵɵelementStart(1, 'span', ['class', 'toFirst']);
{ ɵɵtext(2, '1'); }
ɵɵelementEnd();
ɵɵelementStart(3, 'span', ['class', 'toSecond']);
{ ɵɵtext(4, '2'); }
ɵɵelementEnd();
}
ɵɵelementEnd();
}
}, 5, 0, [Child]);
const parent = renderComponent(Parent);
expect(toHtml(parent))
.toEqual(
'1
2
');
});
it('should project nodes using class selectors when element has multiple classes', () => {
/**
*
*
*/
const Child = createComponent('child', function(rf: RenderFlags, ctx: any) {
if (rf & RenderFlags.Create) {
ɵɵprojectionDef([
[['span', SelectorFlags.CLASS, 'toFirst']],
[['span', SelectorFlags.CLASS, 'toSecond']]
]);
ɵɵelementStart(0, 'div', ['id', 'first']);
{ ɵɵprojection(1, 1); }
ɵɵelementEnd();
ɵɵelementStart(2, 'div', ['id', 'second']);
{ ɵɵprojection(3, 2); }
ɵɵelementEnd();
}
}, 4);
/**
*
* 1
* 2
*
*/
const Parent = createComponent('parent', function(rf: RenderFlags, ctx: any) {
if (rf & RenderFlags.Create) {
ɵɵelementStart(0, 'child');
{
ɵɵelementStart(1, 'span', ['class', 'other toFirst']);
{ ɵɵtext(2, '1'); }
ɵɵelementEnd();
ɵɵelementStart(3, 'span', ['class', 'toSecond noise']);
{ ɵɵtext(4, '2'); }
ɵɵelementEnd();
}
ɵɵelementEnd();
}
}, 5, 0, [Child]);
const parent = renderComponent(Parent);
expect(toHtml(parent))
.toEqual(
'1
2
');
});
it('should project nodes into the first matching selector', () => {
/**
*
*
*/
const Child = createComponent('child', function(rf: RenderFlags, ctx: any) {
if (rf & RenderFlags.Create) {
ɵɵprojectionDef([[['span']], [['span', SelectorFlags.CLASS, 'toSecond']]]);
ɵɵelementStart(0, 'div', ['id', 'first']);
{ ɵɵprojection(1, 1); }
ɵɵelementEnd();
ɵɵelementStart(2, 'div', ['id', 'second']);
{ ɵɵprojection(3, 2); }
ɵɵelementEnd();
}
}, 4);
/**
*
* 1
* 2
*
*/
const Parent = createComponent('parent', function(rf: RenderFlags, ctx: any) {
if (rf & RenderFlags.Create) {
ɵɵelementStart(0, 'child');
{
ɵɵelementStart(1, 'span', ['class', 'toFirst']);
{ ɵɵtext(2, '1'); }
ɵɵelementEnd();
ɵɵelementStart(3, 'span', ['class', 'toSecond']);
{ ɵɵtext(4, '2'); }
ɵɵelementEnd();
}
ɵɵelementEnd();
}
}, 5, 0, [Child]);
const parent = renderComponent(Parent);
expect(toHtml(parent))
.toEqual(
'1 2
');
});
it('should allow mixing ng-content with and without selectors', () => {
/**
*
*
*/
const Child = createComponent('child', function(rf: RenderFlags, ctx: any) {
if (rf & RenderFlags.Create) {
ɵɵprojectionDef([[['span', SelectorFlags.CLASS, 'toFirst']]]);
ɵɵelementStart(0, 'div', ['id', 'first']);
{ ɵɵprojection(1, 1); }
ɵɵelementEnd();
ɵɵelementStart(2, 'div', ['id', 'second']);
{ ɵɵprojection(3); }
ɵɵelementEnd();
}
}, 4);
/**
*
* 1
* 2
*
*/
const Parent = createComponent('parent', function(rf: RenderFlags, ctx: any) {
if (rf & RenderFlags.Create) {
ɵɵelementStart(0, 'child');
{
ɵɵelementStart(1, 'span', ['class', 'toFirst']);
{ ɵɵtext(2, '1'); }
ɵɵelementEnd();
ɵɵelementStart(3, 'span');
{ ɵɵtext(4, 'remaining'); }
ɵɵelementEnd();
ɵɵtext(5, 'more remaining');
}
ɵɵelementEnd();
}
}, 6, 0, [Child]);
const parent = renderComponent(Parent);
expect(toHtml(parent))
.toEqual(
'1
remaining more remaining
');
});
it('should allow mixing ng-content with and without selectors - ng-content first', () => {
/**
*
*
*/
const Child = createComponent('child', function(rf: RenderFlags, ctx: any) {
if (rf & RenderFlags.Create) {
ɵɵprojectionDef([[['span', SelectorFlags.CLASS, 'toSecond']]]);
ɵɵelementStart(0, 'div', ['id', 'first']);
{ ɵɵprojection(1); }
ɵɵelementEnd();
ɵɵelementStart(2, 'div', ['id', 'second']);
{ ɵɵprojection(3, 1); }
ɵɵelementEnd();
}
}, 4);
/**
*
* 1
* 2
* remaining
*
*/
const Parent = createComponent('parent', function(rf: RenderFlags, ctx: any) {
if (rf & RenderFlags.Create) {
ɵɵelementStart(0, 'child');
{
ɵɵelementStart(1, 'span');
{ ɵɵtext(2, '1'); }
ɵɵelementEnd();
ɵɵelementStart(3, 'span', ['class', 'toSecond']);
{ ɵɵtext(4, '2'); }
ɵɵelementEnd();
ɵɵtext(5, 'remaining');
}
ɵɵelementEnd();
}
}, 6, 0, [Child]);
const parent = renderComponent(Parent);
expect(toHtml(parent))
.toEqual(
'1 remaining
2
');
});
/**
* Descending into projected content for selector-matching purposes is not supported
* today: http://plnkr.co/edit/MYQcNfHSTKp9KvbzJWVQ?p=preview
*/
it('should not descend into re-projected content', () => {
/**
*
*
*
*/
const GrandChild = createComponent('grand-child', function(rf: RenderFlags, ctx: any) {
if (rf & RenderFlags.Create) {
ɵɵprojectionDef([[['span']]]);
ɵɵprojection(0, 1);
ɵɵelement(1, 'hr');
ɵɵprojection(2);
}
}, 3);
/**
*
*
* in child template
*
*/
const Child = createComponent('child', function(rf: RenderFlags, ctx: any) {
if (rf & RenderFlags.Create) {
ɵɵprojectionDef();
ɵɵelementStart(0, 'grand-child');
{
ɵɵprojection(1);
ɵɵelementStart(2, 'span');
{ ɵɵtext(3, 'in child template'); }
ɵɵelementEnd();
}
ɵɵelementEnd();
}
}, 4, 0, [GrandChild]);
/**
*
*
* parent content
*
*
*/
const Parent = createComponent('parent', function(rf: RenderFlags, ctx: any) {
if (rf & RenderFlags.Create) {
ɵɵelementStart(0, 'child');
{
ɵɵelementStart(1, 'span');
{ ɵɵtext(2, 'parent content'); }
ɵɵelementEnd();
}
ɵɵelementEnd();
}
}, 3, 0, [Child]);
const parent = renderComponent(Parent);
expect(toHtml(parent))
.toEqual(
'in child template parent content ');
});
it('should match selectors on ng-content nodes with attributes', () => {
/**
*
*
*
*/
const Card = createComponent('card', function(rf: RenderFlags, ctx: any) {
if (rf & RenderFlags.Create) {
ɵɵprojectionDef([[['', 'card-title', '']], [['', 'card-content', '']]]);
ɵɵprojection(0, 1);
ɵɵelement(1, 'hr');
ɵɵprojection(2, 2);
}
}, 3);
/**
*
* Title
*
*
*/
const CardWithTitle = createComponent('card-with-title', function(rf: RenderFlags, ctx: any) {
if (rf & RenderFlags.Create) {
ɵɵprojectionDef();
ɵɵelementStart(0, 'card');
{
ɵɵelementStart(1, 'h1', ['card-title', '']);
{ ɵɵtext(2, 'Title'); }
ɵɵelementEnd();
ɵɵprojection(3, 0, ['card-content', '']);
}
ɵɵelementEnd();
}
}, 4, 0, [Card]);
/**
*
* content
*
*/
const App = createComponent('app', function(rf: RenderFlags, ctx: any) {
if (rf & RenderFlags.Create) {
ɵɵelementStart(0, 'card-with-title');
{ ɵɵtext(1, 'content'); }
ɵɵelementEnd();
}
}, 2, 0, [CardWithTitle]);
const app = renderComponent(App);
expect(toHtml(app))
.toEqual(
'Title content ');
});
it('should not match selectors against node having ngProjectAs attribute', function() {
/**
*
*/
const Child = createComponent('child', function(rf: RenderFlags, ctx: any) {
if (rf & RenderFlags.Create) {
ɵɵprojectionDef([[['div']]]);
ɵɵprojection(0, 1);
}
}, 1);
/**
*
* should not project
* should project
*
*/
const Parent = createComponent('parent', function(rf: RenderFlags, ctx: any) {
if (rf & RenderFlags.Create) {
ɵɵelementStart(0, 'child');
{
ɵɵelementStart(1, 'div', [AttributeMarker.ProjectAs, ['span']]);
{ ɵɵtext(2, 'should not project'); }
ɵɵelementEnd();
ɵɵelementStart(3, 'div');
{ ɵɵtext(4, 'should project'); }
ɵɵelementEnd();
}
ɵɵelementEnd();
}
}, 5, 0, [Child]);
const parent = renderComponent(Parent);
expect(toHtml(parent)).toEqual('should project
');
});
it('should match selectors against projected containers', () => {
/**
*
*
*
*/
const Child = createComponent('child', function(rf: RenderFlags, ctx: any) {
if (rf & RenderFlags.Create) {
ɵɵprojectionDef([[['div']]]);
ɵɵelementStart(0, 'span');
{ ɵɵprojection(1, 1); }
ɵɵelementEnd();
}
}, 2);
function IfTemplate(rf: RenderFlags, ctx: any) {
if (rf & RenderFlags.Create) {
ɵɵelementStart(0, 'div');
{ ɵɵtext(1, 'content'); }
ɵɵelementEnd();
}
}
/**
*
* content
*
*/
const Parent = createComponent('parent', function(rf: RenderFlags, ctx: {value: any}) {
if (rf & RenderFlags.Create) {
ɵɵelementStart(0, 'child');
{ ɵɵtemplate(1, IfTemplate, 2, 0, 'div', [AttributeMarker.Template, 'ngIf']); }
ɵɵelementEnd();
}
if (rf & RenderFlags.Update) {
ɵɵelementProperty(1, 'ngIf', ɵɵbind(ctx.value));
}
}, 2, 1, [Child, NgIf]);
const fixture = new ComponentFixture(Parent);
fixture.component.value = true;
fixture.update();
expect(fixture.html).toEqual('content
');
});
});
});