mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-23 14:01:20 +08:00
136 lines
3.9 KiB
TypeScript
136 lines
3.9 KiB
TypeScript
import { assert } from '../util/util';
|
|
import { Platform, EventListenerOptions } from '../platform/platform';
|
|
|
|
/**
|
|
* @hidden
|
|
*/
|
|
export class PointerEvents {
|
|
private rmTouchStart: Function = null;
|
|
private rmTouchMove: Function = null;
|
|
private rmTouchEnd: Function = null;
|
|
private rmTouchCancel: Function = null;
|
|
|
|
private rmMouseStart: Function = null;
|
|
private rmMouseMove: Function = null;
|
|
private rmMouseUp: Function = null;
|
|
|
|
private bindTouchEnd: any;
|
|
private bindMouseUp: any;
|
|
|
|
private lastTouchEvent: number = 0;
|
|
|
|
mouseWait: number = 2 * 1000;
|
|
lastEventType: number;
|
|
|
|
constructor(
|
|
private plt: Platform,
|
|
private ele: any,
|
|
private pointerDown: any,
|
|
private pointerMove: any,
|
|
private pointerUp: any,
|
|
private option: EventListenerOptions
|
|
) {
|
|
assert(ele, 'element can not be null');
|
|
assert(pointerDown, 'pointerDown can not be null');
|
|
|
|
this.bindTouchEnd = this.handleTouchEnd.bind(this);
|
|
this.bindMouseUp = this.handleMouseUp.bind(this);
|
|
|
|
this.rmTouchStart = this.plt.registerListener(ele, 'touchstart', this.handleTouchStart.bind(this), option);
|
|
this.rmMouseStart = this.plt.registerListener(ele, 'mousedown', this.handleMouseDown.bind(this), option);
|
|
}
|
|
|
|
private handleTouchStart(ev: any) {
|
|
assert(this.ele, 'element can not be null');
|
|
assert(this.pointerDown, 'pointerDown can not be null');
|
|
|
|
this.lastTouchEvent = Date.now() + this.mouseWait;
|
|
this.lastEventType = POINTER_EVENT_TYPE_TOUCH;
|
|
if (!this.pointerDown(ev, POINTER_EVENT_TYPE_TOUCH)) {
|
|
return;
|
|
}
|
|
if (!this.rmTouchMove && this.pointerMove) {
|
|
this.rmTouchMove = this.plt.registerListener(this.ele, 'touchmove', this.pointerMove, this.option);
|
|
}
|
|
if (!this.rmTouchEnd) {
|
|
this.rmTouchEnd = this.plt.registerListener(this.ele, 'touchend', this.bindTouchEnd, this.option);
|
|
}
|
|
if (!this.rmTouchCancel) {
|
|
this.rmTouchCancel = this.plt.registerListener(this.ele, 'touchcancel', this.bindTouchEnd, this.option);
|
|
}
|
|
}
|
|
|
|
private handleMouseDown(ev: any) {
|
|
assert(this.ele, 'element can not be null');
|
|
assert(this.pointerDown, 'pointerDown can not be null');
|
|
|
|
if (this.lastTouchEvent > Date.now()) {
|
|
console.debug('mousedown event dropped because of previous touch');
|
|
return;
|
|
}
|
|
this.lastEventType = POINTER_EVENT_TYPE_MOUSE;
|
|
if (!this.pointerDown(ev, POINTER_EVENT_TYPE_MOUSE)) {
|
|
return;
|
|
}
|
|
if (!this.rmMouseMove && this.pointerMove) {
|
|
this.rmMouseMove = this.plt.registerListener(this.plt.doc(), 'mousemove', this.pointerMove, this.option);
|
|
}
|
|
if (!this.rmMouseUp) {
|
|
this.rmMouseUp = this.plt.registerListener(this.plt.doc(), 'mouseup', this.bindMouseUp, this.option);
|
|
}
|
|
}
|
|
|
|
private handleTouchEnd(ev: any) {
|
|
this.stopTouch();
|
|
this.pointerUp && this.pointerUp(ev, POINTER_EVENT_TYPE_TOUCH);
|
|
}
|
|
|
|
private handleMouseUp(ev: any) {
|
|
this.stopMouse();
|
|
this.pointerUp && this.pointerUp(ev, POINTER_EVENT_TYPE_MOUSE);
|
|
}
|
|
|
|
private stopTouch() {
|
|
this.rmTouchMove && this.rmTouchMove();
|
|
this.rmTouchEnd && this.rmTouchEnd();
|
|
this.rmTouchCancel && this.rmTouchCancel();
|
|
|
|
this.rmTouchMove = this.rmTouchEnd = this.rmTouchCancel = null;
|
|
}
|
|
|
|
private stopMouse() {
|
|
this.rmMouseMove && this.rmMouseMove();
|
|
this.rmMouseUp && this.rmMouseUp();
|
|
|
|
this.rmMouseMove = this.rmMouseUp = null;
|
|
}
|
|
|
|
stop() {
|
|
this.stopTouch();
|
|
this.stopMouse();
|
|
}
|
|
|
|
destroy() {
|
|
this.rmTouchStart && this.rmTouchStart();
|
|
this.rmMouseStart && this.rmMouseStart();
|
|
this.stop();
|
|
this.ele = this.pointerUp = this.pointerMove = this.pointerDown = this.rmTouchStart = this.rmMouseStart = null;
|
|
}
|
|
|
|
}
|
|
|
|
|
|
export const POINTER_EVENT_TYPE_MOUSE = 1;
|
|
export const POINTER_EVENT_TYPE_TOUCH = 2;
|
|
|
|
|
|
export interface PointerEventsConfig {
|
|
element?: HTMLElement;
|
|
pointerDown: (ev: any) => boolean;
|
|
pointerMove?: (ev: any) => void;
|
|
pointerUp?: (ev: any) => void;
|
|
zone?: boolean;
|
|
capture?: boolean;
|
|
passive?: boolean;
|
|
}
|