Skip to content

Commit

Permalink
fix(module:anchor): fix called detectChanges when component destroy (N…
Browse files Browse the repository at this point in the history
  • Loading branch information
cipchk authored and vthinkxie committed Jan 31, 2019
1 parent ed8e88f commit c2d83ed
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 6 deletions.
13 changes: 13 additions & 0 deletions components/anchor/anchor.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,19 @@ describe('anchor', () => {
}, throttleTime);
});

it('should clean actived when leave all anchor', fakeAsync(() => {
spyOn(context.comp, 'clearActive' as any);
page.scrollTo();
tick(throttleTime);
fixture.detectChanges();
expect(context.comp['clearActive']).not.toHaveBeenCalled();
window.scrollTo(0, 0);
window.dispatchEvent(new Event('scroll'));
tick(throttleTime);
fixture.detectChanges();
expect(context.comp['clearActive']).toHaveBeenCalled();
}));

it(`won't scolling when is not exists link`, () => {
spyOn(srv, 'getScroll');
expect(context._scroll).not.toHaveBeenCalled();
Expand Down
14 changes: 8 additions & 6 deletions components/anchor/nz-anchor.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ export class NzAnchorComponent implements OnDestroy, AfterViewInit {
private animating = false;
private target: Element = null;
private scroll$: Subscription = null;
private destroyed = false;
@ViewChild('ink') private ink: ElementRef;
visible = false;
wrapperStyle: {} = { 'max-height': '100vh' };
Expand Down Expand Up @@ -106,7 +107,7 @@ export class NzAnchorComponent implements OnDestroy, AfterViewInit {
// endregion

/* tslint:disable-next-line:no-any */
constructor(private scrollSrv: NzScrollService, @Inject(DOCUMENT) private doc: any, private cd: ChangeDetectorRef) {
constructor(private scrollSrv: NzScrollService, @Inject(DOCUMENT) private doc: any, private cdr: ChangeDetectorRef) {
}

registerLink(link: NzAnchorLinkComponent): void {
Expand All @@ -126,6 +127,7 @@ export class NzAnchorComponent implements OnDestroy, AfterViewInit {
}

ngOnDestroy(): void {
this.destroyed = true;
this.removeListen();
}

Expand All @@ -134,8 +136,8 @@ export class NzAnchorComponent implements OnDestroy, AfterViewInit {
this.scroll$ = fromEvent(this.getTarget(), 'scroll')
.pipe(throttleTime(50), distinctUntilChanged())
.subscribe(() => this.handleScroll());
// 由于页面刷新时滚动条位置的记忆
// 倒置在dom未渲染完成,导致计算不正确
// 浏览器在刷新时保持滚动位置,会倒置在dom未渲染完成时计算不正确,因此延迟重新计算
// 与之相对应可能会引起组件移除后依然触发 `handleScroll` 的 `detectChanges`
setTimeout(() => this.handleScroll());
}

Expand All @@ -157,7 +159,7 @@ export class NzAnchorComponent implements OnDestroy, AfterViewInit {
}

handleScroll(): void {
if (this.animating) {
if (this.destroyed || this.animating) {
return;
}

Expand All @@ -181,7 +183,7 @@ export class NzAnchorComponent implements OnDestroy, AfterViewInit {
this.visible = !!sections.length;
if (!this.visible) {
this.clearActive();
this.cd.detectChanges();
this.cdr.detectChanges();
} else {
const maxSection = sections.reduce((prev, curr) => curr.top > prev.top ? curr : prev);
this.handleActive(maxSection.comp);
Expand All @@ -203,7 +205,7 @@ export class NzAnchorComponent implements OnDestroy, AfterViewInit {

const linkNode = (comp.el.nativeElement as HTMLDivElement).querySelector('.ant-anchor-link-title') as HTMLElement;
this.ink.nativeElement.style.top = `${linkNode.offsetTop + linkNode.clientHeight / 2 - 4.5}px`;
this.cd.detectChanges();
this.cdr.detectChanges();

this.nzScroll.emit(comp);
}
Expand Down

0 comments on commit c2d83ed

Please sign in to comment.