Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* Copyright (C) 2008 Apple Inc. All Rights Reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
* OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
import {EventDescriptor, EventTarget, EventTargetEvent} from './EventTarget.js'; // eslint-disable-line no-unused-vars
/**
* @typedef {!{thisObject: (!Object|undefined), listener: function(!EventTargetEvent):void, disposed: (boolean|undefined)}}
*/
let _listenerCallbackTuple; // eslint-disable-line no-unused-vars
/**
* @implements {EventTarget}
* @unrestricted
*/
export class ObjectWrapper {
constructor() {
/** @type {(!Map>|undefined)} */
this._listeners;
}
/**
* @override
* @param {string|symbol} eventType
* @param {function(!EventTargetEvent):void} listener
* @param {!Object=} thisObject
* @return {!EventDescriptor}
*/
addEventListener(eventType, listener, thisObject) {
if (!listener) {
console.assert(false);
}
if (!this._listeners) {
this._listeners = new Map();
}
if (!this._listeners.has(eventType)) {
this._listeners.set(eventType, []);
}
const listenerForEventType = this._listeners.get(eventType);
if (listenerForEventType) {
listenerForEventType.push({thisObject: thisObject, listener: listener, disposed: undefined});
}
return {eventTarget: this, eventType: eventType, thisObject: thisObject, listener: listener};
}
/**
* @override
* @param {string|symbol} eventType
* @return {!Promise<*>}
*/
once(eventType) {
return new Promise(resolve => {
const descriptor = this.addEventListener(eventType, event => {
this.removeEventListener(eventType, descriptor.listener);
resolve(event.data);
});
});
}
/**
* @override
* @param {string|symbol} eventType
* @param {function(!EventTargetEvent):void} listener
* @param {!Object=} thisObject
*/
removeEventListener(eventType, listener, thisObject) {
console.assert(!!listener);
if (!this._listeners || !this._listeners.has(eventType)) {
return;
}
const listeners = this._listeners.get(eventType) || [];
for (let i = 0; i < listeners.length; ++i) {
if (listeners[i].listener === listener && listeners[i].thisObject === thisObject) {
listeners[i].disposed = true;
listeners.splice(i--, 1);
}
}
if (!listeners.length) {
this._listeners.delete(eventType);
}
}
/**
* @override
* @param {string|symbol} eventType
* @return {boolean}
*/
hasEventListeners(eventType) {
return !!(this._listeners && this._listeners.has(eventType));
}
/**
* @override
* @param {string|symbol} eventType
* @param {*=} eventData
*/
dispatchEventToListeners(eventType, eventData) {
if (!this._listeners || !this._listeners.has(eventType)) {
return;
}
const event = /** @type {!EventTargetEvent} */ ({data: eventData});
// @ts-ignore we do the check for undefined above
const listeners = this._listeners.get(eventType).slice(0) || [];
for (let i = 0; i < listeners.length; ++i) {
if (!listeners[i].disposed) {
listeners[i].listener.call(listeners[i].thisObject, event);
}
}
}
}