123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- (function (factory) {
- if (typeof module === "object" && typeof module.exports === "object") {
- var v = factory(require, exports);
- if (v !== undefined) module.exports = v;
- }
- else if (typeof define === "function" && define.amd) {
- define(["require", "exports", "./pointer-events"], factory);
- }
- })(function (require, exports) {
- "use strict";
- Object.defineProperty(exports, "__esModule", { value: true });
- var pointer_events_1 = require("./pointer-events");
- /**
- * @hidden
- */
- var UIEventManager = (function () {
- function UIEventManager(plt) {
- this.plt = plt;
- this.evts = [];
- }
- UIEventManager.prototype.pointerEvents = function (config) {
- if (!config.element || !config.pointerDown) {
- console.error('PointerEvents config is invalid');
- return;
- }
- var eventListnerOpts = {
- capture: config.capture,
- passive: config.passive,
- zone: config.zone
- };
- var pointerEvents = new pointer_events_1.PointerEvents(this.plt, config.element, config.pointerDown, config.pointerMove, config.pointerUp, eventListnerOpts);
- var removeFunc = function () { return pointerEvents.destroy(); };
- this.evts.push(removeFunc);
- return pointerEvents;
- };
- UIEventManager.prototype.listen = function (ele, eventName, callback, opts) {
- if (ele) {
- var removeFunc = this.plt.registerListener(ele, eventName, callback, opts);
- this.evts.push(removeFunc);
- return removeFunc;
- }
- };
- UIEventManager.prototype.unlistenAll = function () {
- this.evts.forEach(function (unRegEvent) {
- unRegEvent();
- });
- this.evts.length = 0;
- };
- UIEventManager.prototype.destroy = function () {
- this.unlistenAll();
- this.evts = null;
- };
- return UIEventManager;
- }());
- exports.UIEventManager = UIEventManager;
- });
- //# sourceMappingURL=ui-event-manager.js.map
|