Răsfoiți Sursa

Fix listener not being cleaned up

Thomas Dy 7 ani în urmă
părinte
comite
bf66b64e46
1 a modificat fișierele cu 8 adăugiri și 0 ștergeri
  1. 8 0
      src/display.ts

+ 8 - 0
src/display.ts

@@ -135,6 +135,7 @@ namespace display {
   export class TrackProgressController {
     totalBar: HTMLElement;
     intervalBar: HTMLElement;
+    listener: (event: AnimationEvent) => void;
 
     constructor(private element: HTMLElement, lines: level.Line[]) {
       this.totalBar = element.querySelector('.total .shade');
@@ -161,10 +162,17 @@ namespace display {
     }
 
     setListener(func: (event: AnimationEvent) => void): void {
+      if (this.listener) {
+        this.intervalBar.removeEventListener('animationend', func);
+      }
       this.intervalBar.addEventListener('animationend', func);
+      this.listener = func;
     }
 
     destroy(): void {
+      if (this.listener) {
+        this.intervalBar.removeEventListener('animationend', this.listener);
+      }
       this.intervalBar.style.animationName = '';
       this.totalBar.style.animationName = '';
     }