UNPKG

ionic-angular

Version:

A powerful framework for building mobile and progressive web apps with JavaScript and Angular

83 lines 2.83 kB
(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 () { /** * @param {?} plt */ function UIEventManager(plt) { this.plt = plt; this.evts = []; } /** * @param {?} config * @return {?} */ UIEventManager.prototype.pointerEvents = function (config) { if (!config.element || !config.pointerDown) { console.error('PointerEvents config is invalid'); return; } var /** @type {?} */ eventListnerOpts = { capture: config.capture, passive: config.passive, zone: config.zone }; var /** @type {?} */ pointerEvents = new pointer_events_1.PointerEvents(this.plt, config.element, config.pointerDown, config.pointerMove, config.pointerUp, eventListnerOpts); var /** @type {?} */ removeFunc = function () { return pointerEvents.destroy(); }; this.evts.push(removeFunc); return pointerEvents; }; /** * @param {?} ele * @param {?} eventName * @param {?} callback * @param {?} opts * @return {?} */ UIEventManager.prototype.listen = function (ele, eventName, callback, opts) { if (ele) { var /** @type {?} */ removeFunc = this.plt.registerListener(ele, eventName, callback, opts); this.evts.push(removeFunc); return removeFunc; } }; /** * @return {?} */ UIEventManager.prototype.unlistenAll = function () { this.evts.forEach(function (unRegEvent) { unRegEvent(); }); this.evts.length = 0; }; /** * @return {?} */ UIEventManager.prototype.destroy = function () { this.unlistenAll(); this.evts = null; }; return UIEventManager; }()); exports.UIEventManager = UIEventManager; function UIEventManager_tsickle_Closure_declarations() { /** @type {?} */ UIEventManager.prototype.evts; /** @type {?} */ UIEventManager.prototype.plt; } }); //# sourceMappingURL=ui-event-manager.js.map