Skip to content

Commit 495efa4

Browse files
committed
fix(angular): directives did not work within ngif
1 parent e33f751 commit 495efa4

File tree

2 files changed

+48
-17
lines changed

2 files changed

+48
-17
lines changed

projects/interacto-angular/src/lib/directives/click-binder.directive.spec.ts

+32-8
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,15 @@ let ctx: BindingsContext;
1616

1717
@Component({
1818
template: `
19-
<div [ioClick]="methodDiv">1</div>
20-
<button [ioClick]="methodBut">2</button>
21-
<div id="b" ioOnDynamic [ioClick]="methodDyn"><b id="b1">B</b></div>
22-
<b id="b2" [ioClick] (clickBinder)="methodParam($event, 'foo')"></b>
23-
<b ioClick>bad</b>
24-
<b [ioClick]="fff">bad2</b>`,
19+
<div id="d1" [ioClick]="methodDiv">1</div>
20+
<button [ioClick]="methodBut">2</button>
21+
<div id="b" ioOnDynamic [ioClick]="methodDyn"><b id="b1">B</b></div>
22+
<b id="b2" ioClick (clickBinder)="methodParam($event, 'foo')"></b>
23+
<b ioClick>bad</b>
24+
<b [ioClick]="fff">bad2</b>,
25+
@if(true) {<div id="d3" [ioClick]="methodDiv">3</div>}
26+
@switch(true) { @case(true) {<div id="d4" [ioClick]="methodDiv">4</div>} }
27+
@switch(true) { @case(false) {} @default{ <div id="d5" [ioClick]="methodDiv">5</div>} }`,
2528
standalone: true,
2629
imports: [ClickBinderDirective, OnDynamicDirective]
2730
})
@@ -103,14 +106,35 @@ describe("click directive", () => {
103106
});
104107

105108
it("should produce a StubCmd1 on a click on the div", () => {
106-
const div = fixture.debugElement.query(By.css("div")).nativeElement as HTMLElement;
109+
const div = fixture.debugElement.query(By.css("#d1")).nativeElement as HTMLElement;
110+
robot(div).click();
111+
expect(ctx.commands.length).toEqual(1);
112+
expect(ctx.commands[0]).toBeInstanceOf(StubCmd1);
113+
});
114+
115+
it("should produce a StubCmd1 on a click on the div in a if statement", () => {
116+
const div = fixture.debugElement.query(By.css("#d3")).nativeElement as HTMLElement;
117+
robot(div).click();
118+
expect(ctx.commands.length).toEqual(1);
119+
expect(ctx.commands[0]).toBeInstanceOf(StubCmd1);
120+
});
121+
122+
it("should produce a StubCmd1 on a click on the div in a switch case statement", () => {
123+
const div = fixture.debugElement.query(By.css("#d4")).nativeElement as HTMLElement;
124+
robot(div).click();
125+
expect(ctx.commands.length).toEqual(1);
126+
expect(ctx.commands[0]).toBeInstanceOf(StubCmd1);
127+
});
128+
129+
it("should produce a StubCmd1 on a click on the div in a switch default statement", () => {
130+
const div = fixture.debugElement.query(By.css("#d5")).nativeElement as HTMLElement;
107131
robot(div).click();
108132
expect(ctx.commands.length).toEqual(1);
109133
expect(ctx.commands[0]).toBeInstanceOf(StubCmd1);
110134
});
111135

112136
it("should produce two StubCmd1 on two click on the div", () => {
113-
const div = fixture.debugElement.query(By.css("div")).nativeElement as HTMLElement;
137+
const div = fixture.debugElement.query(By.css("#d1")).nativeElement as HTMLElement;
114138
robot().click(div, 2);
115139
expect(ctx.commands.length).toEqual(2);
116140
});

projects/interacto-angular/src/lib/directives/interacto-binder-directive.ts

+16-9
Original file line numberDiff line numberDiff line change
@@ -73,18 +73,25 @@ implements AfterContentInit, OnDestroy {
7373
*/
7474
// eslint-disable-next-line @typescript-eslint/no-explicit-any
7575
protected getComponent(fnName: string): any {
76-
/*
77-
* Finding the component. Warning: #horriblehack
78-
* https://github.com/angular/angular/issues/8277
79-
* Do not know why '8' (found by inspecting the object at run time)
80-
*/
76+
/*
77+
* Finding the component. Warning: #horriblehack
78+
* https://github.com/angular/angular/issues/8277
79+
* Do not know why '8' (found by inspecting the object at run time)
80+
*/
8181
// eslint-disable-next-line @typescript-eslint/no-unsafe-member-access, @typescript-eslint/no-explicit-any
82-
return (this.viewContainerRef as any)._hostLView[8][fnName] === undefined
83-
// When the directive is used on a template (eg ng For), have to go deeper in the object
82+
if ((this.viewContainerRef as any)._hostLView[8] === undefined) {
83+
// When the directive is used on a template (here ngif), have to go deeper in the object
84+
// eslint-disable-next-line @typescript-eslint/no-unsafe-member-access, @typescript-eslint/no-explicit-any
85+
return (this.viewContainerRef as any)._hostLView[14][8];
86+
}
8487
// eslint-disable-next-line @typescript-eslint/no-unsafe-member-access, @typescript-eslint/no-explicit-any
85-
? (this.viewContainerRef as any)._hostLView[16][8]
88+
if ((this.viewContainerRef as any)._hostLView[8]?.[fnName] === undefined) {
89+
// When the directive is used on a template (eg ngFor), have to go deeper in the object
8690
// eslint-disable-next-line @typescript-eslint/no-unsafe-member-access, @typescript-eslint/no-explicit-any
87-
: (this.viewContainerRef as any)._hostLView[8];
91+
return (this.viewContainerRef as any)._hostLView[16][8];
92+
}
93+
// eslint-disable-next-line @typescript-eslint/no-unsafe-member-access, @typescript-eslint/no-explicit-any
94+
return (this.viewContainerRef as any)._hostLView[8];
8895
}
8996

9097
public ngAfterContentInit(): void {

0 commit comments

Comments
 (0)