2020-05-29 05:37:34 -04:00
|
|
|
/*
|
2021-06-13 19:07:40 -04:00
|
|
|
* Copyright © 2020 Luciano Iam <oss@lucianoiam.com>
|
2020-05-29 05:37:34 -04:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
|
2020-06-14 06:10:30 -04:00
|
|
|
export default class Observable {
|
2020-05-29 05:37:34 -04:00
|
|
|
|
|
|
|
constructor () {
|
|
|
|
this._observers = {};
|
|
|
|
}
|
|
|
|
|
2020-06-14 06:18:21 -04:00
|
|
|
addObserver (event, observer) {
|
|
|
|
// event=undefined means the caller is interested in observing all events
|
|
|
|
if (!(event in this._observers)) {
|
|
|
|
this._observers[event] = [];
|
2020-05-29 05:37:34 -04:00
|
|
|
}
|
|
|
|
|
2020-06-14 06:18:21 -04:00
|
|
|
this._observers[event].push(observer);
|
2020-05-29 05:37:34 -04:00
|
|
|
}
|
|
|
|
|
2020-06-14 06:18:21 -04:00
|
|
|
removeObserver (event, observer) {
|
|
|
|
// event=undefined means the caller is not interested in any event anymore
|
|
|
|
if (typeof(event) == 'undefined') {
|
|
|
|
for (const event in this._observers) {
|
|
|
|
this.removeObserver(event, observer);
|
2020-05-29 05:37:34 -04:00
|
|
|
}
|
|
|
|
} else {
|
2020-06-14 06:18:21 -04:00
|
|
|
const index = this._observers[event].indexOf(observer);
|
2020-05-29 05:37:34 -04:00
|
|
|
if (index > -1) {
|
2020-06-14 06:18:21 -04:00
|
|
|
this._observers[event].splice(index, 1);
|
2020-05-29 05:37:34 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-14 06:18:21 -04:00
|
|
|
notifyObservers (event, ...args) {
|
|
|
|
// always notify observers that observe all events
|
2020-05-29 05:37:34 -04:00
|
|
|
if (undefined in this._observers) {
|
|
|
|
for (const observer of this._observers[undefined]) {
|
2020-06-14 06:18:21 -04:00
|
|
|
observer(event, ...args);
|
2020-05-29 05:37:34 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-14 06:18:21 -04:00
|
|
|
if (event in this._observers) {
|
|
|
|
for (const observer of this._observers[event]) {
|
|
|
|
observer(...args);
|
2020-05-29 05:37:34 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|