1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- /**
- * @hidden
- */
- var PointerEvents = (function () {
- function PointerEvents(plt, ele, pointerDown, pointerMove, pointerUp, option) {
- this.plt = plt;
- this.ele = ele;
- this.pointerDown = pointerDown;
- this.pointerMove = pointerMove;
- this.pointerUp = pointerUp;
- this.option = option;
- this.rmTouchStart = null;
- this.rmTouchMove = null;
- this.rmTouchEnd = null;
- this.rmTouchCancel = null;
- this.rmMouseStart = null;
- this.rmMouseMove = null;
- this.rmMouseUp = null;
- this.lastTouchEvent = 0;
- this.mouseWait = 2 * 1000;
- (void 0) /* assert */;
- (void 0) /* assert */;
- 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);
- }
- PointerEvents.prototype.handleTouchStart = function (ev) {
- (void 0) /* assert */;
- (void 0) /* assert */;
- 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);
- }
- };
- PointerEvents.prototype.handleMouseDown = function (ev) {
- (void 0) /* assert */;
- (void 0) /* assert */;
- if (this.lastTouchEvent > Date.now()) {
- (void 0) /* console.debug */;
- 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);
- }
- };
- PointerEvents.prototype.handleTouchEnd = function (ev) {
- this.stopTouch();
- this.pointerUp && this.pointerUp(ev, POINTER_EVENT_TYPE_TOUCH);
- };
- PointerEvents.prototype.handleMouseUp = function (ev) {
- this.stopMouse();
- this.pointerUp && this.pointerUp(ev, POINTER_EVENT_TYPE_MOUSE);
- };
- PointerEvents.prototype.stopTouch = function () {
- this.rmTouchMove && this.rmTouchMove();
- this.rmTouchEnd && this.rmTouchEnd();
- this.rmTouchCancel && this.rmTouchCancel();
- this.rmTouchMove = this.rmTouchEnd = this.rmTouchCancel = null;
- };
- PointerEvents.prototype.stopMouse = function () {
- this.rmMouseMove && this.rmMouseMove();
- this.rmMouseUp && this.rmMouseUp();
- this.rmMouseMove = this.rmMouseUp = null;
- };
- PointerEvents.prototype.stop = function () {
- this.stopTouch();
- this.stopMouse();
- };
- PointerEvents.prototype.destroy = function () {
- this.rmTouchStart && this.rmTouchStart();
- this.rmMouseStart && this.rmMouseStart();
- this.stop();
- this.ele = this.pointerUp = this.pointerMove = this.pointerDown = this.rmTouchStart = this.rmMouseStart = null;
- };
- return PointerEvents;
- }());
- export { PointerEvents };
- export var POINTER_EVENT_TYPE_MOUSE = 1;
- export var POINTER_EVENT_TYPE_TOUCH = 2;
- //# sourceMappingURL=pointer-events.js.map
|