155 lines
3.9 KiB
JavaScript
155 lines
3.9 KiB
JavaScript
/**
|
|
* @module ol/Observable
|
|
*/
|
|
import {inherits} from './index.js';
|
|
import {listen, unlistenByKey, unlisten, listenOnce} from './events.js';
|
|
import EventTarget from './events/EventTarget.js';
|
|
import EventType from './events/EventType.js';
|
|
|
|
/**
|
|
* @classdesc
|
|
* Abstract base class; normally only used for creating subclasses and not
|
|
* instantiated in apps.
|
|
* An event target providing convenient methods for listener registration
|
|
* and unregistration. A generic `change` event is always available through
|
|
* {@link ol.Observable#changed}.
|
|
*
|
|
* @constructor
|
|
* @extends {ol.events.EventTarget}
|
|
* @fires ol.events.Event
|
|
* @struct
|
|
* @api
|
|
*/
|
|
const Observable = function() {
|
|
|
|
EventTarget.call(this);
|
|
|
|
/**
|
|
* @private
|
|
* @type {number}
|
|
*/
|
|
this.revision_ = 0;
|
|
|
|
};
|
|
|
|
inherits(Observable, EventTarget);
|
|
|
|
|
|
/**
|
|
* Removes an event listener using the key returned by `on()` or `once()`.
|
|
* @param {ol.EventsKey|Array.<ol.EventsKey>} key The key returned by `on()`
|
|
* or `once()` (or an array of keys).
|
|
* @api
|
|
*/
|
|
export function unByKey(key) {
|
|
if (Array.isArray(key)) {
|
|
for (let i = 0, ii = key.length; i < ii; ++i) {
|
|
unlistenByKey(key[i]);
|
|
}
|
|
} else {
|
|
unlistenByKey(/** @type {ol.EventsKey} */ (key));
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
* Increases the revision counter and dispatches a 'change' event.
|
|
* @api
|
|
*/
|
|
Observable.prototype.changed = function() {
|
|
++this.revision_;
|
|
this.dispatchEvent(EventType.CHANGE);
|
|
};
|
|
|
|
|
|
/**
|
|
* Dispatches an event and calls all listeners listening for events
|
|
* of this type. The event parameter can either be a string or an
|
|
* Object with a `type` property.
|
|
*
|
|
* @param {{type: string,
|
|
* target: (EventTarget|ol.events.EventTarget|undefined)}|ol.events.Event|
|
|
* string} event Event object.
|
|
* @function
|
|
* @api
|
|
*/
|
|
Observable.prototype.dispatchEvent;
|
|
|
|
|
|
/**
|
|
* Get the version number for this object. Each time the object is modified,
|
|
* its version number will be incremented.
|
|
* @return {number} Revision.
|
|
* @api
|
|
*/
|
|
Observable.prototype.getRevision = function() {
|
|
return this.revision_;
|
|
};
|
|
|
|
|
|
/**
|
|
* Listen for a certain type of event.
|
|
* @param {string|Array.<string>} type The event type or array of event types.
|
|
* @param {function(?): ?} listener The listener function.
|
|
* @return {ol.EventsKey|Array.<ol.EventsKey>} Unique key for the listener. If
|
|
* called with an array of event types as the first argument, the return
|
|
* will be an array of keys.
|
|
* @api
|
|
*/
|
|
Observable.prototype.on = function(type, listener) {
|
|
if (Array.isArray(type)) {
|
|
const len = type.length;
|
|
const keys = new Array(len);
|
|
for (let i = 0; i < len; ++i) {
|
|
keys[i] = listen(this, type[i], listener);
|
|
}
|
|
return keys;
|
|
} else {
|
|
return listen(
|
|
this, /** @type {string} */ (type), listener);
|
|
}
|
|
};
|
|
|
|
|
|
/**
|
|
* Listen once for a certain type of event.
|
|
* @param {string|Array.<string>} type The event type or array of event types.
|
|
* @param {function(?): ?} listener The listener function.
|
|
* @return {ol.EventsKey|Array.<ol.EventsKey>} Unique key for the listener. If
|
|
* called with an array of event types as the first argument, the return
|
|
* will be an array of keys.
|
|
* @api
|
|
*/
|
|
Observable.prototype.once = function(type, listener) {
|
|
if (Array.isArray(type)) {
|
|
const len = type.length;
|
|
const keys = new Array(len);
|
|
for (let i = 0; i < len; ++i) {
|
|
keys[i] = listenOnce(this, type[i], listener);
|
|
}
|
|
return keys;
|
|
} else {
|
|
return listenOnce(
|
|
this, /** @type {string} */ (type), listener);
|
|
}
|
|
};
|
|
|
|
|
|
/**
|
|
* Unlisten for a certain type of event.
|
|
* @param {string|Array.<string>} type The event type or array of event types.
|
|
* @param {function(?): ?} listener The listener function.
|
|
* @api
|
|
*/
|
|
Observable.prototype.un = function(type, listener) {
|
|
if (Array.isArray(type)) {
|
|
for (let i = 0, ii = type.length; i < ii; ++i) {
|
|
unlisten(this, type[i], listener);
|
|
}
|
|
return;
|
|
} else {
|
|
unlisten(this, /** @type {string} */ (type), listener);
|
|
}
|
|
};
|
|
export default Observable;
|