2018-04-03 18:46:16 -04: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
|
|
|
|
*/
|
2018-08-20 09:20:12 -04:00
|
|
|
import {AttributeMarker} from '@angular/compiler/src/core';
|
2018-08-02 17:32:30 -04:00
|
|
|
import {setup} from '@angular/compiler/test/aot/test_util';
|
2018-04-03 18:46:16 -04:00
|
|
|
import {compile, expectEmit} from './mock_compile';
|
|
|
|
|
2018-04-05 14:38:06 -04:00
|
|
|
describe('compiler compliance: template', () => {
|
2018-04-03 18:46:16 -04:00
|
|
|
const angularFiles = setup({
|
2018-08-01 03:52:34 -04:00
|
|
|
compileAngular: false,
|
|
|
|
compileFakeCore: true,
|
2018-04-03 18:46:16 -04:00
|
|
|
compileAnimations: false,
|
|
|
|
});
|
|
|
|
|
2018-04-16 18:29:42 -04:00
|
|
|
it('should correctly bind to context in nested template', () => {
|
2018-04-03 18:46:16 -04:00
|
|
|
const files = {
|
|
|
|
app: {
|
|
|
|
'spec.ts': `
|
|
|
|
import {Component, NgModule} from '@angular/core';
|
|
|
|
|
|
|
|
@Component({
|
|
|
|
selector: 'my-component',
|
|
|
|
template: \`
|
|
|
|
<ul *ngFor="let outer of items">
|
|
|
|
<li *ngFor="let middle of outer.items">
|
2018-04-18 19:23:49 -04:00
|
|
|
<div *ngFor="let inner of items"
|
2018-04-05 14:38:06 -04:00
|
|
|
(click)="onClick(outer, middle, inner)"
|
|
|
|
[title]="format(outer, middle, inner, component)"
|
|
|
|
>
|
|
|
|
{{format(outer, middle, inner, component)}}
|
2018-04-03 18:46:16 -04:00
|
|
|
</div>
|
|
|
|
</li>
|
|
|
|
</ul>\`
|
|
|
|
})
|
|
|
|
export class MyComponent {
|
2018-04-05 14:38:06 -04:00
|
|
|
component = this;
|
2018-04-03 18:46:16 -04:00
|
|
|
format(outer: any, middle: any, inner: any) { }
|
|
|
|
onClick(outer: any, middle: any, inner: any) { }
|
|
|
|
}
|
|
|
|
|
2018-08-01 03:52:34 -04:00
|
|
|
@NgModule({declarations: [MyComponent]})
|
2018-04-03 18:46:16 -04:00
|
|
|
export class MyModule {}
|
|
|
|
`
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
// The template should look like this (where IDENT is a wild card for an identifier):
|
|
|
|
const template = `
|
2018-12-19 15:17:38 -05:00
|
|
|
function MyComponent_ul_0_li_1_div_1_Template(rf, ctx) {
|
2018-07-17 21:59:49 -04:00
|
|
|
if (rf & 1) {
|
2019-05-17 21:49:21 -04:00
|
|
|
const $s$ = $i0$.ɵɵgetCurrentView();
|
2019-09-23 14:08:51 -04:00
|
|
|
$i0$.ɵɵelementStart(0, "div", 2);
|
2019-05-17 21:49:21 -04:00
|
|
|
$i0$.ɵɵlistener("click", function MyComponent_ul_0_li_1_div_1_Template_div_click_0_listener($event){
|
|
|
|
$i0$.ɵɵrestoreView($s$);
|
2018-07-30 22:43:56 -04:00
|
|
|
const $inner$ = ctx.$implicit;
|
2019-05-17 21:49:21 -04:00
|
|
|
const $middle$ = $i0$.ɵɵnextContext().$implicit;
|
|
|
|
const $outer$ = $i0$.ɵɵnextContext().$implicit;
|
|
|
|
const $myComp$ = $i0$.ɵɵnextContext();
|
2018-07-25 20:25:22 -04:00
|
|
|
return $myComp$.onClick($outer$, $middle$, $inner$);
|
2018-07-17 21:59:49 -04:00
|
|
|
});
|
2019-05-17 21:49:21 -04:00
|
|
|
$i0$.ɵɵtext(1);
|
|
|
|
$i0$.ɵɵelementEnd();
|
2018-07-17 21:59:49 -04:00
|
|
|
}
|
2018-08-02 17:32:30 -04:00
|
|
|
|
2018-07-17 21:59:49 -04:00
|
|
|
if (rf & 2) {
|
2018-07-25 20:25:22 -04:00
|
|
|
const $inner1$ = ctx.$implicit;
|
2019-05-17 21:49:21 -04:00
|
|
|
const $middle1$ = $i0$.ɵɵnextContext().$implicit;
|
|
|
|
const $outer1$ = $i0$.ɵɵnextContext().$implicit;
|
|
|
|
const $myComp1$ = $i0$.ɵɵnextContext();
|
|
|
|
$i0$.ɵɵproperty("title", $myComp1$.format($outer1$, $middle1$, $inner1$, $myComp1$.component));
|
2019-09-06 17:43:16 -04:00
|
|
|
$r3$.ɵɵadvance(1);
|
2019-04-23 23:40:05 -04:00
|
|
|
$i0$.ɵɵtextInterpolate1(" ", $myComp1$.format($outer1$, $middle1$, $inner1$, $myComp1$.component), " ");
|
2018-07-17 21:59:49 -04:00
|
|
|
}
|
|
|
|
}
|
2018-08-02 17:32:30 -04:00
|
|
|
|
2018-12-19 15:17:38 -05:00
|
|
|
function MyComponent_ul_0_li_1_Template(rf, ctx) {
|
2018-07-17 21:59:49 -04:00
|
|
|
if (rf & 1) {
|
2019-05-17 21:49:21 -04:00
|
|
|
$i0$.ɵɵelementStart(0, "li");
|
2019-09-23 14:08:51 -04:00
|
|
|
$i0$.ɵɵtemplate(1, MyComponent_ul_0_li_1_div_1_Template, 2, 2, "div", 1);
|
2019-05-17 21:49:21 -04:00
|
|
|
$i0$.ɵɵelementEnd();
|
2018-07-17 21:59:49 -04:00
|
|
|
}
|
|
|
|
if (rf & 2) {
|
2019-05-17 21:49:21 -04:00
|
|
|
const $myComp2$ = $i0$.ɵɵnextContext(2);
|
2019-09-06 17:43:16 -04:00
|
|
|
$r3$.ɵɵadvance(1);
|
2019-05-17 21:49:21 -04:00
|
|
|
$i0$.ɵɵproperty("ngForOf", $myComp2$.items);
|
2018-07-17 21:59:49 -04:00
|
|
|
}
|
|
|
|
}
|
2018-08-02 17:32:30 -04:00
|
|
|
|
2018-12-19 15:17:38 -05:00
|
|
|
function MyComponent_ul_0_Template(rf, ctx) {
|
2018-07-17 21:59:49 -04:00
|
|
|
if (rf & 1) {
|
2019-05-17 21:49:21 -04:00
|
|
|
$i0$.ɵɵelementStart(0, "ul");
|
2019-09-23 14:08:51 -04:00
|
|
|
$i0$.ɵɵtemplate(1, MyComponent_ul_0_li_1_Template, 2, 1, "li", 0);
|
2019-05-17 21:49:21 -04:00
|
|
|
$i0$.ɵɵelementEnd();
|
2018-07-17 21:59:49 -04:00
|
|
|
}
|
|
|
|
if (rf & 2) {
|
2018-07-25 20:25:22 -04:00
|
|
|
const $outer2$ = ctx.$implicit;
|
2019-09-06 17:43:16 -04:00
|
|
|
$r3$.ɵɵadvance(1);
|
2019-05-17 21:49:21 -04:00
|
|
|
$i0$.ɵɵproperty("ngForOf", $outer2$.items);
|
2018-07-17 21:59:49 -04:00
|
|
|
}
|
|
|
|
}
|
2018-04-18 19:23:49 -04:00
|
|
|
// ...
|
2019-09-23 14:08:51 -04:00
|
|
|
consts: [[${AttributeMarker.Template}, "ngFor", "ngForOf"], [${AttributeMarker.Bindings}, "title", "click", ${AttributeMarker.Template}, "ngFor", "ngForOf"], [${AttributeMarker.Bindings}, "title", "click"]],
|
2018-07-25 20:25:22 -04:00
|
|
|
template:function MyComponent_Template(rf, ctx){
|
2018-04-18 19:23:49 -04:00
|
|
|
if (rf & 1) {
|
2019-09-23 14:08:51 -04:00
|
|
|
$i0$.ɵɵtemplate(0, MyComponent_ul_0_Template, 2, 1, "ul", 0);
|
2018-04-03 18:46:16 -04:00
|
|
|
}
|
2018-04-10 23:57:20 -04:00
|
|
|
if (rf & 2) {
|
2019-05-17 21:49:21 -04:00
|
|
|
$i0$.ɵɵproperty("ngForOf", ctx.items);
|
2018-07-25 20:25:22 -04:00
|
|
|
}
|
|
|
|
}`;
|
|
|
|
|
|
|
|
const result = compile(files, angularFiles);
|
|
|
|
|
|
|
|
expectEmit(result.source, template, 'Incorrect template');
|
|
|
|
});
|
|
|
|
|
2019-02-26 12:35:30 -05:00
|
|
|
it('should correctly bind to context in nested template with many bindings', () => {
|
|
|
|
const files = {
|
|
|
|
app: {
|
|
|
|
'spec.ts': `
|
|
|
|
import {Component, NgModule} from '@angular/core';
|
|
|
|
|
|
|
|
@Component({
|
|
|
|
selector: 'my-component',
|
|
|
|
template: \`
|
|
|
|
<div *ngFor="let d of _data; let i = index" (click)="_handleClick(d, i)"></div>
|
|
|
|
\`
|
|
|
|
})
|
|
|
|
export class MyComponent {
|
|
|
|
_data = [1,2,3];
|
|
|
|
_handleClick(d: any, i: any) {}
|
|
|
|
}
|
|
|
|
|
|
|
|
@NgModule({declarations: [MyComponent]})
|
|
|
|
export class MyModule {}
|
|
|
|
`
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
const template = `
|
|
|
|
function MyComponent_div_0_Template(rf, ctx) {
|
|
|
|
if (rf & 1) {
|
2019-05-17 21:49:21 -04:00
|
|
|
const $s$ = $r3$.ɵɵgetCurrentView();
|
2019-09-23 14:08:51 -04:00
|
|
|
$r3$.ɵɵelementStart(0, "div", 1);
|
2019-05-17 21:49:21 -04:00
|
|
|
$r3$.ɵɵlistener("click", function MyComponent_div_0_Template_div_click_0_listener($event) {
|
|
|
|
$r3$.ɵɵrestoreView($s$);
|
2019-02-26 12:35:30 -05:00
|
|
|
const $d$ = ctx.$implicit;
|
|
|
|
const $i$ = ctx.index;
|
2019-05-17 21:49:21 -04:00
|
|
|
const $comp$ = $r3$.ɵɵnextContext();
|
2019-02-26 12:35:30 -05:00
|
|
|
return $comp$._handleClick($d$, $i$);
|
|
|
|
});
|
2019-05-17 21:49:21 -04:00
|
|
|
$r3$.ɵɵelementEnd();
|
2019-02-26 12:35:30 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
// ...
|
2019-09-23 14:08:51 -04:00
|
|
|
consts: [[${AttributeMarker.Bindings}, "click", ${AttributeMarker.Template}, "ngFor", "ngForOf"], [${AttributeMarker.Bindings}, "click"]],
|
2019-02-26 12:35:30 -05:00
|
|
|
template: function MyComponent_Template(rf, ctx) {
|
|
|
|
if (rf & 1) {
|
2019-09-23 14:08:51 -04:00
|
|
|
$r3$.ɵɵtemplate(0, MyComponent_div_0_Template, 1, 0, "div", 0);
|
2019-02-26 12:35:30 -05:00
|
|
|
}
|
|
|
|
if (rf & 2) {
|
2019-05-17 21:49:21 -04:00
|
|
|
$r3$.ɵɵproperty("ngForOf", ctx._data);
|
2019-02-26 12:35:30 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
`;
|
|
|
|
|
|
|
|
const result = compile(files, angularFiles);
|
|
|
|
|
|
|
|
expectEmit(result.source, template, 'Incorrect template');
|
|
|
|
});
|
|
|
|
|
2019-06-06 14:01:51 -04:00
|
|
|
it('should correctly bind to implicit receiver in template', () => {
|
|
|
|
const files = {
|
|
|
|
app: {
|
|
|
|
'spec.ts': `
|
|
|
|
import {Component, NgModule} from '@angular/core';
|
|
|
|
|
|
|
|
@Component({
|
|
|
|
selector: 'my-component',
|
|
|
|
template: \`
|
|
|
|
<div *ngIf="true" (click)="greet(this)"></div>
|
|
|
|
<div *ngIf="true" [id]="this"></div>
|
|
|
|
\`
|
|
|
|
})
|
|
|
|
export class MyComponent {
|
2019-09-06 17:43:16 -04:00
|
|
|
greet(val: any) {}
|
2019-06-06 14:01:51 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
@NgModule({declarations: [MyComponent]})
|
|
|
|
export class MyModule {}
|
|
|
|
`
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
const template = `
|
|
|
|
function MyComponent_div_0_Template(rf, ctx) {
|
|
|
|
if (rf & 1) {
|
|
|
|
const $_r2$ = i0.ɵɵgetCurrentView();
|
2019-09-23 14:08:51 -04:00
|
|
|
$r3$.ɵɵelementStart(0, "div", 2);
|
2019-06-06 14:01:51 -04:00
|
|
|
$r3$.ɵɵlistener("click", function MyComponent_div_0_Template_div_click_0_listener($event) {
|
|
|
|
i0.ɵɵrestoreView($_r2$);
|
|
|
|
const $ctx_r1$ = i0.ɵɵnextContext();
|
|
|
|
return $ctx_r1$.greet($ctx_r1$);
|
|
|
|
});
|
|
|
|
$r3$.ɵɵelementEnd();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// ...
|
|
|
|
function MyComponent_div_1_Template(rf, ctx) {
|
|
|
|
if (rf & 1) {
|
2019-09-23 14:08:51 -04:00
|
|
|
$r3$.ɵɵelement(0, "div", 3);
|
2019-06-06 14:01:51 -04:00
|
|
|
} if (rf & 2) {
|
|
|
|
const $ctx_0$ = i0.ɵɵnextContext();
|
|
|
|
$r3$.ɵɵproperty("id", $ctx_0$);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
`;
|
|
|
|
|
|
|
|
const result = compile(files, angularFiles);
|
|
|
|
|
|
|
|
expectEmit(result.source, template, 'Incorrect template');
|
|
|
|
});
|
|
|
|
|
2018-07-25 20:25:22 -04:00
|
|
|
it('should support ngFor context variables', () => {
|
|
|
|
const files = {
|
|
|
|
app: {
|
|
|
|
'spec.ts': `
|
|
|
|
import {Component, NgModule} from '@angular/core';
|
|
|
|
|
|
|
|
@Component({
|
|
|
|
selector: 'my-component',
|
|
|
|
template: \`
|
|
|
|
<span *ngFor="let item of items; index as i">
|
|
|
|
{{ i }} - {{ item }}
|
|
|
|
</span>\`
|
|
|
|
})
|
|
|
|
export class MyComponent {}
|
|
|
|
|
2018-08-01 03:52:34 -04:00
|
|
|
@NgModule({declarations: [MyComponent]})
|
2018-07-25 20:25:22 -04:00
|
|
|
export class MyModule {}
|
|
|
|
`
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
const template = `
|
2018-12-19 15:17:38 -05:00
|
|
|
function MyComponent_span_0_Template(rf, ctx) {
|
2018-07-25 20:25:22 -04:00
|
|
|
if (rf & 1) {
|
2019-05-17 21:49:21 -04:00
|
|
|
$i0$.ɵɵelementStart(0, "span");
|
|
|
|
$i0$.ɵɵtext(1);
|
|
|
|
$i0$.ɵɵelementEnd();
|
2018-07-25 20:25:22 -04:00
|
|
|
}
|
|
|
|
if (rf & 2) {
|
|
|
|
const $item$ = ctx.$implicit;
|
|
|
|
const $i$ = ctx.index;
|
2019-09-06 17:43:16 -04:00
|
|
|
$r3$.ɵɵadvance(1);
|
2019-04-23 23:40:05 -04:00
|
|
|
$i0$.ɵɵtextInterpolate2(" ", $i$, " - ", $item$, " ");
|
2018-07-25 20:25:22 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
// ...
|
2019-09-23 14:08:51 -04:00
|
|
|
consts: [[${AttributeMarker.Template}, "ngFor", "ngForOf"]],
|
2018-07-25 20:25:22 -04:00
|
|
|
template:function MyComponent_Template(rf, ctx){
|
|
|
|
if (rf & 1) {
|
2019-09-23 14:08:51 -04:00
|
|
|
$i0$.ɵɵtemplate(0, MyComponent_span_0_Template, 2, 2, "span", 0);
|
2018-07-25 20:25:22 -04:00
|
|
|
}
|
|
|
|
if (rf & 2) {
|
2019-05-17 21:49:21 -04:00
|
|
|
$i0$.ɵɵproperty("ngForOf", ctx.items);
|
2018-07-25 20:25:22 -04:00
|
|
|
}
|
|
|
|
}`;
|
|
|
|
|
|
|
|
const result = compile(files, angularFiles);
|
|
|
|
|
|
|
|
expectEmit(result.source, template, 'Incorrect template');
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should support ngFor context variables in parent views', () => {
|
|
|
|
const files = {
|
|
|
|
app: {
|
|
|
|
'spec.ts': `
|
|
|
|
import {Component, NgModule} from '@angular/core';
|
|
|
|
|
|
|
|
@Component({
|
|
|
|
selector: 'my-component',
|
|
|
|
template: \`
|
|
|
|
<div *ngFor="let item of items; index as i">
|
|
|
|
<span *ngIf="showing">
|
|
|
|
{{ i }} - {{ item }}
|
|
|
|
</span>
|
|
|
|
</div>\`
|
|
|
|
})
|
|
|
|
export class MyComponent {}
|
|
|
|
|
2018-08-01 03:52:34 -04:00
|
|
|
@NgModule({declarations: [MyComponent]})
|
2018-07-25 20:25:22 -04:00
|
|
|
export class MyModule {}
|
|
|
|
`
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
const template = `
|
2018-12-19 15:17:38 -05:00
|
|
|
function MyComponent_div_0_span_1_Template(rf, ctx) {
|
2018-07-25 20:25:22 -04:00
|
|
|
if (rf & 1) {
|
2019-05-17 21:49:21 -04:00
|
|
|
$i0$.ɵɵelementStart(0, "span");
|
|
|
|
$i0$.ɵɵtext(1);
|
|
|
|
$i0$.ɵɵelementEnd();
|
2018-07-25 20:25:22 -04:00
|
|
|
}
|
|
|
|
if (rf & 2) {
|
2019-05-17 21:49:21 -04:00
|
|
|
const $div$ = $i0$.ɵɵnextContext();
|
2018-07-25 20:25:22 -04:00
|
|
|
const $i$ = $div$.index;
|
|
|
|
const $item$ = $div$.$implicit;
|
2019-09-06 17:43:16 -04:00
|
|
|
$r3$.ɵɵadvance(1);
|
2019-04-23 23:40:05 -04:00
|
|
|
$i0$.ɵɵtextInterpolate2(" ", $i$, " - ", $item$, " ");
|
2018-07-25 20:25:22 -04:00
|
|
|
}
|
|
|
|
}
|
2018-08-02 17:32:30 -04:00
|
|
|
|
2018-12-19 15:17:38 -05:00
|
|
|
function MyComponent_div_0_Template(rf, ctx) {
|
2018-07-25 20:25:22 -04:00
|
|
|
if (rf & 1) {
|
2019-05-17 21:49:21 -04:00
|
|
|
$i0$.ɵɵelementStart(0, "div");
|
2019-09-23 14:08:51 -04:00
|
|
|
$i0$.ɵɵtemplate(1, MyComponent_div_0_span_1_Template, 2, 2, "span", 1);
|
2019-05-17 21:49:21 -04:00
|
|
|
$i0$.ɵɵelementEnd();
|
2018-07-25 20:25:22 -04:00
|
|
|
}
|
|
|
|
if (rf & 2) {
|
2019-05-17 21:49:21 -04:00
|
|
|
const $app$ = $i0$.ɵɵnextContext();
|
2019-09-06 17:43:16 -04:00
|
|
|
$r3$.ɵɵadvance(1);
|
2019-05-17 21:49:21 -04:00
|
|
|
$i0$.ɵɵproperty("ngIf", $app$.showing);
|
2018-07-25 20:25:22 -04:00
|
|
|
}
|
|
|
|
}
|
2018-08-02 17:32:30 -04:00
|
|
|
|
2018-07-25 20:25:22 -04:00
|
|
|
// ...
|
2019-09-23 14:08:51 -04:00
|
|
|
consts: [[${AttributeMarker.Template}, "ngFor", "ngForOf"], [${AttributeMarker.Template}, "ngIf"]],
|
2018-07-25 20:25:22 -04:00
|
|
|
template:function MyComponent_Template(rf, ctx){
|
|
|
|
if (rf & 1) {
|
2019-09-23 14:08:51 -04:00
|
|
|
$i0$.ɵɵtemplate(0, MyComponent_div_0_Template, 2, 1, "div", 0);
|
2018-07-25 20:25:22 -04:00
|
|
|
}
|
|
|
|
if (rf & 2) {
|
2019-05-17 21:49:21 -04:00
|
|
|
$i0$.ɵɵproperty("ngForOf", ctx.items);
|
2018-07-25 20:25:22 -04:00
|
|
|
}
|
|
|
|
}`;
|
|
|
|
|
|
|
|
const result = compile(files, angularFiles);
|
|
|
|
|
|
|
|
expectEmit(result.source, template, 'Incorrect template');
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should correctly skip contexts as needed', () => {
|
|
|
|
const files = {
|
|
|
|
app: {
|
|
|
|
'spec.ts': `
|
|
|
|
import {Component, NgModule} from '@angular/core';
|
|
|
|
|
|
|
|
@Component({
|
|
|
|
selector: 'my-component',
|
|
|
|
template: \`
|
|
|
|
<div *ngFor="let outer of items">
|
|
|
|
<div *ngFor="let middle of outer.items">
|
|
|
|
<div *ngFor="let inner of middle.items">
|
|
|
|
{{ middle.value }} - {{ name }}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>\`
|
|
|
|
})
|
|
|
|
export class MyComponent {}
|
|
|
|
|
2018-08-01 03:52:34 -04:00
|
|
|
@NgModule({declarations: [MyComponent]})
|
2018-07-25 20:25:22 -04:00
|
|
|
export class MyModule {}
|
|
|
|
`
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
// The template should look like this (where IDENT is a wild card for an identifier):
|
|
|
|
const template = `
|
2018-12-19 15:17:38 -05:00
|
|
|
function MyComponent_div_0_div_1_div_1_Template(rf, ctx) {
|
2018-07-25 20:25:22 -04:00
|
|
|
if (rf & 1) {
|
2019-05-17 21:49:21 -04:00
|
|
|
$i0$.ɵɵelementStart(0, "div");
|
|
|
|
$i0$.ɵɵtext(1);
|
|
|
|
$i0$.ɵɵelementEnd();
|
2018-07-25 20:25:22 -04:00
|
|
|
}
|
|
|
|
if (rf & 2) {
|
2019-05-17 21:49:21 -04:00
|
|
|
const $middle$ = $i0$.ɵɵnextContext().$implicit;
|
|
|
|
const $myComp$ = $i0$.ɵɵnextContext(2);
|
2019-09-06 17:43:16 -04:00
|
|
|
$r3$.ɵɵadvance(1);
|
2019-04-23 23:40:05 -04:00
|
|
|
$i0$.ɵɵtextInterpolate2(" ", $middle$.value, " - ", $myComp$.name, " ");
|
2018-07-25 20:25:22 -04:00
|
|
|
}
|
|
|
|
}
|
2018-08-02 17:32:30 -04:00
|
|
|
|
2018-12-19 15:17:38 -05:00
|
|
|
function MyComponent_div_0_div_1_Template(rf, ctx) {
|
2018-07-25 20:25:22 -04:00
|
|
|
if (rf & 1) {
|
2019-05-17 21:49:21 -04:00
|
|
|
$i0$.ɵɵelementStart(0, "div");
|
2019-09-23 14:08:51 -04:00
|
|
|
$i0$.ɵɵtemplate(1, MyComponent_div_0_div_1_div_1_Template, 2, 2, "div", 0);
|
2019-05-17 21:49:21 -04:00
|
|
|
$i0$.ɵɵelementEnd();
|
2018-07-25 20:25:22 -04:00
|
|
|
}
|
|
|
|
if (rf & 2) {
|
|
|
|
const $middle$ = ctx.$implicit;
|
2019-09-06 17:43:16 -04:00
|
|
|
$r3$.ɵɵadvance(1);
|
2019-05-17 21:49:21 -04:00
|
|
|
$i0$.ɵɵproperty("ngForOf", $middle$.items);
|
2018-07-25 20:25:22 -04:00
|
|
|
}
|
|
|
|
}
|
2018-08-02 17:32:30 -04:00
|
|
|
|
2018-12-19 15:17:38 -05:00
|
|
|
function MyComponent_div_0_Template(rf, ctx) {
|
2018-07-25 20:25:22 -04:00
|
|
|
if (rf & 1) {
|
2019-05-17 21:49:21 -04:00
|
|
|
$i0$.ɵɵelementStart(0, "div");
|
2019-09-23 14:08:51 -04:00
|
|
|
$i0$.ɵɵtemplate(1, MyComponent_div_0_div_1_Template, 2, 1, "div", 0);
|
2019-05-17 21:49:21 -04:00
|
|
|
$i0$.ɵɵelementEnd();
|
2018-07-25 20:25:22 -04:00
|
|
|
}
|
|
|
|
if (rf & 2) {
|
|
|
|
const $outer$ = ctx.$implicit;
|
2019-09-06 17:43:16 -04:00
|
|
|
$r3$.ɵɵadvance(1);
|
2019-05-17 21:49:21 -04:00
|
|
|
$i0$.ɵɵproperty("ngForOf", $outer$.items);
|
2018-07-25 20:25:22 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
// ...
|
2019-09-23 14:08:51 -04:00
|
|
|
consts: [[${AttributeMarker.Template}, "ngFor", "ngForOf"]],
|
2018-07-25 20:25:22 -04:00
|
|
|
template:function MyComponent_Template(rf, ctx){
|
|
|
|
if (rf & 1) {
|
2019-09-23 14:08:51 -04:00
|
|
|
$i0$.ɵɵtemplate(0, MyComponent_div_0_Template, 2, 1, "div", 0);
|
2018-07-25 20:25:22 -04:00
|
|
|
}
|
|
|
|
if (rf & 2) {
|
2019-05-17 21:49:21 -04:00
|
|
|
$i0$.ɵɵproperty("ngForOf", ctx.items);
|
2018-04-10 23:57:20 -04:00
|
|
|
}
|
2018-04-03 18:46:16 -04:00
|
|
|
}`;
|
|
|
|
|
|
|
|
const result = compile(files, angularFiles);
|
|
|
|
|
|
|
|
expectEmit(result.source, template, 'Incorrect template');
|
|
|
|
});
|
|
|
|
|
2018-08-02 17:32:30 -04:00
|
|
|
it('should support <ng-template>', () => {
|
|
|
|
const files = {
|
|
|
|
app: {
|
|
|
|
'spec.ts': `
|
|
|
|
import {Component, NgModule} from '@angular/core';
|
|
|
|
|
|
|
|
@Component({
|
|
|
|
selector: 'my-component',
|
|
|
|
template: \`
|
|
|
|
<ng-template [boundAttr]="b" attr="l">
|
|
|
|
some-content
|
|
|
|
</ng-template>\`
|
|
|
|
})
|
|
|
|
export class MyComponent {}
|
|
|
|
|
2018-08-03 17:23:29 -04:00
|
|
|
@NgModule({declarations: [MyComponent]})
|
2018-08-02 17:32:30 -04:00
|
|
|
export class MyModule {}
|
|
|
|
`
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
const template = `
|
2018-12-19 15:17:38 -05:00
|
|
|
function MyComponent_ng_template_0_Template(rf, ctx) {
|
2018-08-02 17:32:30 -04:00
|
|
|
if (rf & 1) {
|
2019-05-17 21:49:21 -04:00
|
|
|
$i0$.ɵɵtext(0, " some-content ");
|
2018-08-02 17:32:30 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// ...
|
|
|
|
|
2019-09-23 14:08:51 -04:00
|
|
|
consts: [["attr", "l", ${AttributeMarker.Bindings}, "boundAttr"]],
|
2018-08-02 17:32:30 -04:00
|
|
|
template: function MyComponent_Template(rf, ctx) {
|
|
|
|
if (rf & 1) {
|
2019-09-23 14:08:51 -04:00
|
|
|
$i0$.ɵɵtemplate(0, MyComponent_ng_template_0_Template, 1, 0, "ng-template", 0);
|
2018-08-02 17:32:30 -04:00
|
|
|
}
|
|
|
|
if (rf & 2) {
|
2019-05-17 21:49:21 -04:00
|
|
|
$i0$.ɵɵproperty("boundAttr", ctx.b);
|
2018-08-02 17:32:30 -04:00
|
|
|
}
|
|
|
|
}`;
|
|
|
|
|
|
|
|
const result = compile(files, angularFiles);
|
|
|
|
|
|
|
|
expectEmit(result.source, template, 'Incorrect template');
|
|
|
|
});
|
2018-08-20 08:23:17 -04:00
|
|
|
|
|
|
|
it('should support local refs on <ng-template>', () => {
|
|
|
|
|
|
|
|
const files = {
|
|
|
|
app: {
|
|
|
|
'spec.ts': `
|
|
|
|
import {Component, NgModule} from '@angular/core';
|
|
|
|
|
|
|
|
@Component({
|
|
|
|
selector: 'my-component',
|
2018-12-19 15:17:38 -05:00
|
|
|
template: '<ng-template #foo>some-content</ng-template>',
|
2018-08-20 08:23:17 -04:00
|
|
|
})
|
|
|
|
export class MyComponent {}
|
|
|
|
|
|
|
|
@NgModule({declarations: [MyComponent]})
|
|
|
|
export class MyModule {}
|
|
|
|
`
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
const template = `
|
2018-12-19 15:17:38 -05:00
|
|
|
function MyComponent_ng_template_0_Template(rf, ctx) {
|
2018-08-20 08:23:17 -04:00
|
|
|
if (rf & 1) {
|
2019-05-17 21:49:21 -04:00
|
|
|
$i0$.ɵɵtext(0, "some-content");
|
2018-08-20 08:23:17 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// ...
|
2019-10-29 17:20:25 -04:00
|
|
|
consts: [["foo", ""]],
|
2018-08-20 08:23:17 -04:00
|
|
|
template: function MyComponent_Template(rf, ctx) {
|
|
|
|
if (rf & 1) {
|
2019-10-29 17:20:25 -04:00
|
|
|
$i0$.ɵɵtemplate(0, MyComponent_ng_template_0_Template, 1, 0, "ng-template", null, 0, $i0$.ɵɵtemplateRefExtractor);
|
2018-08-20 08:23:17 -04:00
|
|
|
}
|
|
|
|
}`;
|
|
|
|
|
|
|
|
const result = compile(files, angularFiles);
|
|
|
|
|
|
|
|
expectEmit(result.source, template, 'Incorrect template');
|
|
|
|
});
|
2018-08-29 06:26:24 -04:00
|
|
|
|
|
|
|
it('should support directive outputs on <ng-template>', () => {
|
|
|
|
|
|
|
|
const files = {
|
|
|
|
app: {
|
|
|
|
'spec.ts': `
|
|
|
|
import {Component, NgModule} from '@angular/core';
|
|
|
|
|
|
|
|
@Component({
|
|
|
|
selector: 'my-component',
|
2018-12-19 15:17:38 -05:00
|
|
|
template: '<ng-template (outDirective)="$event.doSth()"></ng-template>',
|
2018-08-29 06:26:24 -04:00
|
|
|
})
|
|
|
|
export class MyComponent {}
|
|
|
|
|
|
|
|
@NgModule({declarations: [MyComponent]})
|
|
|
|
export class MyModule {}
|
|
|
|
`
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
const template = `
|
2018-12-19 15:17:38 -05:00
|
|
|
function MyComponent_ng_template_0_Template(rf, ctx) { }
|
2018-08-29 06:26:24 -04:00
|
|
|
|
|
|
|
// ...
|
|
|
|
|
2019-09-23 14:08:51 -04:00
|
|
|
consts: [[${AttributeMarker.Bindings}, "outDirective"]],
|
2018-08-29 06:26:24 -04:00
|
|
|
template: function MyComponent_Template(rf, ctx) {
|
|
|
|
if (rf & 1) {
|
2019-09-23 14:08:51 -04:00
|
|
|
$i0$.ɵɵtemplate(0, MyComponent_ng_template_0_Template, 0, 0, "ng-template", 0);
|
2019-05-17 21:49:21 -04:00
|
|
|
$i0$.ɵɵlistener("outDirective", function MyComponent_Template_ng_template_outDirective_0_listener($event) { return $event.doSth(); });
|
2018-08-29 06:26:24 -04:00
|
|
|
}
|
|
|
|
}`;
|
|
|
|
|
|
|
|
const result = compile(files, angularFiles);
|
|
|
|
|
|
|
|
expectEmit(result.source, template, 'Incorrect template');
|
|
|
|
|
|
|
|
});
|
2018-12-19 15:17:38 -05:00
|
|
|
|
|
|
|
it('should create unique template function names even for similar nested template structures',
|
|
|
|
() => {
|
|
|
|
const files = {
|
|
|
|
app: {
|
|
|
|
'spec1.ts': `
|
|
|
|
import {Component, NgModule} from '@angular/core';
|
|
|
|
|
|
|
|
@Component({
|
|
|
|
selector: 'a-component',
|
|
|
|
template: \`
|
|
|
|
<div *ngFor="let item of items">
|
|
|
|
<p *ngIf="item < 10">less than 10</p>
|
|
|
|
<p *ngIf="item < 10">less than 10</p>
|
|
|
|
</div>
|
|
|
|
<div *ngFor="let item of items">
|
|
|
|
<p *ngIf="item > 10">more than 10</p>
|
|
|
|
</div>
|
|
|
|
\`,
|
|
|
|
})
|
|
|
|
export class AComponent {
|
|
|
|
items = [4, 2];
|
|
|
|
}
|
|
|
|
|
|
|
|
@NgModule({declarations: [AComponent]})
|
|
|
|
export class AModule {}
|
|
|
|
`,
|
|
|
|
'spec2.ts': `
|
|
|
|
import {Component, NgModule} from '@angular/core';
|
|
|
|
|
|
|
|
@Component({
|
|
|
|
selector: 'b-component',
|
|
|
|
template: \`
|
|
|
|
<div *ngFor="let item of items">
|
|
|
|
<ng-container *ngFor="let subitem of item.subitems">
|
|
|
|
<p *ngIf="subitem < 10">less than 10</p>
|
|
|
|
<p *ngIf="subitem < 10">less than 10</p>
|
|
|
|
</ng-container>
|
|
|
|
<ng-container *ngFor="let subitem of item.subitems">
|
|
|
|
<p *ngIf="subitem < 10">less than 10</p>
|
|
|
|
</ng-container>
|
|
|
|
</div>
|
|
|
|
<div *ngFor="let item of items">
|
|
|
|
<ng-container *ngFor="let subitem of item.subitems">
|
|
|
|
<p *ngIf="subitem > 10">more than 10</p>
|
|
|
|
</ng-container>
|
|
|
|
</div>
|
|
|
|
\`,
|
|
|
|
})
|
|
|
|
export class BComponent {
|
|
|
|
items = [
|
|
|
|
{subitems: [1, 3]},
|
|
|
|
{subitems: [3, 7]},
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
@NgModule({declarations: [BComponent]})
|
|
|
|
export class BModule {}
|
|
|
|
`,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
const result = compile(files, angularFiles);
|
|
|
|
|
|
|
|
const allTemplateFunctionsNames = (result.source.match(/function ([^\s(]+)/g) || [])
|
|
|
|
.map(x => x.slice(9))
|
|
|
|
.filter(x => x.includes('Template'))
|
|
|
|
.sort();
|
|
|
|
const uniqueTemplateFunctionNames = Array.from(new Set(allTemplateFunctionsNames));
|
|
|
|
|
|
|
|
// Expected template function:
|
|
|
|
// - 5 for AComponent's template.
|
|
|
|
// - 9 for BComponent's template.
|
|
|
|
// - 2 for the two components.
|
|
|
|
expect(allTemplateFunctionsNames.length).toBe(5 + 9 + 2);
|
|
|
|
expect(allTemplateFunctionsNames).toEqual(uniqueTemplateFunctionNames);
|
|
|
|
});
|
|
|
|
|
2019-04-22 06:48:06 -04:00
|
|
|
it('should create unique template function names for ng-content templates', () => {
|
|
|
|
const files = {
|
|
|
|
app: {
|
|
|
|
'spec.ts': `
|
|
|
|
import {Component, NgModule} from '@angular/core';
|
|
|
|
|
|
|
|
@Component({
|
|
|
|
selector: 'a-component',
|
|
|
|
template: \`
|
|
|
|
<ng-content *ngIf="show"></ng-content>
|
|
|
|
\`,
|
|
|
|
})
|
|
|
|
export class AComponent {
|
|
|
|
show = true;
|
|
|
|
}
|
2019-05-09 14:47:25 -04:00
|
|
|
|
2019-04-22 06:48:06 -04:00
|
|
|
@Component({
|
|
|
|
selector: 'b-component',
|
|
|
|
template: \`
|
|
|
|
<ng-content *ngIf="show"></ng-content>
|
|
|
|
\`,
|
|
|
|
})
|
|
|
|
export class BComponent {
|
|
|
|
show = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
@NgModule({declarations: [AComponent, BComponent]})
|
|
|
|
export class AModule {}
|
|
|
|
`
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
const result = compile(files, angularFiles);
|
|
|
|
|
|
|
|
const allTemplateFunctionsNames = (result.source.match(/function ([^\s(]+)/g) || [])
|
|
|
|
.map(x => x.slice(9))
|
|
|
|
.filter(x => x.includes('Template'))
|
|
|
|
.sort();
|
|
|
|
const uniqueTemplateFunctionNames = Array.from(new Set(allTemplateFunctionsNames));
|
|
|
|
|
|
|
|
// Expected template function:
|
|
|
|
// - 1 for AComponent's template.
|
|
|
|
// - 1 for BComponent's template.
|
|
|
|
// - 2 for the two components.
|
|
|
|
expect(allTemplateFunctionsNames.length).toBe(1 + 1 + 2);
|
|
|
|
expect(allTemplateFunctionsNames).toEqual(uniqueTemplateFunctionNames);
|
|
|
|
});
|
|
|
|
|
2018-12-19 15:17:38 -05:00
|
|
|
it('should create unique listener function names even for similar nested template structures',
|
|
|
|
() => {
|
|
|
|
const files = {
|
|
|
|
app: {
|
|
|
|
'spec.ts': `
|
|
|
|
import {Component, NgModule} from '@angular/core';
|
|
|
|
|
|
|
|
@Component({
|
|
|
|
selector: 'my-component',
|
|
|
|
template: \`
|
|
|
|
<div *ngFor="let item of items">
|
|
|
|
<p (click)="$event">{{ item }}</p>
|
|
|
|
<p (click)="$event">{{ item }}</p>
|
|
|
|
</div>
|
|
|
|
<div *ngFor="let item of items">
|
|
|
|
<p (click)="$event">{{ item }}</p>
|
|
|
|
</div>
|
|
|
|
\`,
|
|
|
|
})
|
|
|
|
export class MyComponent {
|
|
|
|
items = [4, 2];
|
|
|
|
}
|
|
|
|
|
|
|
|
@NgModule({declarations: [MyComponent]})
|
|
|
|
export class MyModule {}
|
|
|
|
`,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
const result = compile(files, angularFiles);
|
|
|
|
|
|
|
|
const allListenerFunctionsNames = (result.source.match(/function ([^\s(]+)/g) || [])
|
|
|
|
.map(x => x.slice(9))
|
|
|
|
.filter(x => x.includes('listener'))
|
|
|
|
.sort();
|
|
|
|
const uniqueListenerFunctionNames = Array.from(new Set(allListenerFunctionsNames));
|
|
|
|
|
|
|
|
expect(allListenerFunctionsNames.length).toBe(3);
|
|
|
|
expect(allListenerFunctionsNames).toEqual(uniqueListenerFunctionNames);
|
|
|
|
});
|
2019-02-09 10:04:15 -05:00
|
|
|
|
|
|
|
it('should support pipes in template bindings', () => {
|
|
|
|
const files = {
|
|
|
|
app: {
|
|
|
|
'spec.ts': `
|
|
|
|
import {Component, NgModule} from '@angular/core';
|
|
|
|
|
|
|
|
@Component({
|
|
|
|
selector: 'my-component',
|
|
|
|
template: \`
|
|
|
|
<div *ngIf="val | pipe"></div>\`
|
|
|
|
})
|
|
|
|
export class MyComponent {}
|
|
|
|
|
|
|
|
@NgModule({declarations: [MyComponent]})
|
|
|
|
export class MyModule {}
|
|
|
|
`
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
const template = `
|
|
|
|
function MyComponent_div_0_Template(rf, ctx) {
|
|
|
|
if (rf & 1) {
|
2019-05-17 21:49:21 -04:00
|
|
|
$i0$.ɵɵelement(0, "div");
|
2019-02-09 10:04:15 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// ...
|
2019-09-23 14:08:51 -04:00
|
|
|
consts: [[${AttributeMarker.Template}, "ngIf"]],
|
2019-02-09 10:04:15 -05:00
|
|
|
template: function MyComponent_Template(rf, ctx) {
|
|
|
|
if (rf & 1) {
|
2019-09-23 14:08:51 -04:00
|
|
|
$i0$.ɵɵtemplate(0, MyComponent_div_0_Template, 1, 0, "div", 0);
|
2019-05-17 21:49:21 -04:00
|
|
|
$i0$.ɵɵpipe(1, "pipe");
|
2019-02-09 10:04:15 -05:00
|
|
|
} if (rf & 2) {
|
2019-05-17 21:49:21 -04:00
|
|
|
$i0$.ɵɵproperty("ngIf", $i0$.ɵɵpipeBind1(1, 1, ctx.val));
|
2019-02-09 10:04:15 -05:00
|
|
|
}
|
|
|
|
}`;
|
|
|
|
|
|
|
|
const result = compile(files, angularFiles);
|
|
|
|
|
|
|
|
expectEmit(result.source, template, 'Incorrect template');
|
|
|
|
});
|
2019-12-03 20:46:45 -05:00
|
|
|
|
|
|
|
it('should safely nest ternary operations', () => {
|
|
|
|
const files = {
|
|
|
|
app: {
|
|
|
|
'spec.ts': `
|
|
|
|
import {Component, NgModule} from '@angular/core';
|
|
|
|
|
|
|
|
@Component({
|
|
|
|
selector: 'my-component',
|
|
|
|
template: \`
|
|
|
|
{{a?.b ? 1 : 2 }}\`
|
|
|
|
})
|
|
|
|
export class MyComponent {}
|
|
|
|
|
|
|
|
@NgModule({declarations: [MyComponent]})
|
|
|
|
export class MyModule {}
|
|
|
|
`
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
const template = `i0.ɵɵtextInterpolate1(" ", (ctx.a == null ? null : ctx.a.b) ? 1 : 2, "")`;
|
|
|
|
|
|
|
|
const result = compile(files, angularFiles);
|
|
|
|
expectEmit(result.source, template, 'Incorrect template');
|
|
|
|
});
|
2018-04-10 23:57:20 -04:00
|
|
|
});
|