Last active
June 16, 2018 09:08
-
-
Save Sampath-Lokuge/507f89473ce4f04bb522818f8aa5d13e to your computer and use it in GitHub Desktop.
HammerJs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { Directive, ElementRef, EventEmitter, Input, NgZone, OnDestroy, OnInit, Output } from '@angular/core'; | |
interface HammerManager { | |
new (element: HTMLElement | SVGElement, options?: any): HammerManager; | |
destroy(): void; | |
add(recognizer: Recognizer): void; | |
on(eventName: string, callback: Function): void; | |
} | |
interface Recognizer { | |
new (options?: any): Recognizer; | |
recognizeWith(otherRecognizer: Recognizer | string): Recognizer; | |
} | |
@Directive({ | |
selector: '[customTapGesture]', | |
}) | |
export class TapGestureDirective implements OnInit, OnDestroy { | |
constructor(private elementRef: ElementRef, private zone: NgZone) {} | |
/* Return the hammerjs library if it's available */ | |
private get hammerLib() { | |
return typeof window !== 'undefined' ? (window as any).Hammer : undefined; | |
} | |
private manager?: HammerManager; | |
/* Event fired when the element is tapped */ | |
@Output() cTap = new EventEmitter<any>(); | |
/* Binds HammerJS Instances */ | |
ngOnInit() { | |
if (this.hammerLib) { | |
this.manager = this.bindHammer(); | |
} | |
} | |
/* Unbinds HammerJS Instances */ | |
ngOnDestroy() { | |
if (this.manager) { | |
this.manager.destroy(); | |
} | |
} | |
protected bindHammer(): HammerManager { | |
return this.zone.run(_ => { | |
const hostElement = this.elementRef.nativeElement; | |
const manager = new this.hammerLib.Manager(hostElement, { | |
touchAction: 'tap', | |
}); | |
manager.add(new this.hammerLib.Tap({})); | |
manager.on('tap', (ev: any) => { | |
this.cTap.emit(ev); | |
ev.preventDefault(); | |
}); | |
return manager; | |
}); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment