/** * @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 {C, E, P, T, V, cR, cr, detectChanges, e, m, pD, r, v} from '../../src/render3/index'; import {createComponent, renderComponent, toHtml} from './render_util'; describe('content projection', () => { it('should project content', () => { /** *
*/ const Child = createComponent('child', function(ctx: any, cm: boolean) { if (cm) { pD(0); E(1, 'div'); { P(2, 0); } e(); } }); /** * content */ const Parent = createComponent('parent', function(ctx: any, cm: boolean) { if (cm) { E(0, Child); { T(2, 'content'); } e(); } Child.ngComponentDef.h(1, 0); r(1, 0); }); const parent = renderComponent(Parent); expect(toHtml(parent)).toEqual('
content
'); }); it('should project content when root.', () => { const Child = createComponent('child', function(ctx: any, cm: boolean) { if (cm) { pD(0); P(1, 0); } }); const Parent = createComponent('parent', function(ctx: any, cm: boolean) { if (cm) { E(0, Child); { T(2, 'content'); } e(); } Child.ngComponentDef.h(1, 0); r(1, 0); }); const parent = renderComponent(Parent); expect(toHtml(parent)).toEqual('content'); }); it('should re-project content when root.', () => { const GrandChild = createComponent('grand-child', function(ctx: any, cm: boolean) { if (cm) { pD(0); E(1, 'div'); { P(2, 0); } e(); } }); const Child = createComponent('child', function(ctx: any, cm: boolean) { if (cm) { pD(0); E(1, GrandChild); { P(3, 0); } e(); GrandChild.ngComponentDef.h(2, 1); r(2, 1); } }); const Parent = createComponent('parent', function(ctx: any, cm: boolean) { if (cm) { E(0, Child); { E(2, 'b'); T(3, 'Hello'); e(); T(4, 'World!'); } e(); } Child.ngComponentDef.h(1, 0); r(1, 0); }); const parent = renderComponent(Parent); expect(toHtml(parent)) .toEqual('
HelloWorld!
'); }); it('should project components', () => { /**
*/ const Child = createComponent('child', (ctx: any, cm: boolean) => { if (cm) { pD(0); E(1, 'div'); { P(2, 0); } e(); } }); const ProjectedComp = createComponent('projected-comp', (ctx: any, cm: boolean) => { if (cm) { T(0, 'content'); } }); /** * * * */ const Parent = createComponent('parent', (ctx: any, cm: boolean) => { if (cm) { E(0, Child); { E(2, ProjectedComp); e(); } e(); } Child.ngComponentDef.h(1, 0); ProjectedComp.ngComponentDef.h(3, 2); r(3, 2); r(1, 0); }); const parent = renderComponent(Parent); expect(toHtml(parent)) .toEqual('
content
'); }); it('should project content with container.', () => { const Child = createComponent('child', function(ctx: any, cm: boolean) { if (cm) { pD(0); E(1, 'div'); { P(2, 0); } e(); } }); const Parent = createComponent('parent', function(ctx: {value: any}, cm: boolean) { if (cm) { E(0, Child); { T(2, '('); C(3); T(4, ')'); } e(); } cR(3); { if (ctx.value) { if (V(0)) { T(0, 'content'); } v(); } } cr(); Child.ngComponentDef.h(1, 0); r(1, 0); }); 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 content with container into root', () => { const Child = createComponent('child', function(ctx: any, cm: boolean) { if (cm) { pD(0); P(1, 0); } }); const Parent = createComponent('parent', function(ctx: {value: any}, cm: boolean) { if (cm) { E(0, Child); { C(2); } e(); } cR(2); { if (ctx.value) { if (V(0)) { T(0, 'content'); } v(); } } cr(); Child.ngComponentDef.h(1, 0); r(1, 0); }); 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 content with container and if-else.', () => { const Child = createComponent('child', function(ctx: any, cm: boolean) { if (cm) { pD(0); E(1, 'div'); { P(2, 0); } e(); } }); const Parent = createComponent('parent', function(ctx: {value: any}, cm: boolean) { if (cm) { E(0, Child); { T(2, '('); C(3); T(4, ')'); } e(); } cR(3); { if (ctx.value) { if (V(0)) { T(0, 'content'); } v(); } else { if (V(1)) { T(0, 'else'); } v(); } } cr(); Child.ngComponentDef.h(1, 0); r(1, 0); }); 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 in embedded views', () => { let childCmptInstance: any; /** *
* % if (!skipContent) { * * * * % } *
*/ const Child = createComponent('child', function(ctx: any, cm: boolean) { if (cm) { pD(0); E(1, 'div'); { C(2); } e(); } cR(2); { if (!ctx.skipContent) { if (V(0)) { E(0, 'span'); P(1, 0); e(); } v(); } } cr(); }); /** * content */ const Parent = createComponent('parent', function(ctx: any, cm: boolean) { if (cm) { E(0, Child); { childCmptInstance = m(1); T(2, 'content'); } e(); } Child.ngComponentDef.h(1, 0); r(1, 0); }); const parent = renderComponent(Parent); expect(toHtml(parent)).toEqual('
content
'); childCmptInstance.skipContent = true; detectChanges(parent); expect(toHtml(parent)).toEqual('
'); }); it('should support projection in embedded views when ng-content is a root node of an embedded view', () => { let childCmptInstance: any; /** *
* % if (!skipContent) { * * % } *
*/ const Child = createComponent('child', function(ctx: any, cm: boolean) { if (cm) { pD(0); E(1, 'div'); { C(2); } e(); } cR(2); { if (!ctx.skipContent) { if (V(0)) { P(0, 0); } v(); } } cr(); }); /** * content */ const Parent = createComponent('parent', function(ctx: any, cm: boolean) { if (cm) { E(0, Child); { childCmptInstance = m(1); T(2, 'content'); } e(); } Child.ngComponentDef.h(1, 0); r(1, 0); }); const parent = renderComponent(Parent); expect(toHtml(parent)).toEqual('
content
'); childCmptInstance.skipContent = true; detectChanges(parent); expect(toHtml(parent)).toEqual('
'); }); it('should support projection in 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(ctx: any, cm: boolean) { if (cm) { pD(0); E(1, 'div'); { C(2); } e(); } cR(2); { if (!ctx.skipContent) { if (V(0)) { T(0, 'before-'); P(1, 0); T(2, '-after'); } v(); } } cr(); }); /** * content */ const Parent = createComponent('parent', function(ctx: any, cm: boolean) { if (cm) { E(0, Child); { childCmptInstance = m(1); T(2, 'content'); } e(); } Child.ngComponentDef.h(1, 0); r(1, 0); }); const parent = renderComponent(Parent); expect(toHtml(parent)).toEqual('
before-content-after
'); childCmptInstance.skipContent = true; detectChanges(parent); expect(toHtml(parent)).toEqual('
'); }); it('should project nodes into the last ng-content', () => { /** *
* */ const Child = createComponent('child', function(ctx: any, cm: boolean) { if (cm) { pD(0); E(1, 'div'); { P(2, 0); } e(); E(3, 'span'); { P(4, 0); } e(); } }); /** * content */ const Parent = createComponent('parent', function(ctx: any, cm: boolean) { if (cm) { E(0, Child); { T(2, 'content'); } e(); } Child.ngComponentDef.h(1, 0); r(1, 0); }); 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 behaviour: * 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(ctx: any, cm: boolean) { if (cm) { pD(0); P(1, 0); E(2, 'div'); { C(3); } e(); } cR(3); { if (ctx.show) { if (V(0)) { P(0, 0); } v(); } } cr(); }); /** * content */ const Parent = createComponent('parent', function(ctx: any, cm: boolean) { if (cm) { E(0, Child); { childCmptInstance = m(1); T(2, 'content'); } e(); } Child.ngComponentDef.h(1, 0); r(1, 0); }); const parent = renderComponent(Parent); expect(toHtml(parent)).toEqual('content
'); childCmptInstance.show = true; detectChanges(parent); expect(toHtml(parent)).toEqual('
content
'); }); describe('with selectors', () => { it('should project nodes using attribute selectors', () => { /** *
*
*/ const Child = createComponent('child', function(ctx: any, cm: boolean) { if (cm) { pD(0, [[[['span', 'title', 'toFirst'], null]], [[['span', 'title', 'toSecond'], null]]]); E(1, 'div', ['id', 'first']); { P(2, 0, 1); } e(); E(3, 'div', ['id', 'second']); { P(4, 0, 2); } e(); } }); /** * * 1 * 2 * */ const Parent = createComponent('parent', function(ctx: any, cm: boolean) { if (cm) { E(0, Child); { E(2, 'span', ['title', 'toFirst']); { T(3, '1'); } e(); E(4, 'span', ['title', 'toSecond']); { T(5, '2'); } e(); } e(); } Child.ngComponentDef.h(1, 0); r(1, 0); }); const parent = renderComponent(Parent); expect(toHtml(parent)) .toEqual( '
1
2
'); }); it('should project nodes using class selectors', () => { /** *
*
*/ const Child = createComponent('child', function(ctx: any, cm: boolean) { if (cm) { pD(0, [[[['span', 'class', 'toFirst'], null]], [[['span', 'class', 'toSecond'], null]]]); E(1, 'div', ['id', 'first']); { P(2, 0, 1); } e(); E(3, 'div', ['id', 'second']); { P(4, 0, 2); } e(); } }); /** * * 1 * 2 * */ const Parent = createComponent('parent', function(ctx: any, cm: boolean) { if (cm) { E(0, Child); { E(2, 'span', ['class', 'toFirst']); { T(3, '1'); } e(); E(4, 'span', ['class', 'toSecond']); { T(5, '2'); } e(); } e(); } Child.ngComponentDef.h(1, 0); r(1, 0); }); 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(ctx: any, cm: boolean) { if (cm) { pD(0, [[[['span', 'class', 'toFirst'], null]], [[['span', 'class', 'toSecond'], null]]]); E(1, 'div', ['id', 'first']); { P(2, 0, 1); } e(); E(3, 'div', ['id', 'second']); { P(4, 0, 2); } e(); } }); /** * * 1 * 2 * */ const Parent = createComponent('parent', function(ctx: any, cm: boolean) { if (cm) { E(0, Child); { E(2, 'span', ['class', 'other toFirst']); { T(3, '1'); } e(); E(4, 'span', ['class', 'toSecond noise']); { T(5, '2'); } e(); } e(); } Child.ngComponentDef.h(1, 0); r(1, 0); }); const parent = renderComponent(Parent); expect(toHtml(parent)) .toEqual( '
1
2
'); }); it('should project nodes into the first matching selector', () => { /** *
*
*/ const Child = createComponent('child', function(ctx: any, cm: boolean) { if (cm) { pD(0, [[[['span'], null]], [[['span', 'class', 'toSecond'], null]]]); E(1, 'div', ['id', 'first']); { P(2, 0, 1); } e(); E(3, 'div', ['id', 'second']); { P(4, 0, 2); } e(); } }); /** * * 1 * 2 * */ const Parent = createComponent('parent', function(ctx: any, cm: boolean) { if (cm) { E(0, Child); { E(2, 'span', ['class', 'toFirst']); { T(3, '1'); } e(); E(4, 'span', ['class', 'toSecond']); { T(5, '2'); } e(); } e(); } Child.ngComponentDef.h(1, 0); r(1, 0); }); const parent = renderComponent(Parent); expect(toHtml(parent)) .toEqual( '
12
'); }); it('should allow mixing ng-content with and without selectors', () => { /** *
*
*/ const Child = createComponent('child', function(ctx: any, cm: boolean) { if (cm) { pD(0, [[[['span', 'class', 'toFirst'], null]]]); E(1, 'div', ['id', 'first']); { P(2, 0, 1); } e(); E(3, 'div', ['id', 'second']); { P(4, 0); } e(); } }); /** * * 1 * 2 * */ const Parent = createComponent('parent', function(ctx: any, cm: boolean) { if (cm) { E(0, Child); { E(2, 'span', ['class', 'toFirst']); { T(3, '1'); } e(); E(4, 'span'); { T(5, 'remaining'); } e(); T(6, 'more remaining'); } e(); } Child.ngComponentDef.h(1, 0); r(1, 0); }); const parent = renderComponent(Parent); expect(toHtml(parent)) .toEqual( '
1
remainingmore remaining
'); }); it('should allow mixing ng-content with and without selectors - ng-content first', () => { /** *
*
*/ const Child = createComponent('child', function(ctx: any, cm: boolean) { if (cm) { pD(0, [[[['span', 'class', 'toSecond'], null]]]); E(1, 'div', ['id', 'first']); { P(2, 0); } e(); E(3, 'div', ['id', 'second']); { P(4, 0, 1); } e(); } }); /** * * 1 * 2 * remaining * */ const Parent = createComponent('parent', function(ctx: any, cm: boolean) { if (cm) { E(0, Child); { E(2, 'span'); { T(3, '1'); } e(); E(4, 'span', ['class', 'toSecond']); { T(5, '2'); } e(); T(6, 'remaining'); } e(); } Child.ngComponentDef.h(1, 0); r(1, 0); }); const parent = renderComponent(Parent); expect(toHtml(parent)) .toEqual( '
1remaining
2
'); }); /** * Descending into projected content for selector-matching purposes is not supported * today: http://plnkr.co/edit/MYQcNfHSTKp9KvbzJWVQ?p=preview */ it('should not match selectors on re-projected content', () => { /** * *
* */ const GrandChild = createComponent('grand-child', function(ctx: any, cm: boolean) { if (cm) { pD(0, [[[['span'], null]]]); P(1, 0, 1); E(2, 'hr'); e(); P(3, 0, 0); } }); /** * * * in child template * */ const Child = createComponent('child', function(ctx: any, cm: boolean) { if (cm) { pD(0); E(1, GrandChild); { P(3, 0); E(4, 'span'); { T(5, 'in child template'); } e(); } e(); GrandChild.ngComponentDef.h(2, 1); r(2, 1); } }); /** * *
* parent content *
*
*/ const Parent = createComponent('parent', function(ctx: any, cm: boolean) { if (cm) { E(0, Child); { E(2, 'span'); { T(3, 'parent content'); } e(); } e(); } Child.ngComponentDef.h(1, 0); r(1, 0); }); const parent = renderComponent(Parent); expect(toHtml(parent)) .toEqual( 'in child template
parent content
'); }); it('should match selectors against projected containers', () => { /** * * * */ const Child = createComponent('child', function(ctx: any, cm: boolean) { if (cm) { pD(0, [[[['div'], null]]]); E(1, 'span'); { P(2, 0, 1); } e(); } }); /** * *
content
*
*/ const Parent = createComponent('parent', function(ctx: {value: any}, cm: boolean) { if (cm) { E(0, Child); { C(2, undefined, undefined, 'div'); } e(); } cR(2); { if (true) { if (V(0)) { E(0, 'div'); { T(1, 'content'); } e(); } v(); } } cr(); Child.ngComponentDef.h(1, 0); r(1, 0); }); const parent = renderComponent(Parent); expect(toHtml(parent)).toEqual('
content
'); }); }); });