2020-08-05 22:08:55 +05:30
|
|
|
/*
|
|
|
|
Copyright 2020 Bruno Windels <bruno@windels.cloud>
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2020-04-21 00:56:39 +05:30
|
|
|
export class BaseObservable {
|
2019-02-22 03:38:23 +05:30
|
|
|
constructor() {
|
|
|
|
this._handlers = new Set();
|
|
|
|
}
|
|
|
|
|
|
|
|
onSubscribeFirst() {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
onUnsubscribeLast() {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
subscribe(handler) {
|
|
|
|
this._handlers.add(handler);
|
2019-02-27 01:43:43 +05:30
|
|
|
if (this._handlers.size === 1) {
|
2019-02-22 03:38:23 +05:30
|
|
|
this.onSubscribeFirst();
|
|
|
|
}
|
|
|
|
return () => {
|
2020-04-29 13:40:20 +05:30
|
|
|
return this.unsubscribe(handler);
|
2019-02-22 03:38:23 +05:30
|
|
|
};
|
|
|
|
}
|
2019-02-27 01:18:57 +05:30
|
|
|
|
2020-04-29 13:40:20 +05:30
|
|
|
unsubscribe(handler) {
|
|
|
|
if (handler) {
|
|
|
|
this._handlers.delete(handler);
|
|
|
|
if (this._handlers.size === 0) {
|
|
|
|
this.onUnsubscribeLast();
|
|
|
|
}
|
|
|
|
handler = null;
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2021-05-07 16:40:35 +05:30
|
|
|
unsubscribeAll() {
|
|
|
|
if (this._handlers.size !== 0) {
|
|
|
|
this._handlers.clear();
|
|
|
|
this.onUnsubscribeLast();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-30 19:49:51 +05:30
|
|
|
get hasSubscriptions() {
|
|
|
|
return this._handlers.size !== 0;
|
|
|
|
}
|
|
|
|
|
2019-02-27 01:18:57 +05:30
|
|
|
// Add iterator over handlers here
|
2019-02-22 03:38:23 +05:30
|
|
|
}
|
2019-07-29 14:28:27 +05:30
|
|
|
|
|
|
|
export function tests() {
|
2020-04-19 22:32:10 +05:30
|
|
|
class Collection extends BaseObservable {
|
2019-07-29 14:28:27 +05:30
|
|
|
constructor() {
|
|
|
|
super();
|
|
|
|
this.firstSubscribeCalls = 0;
|
|
|
|
this.firstUnsubscribeCalls = 0;
|
|
|
|
}
|
|
|
|
onSubscribeFirst() { this.firstSubscribeCalls += 1; }
|
|
|
|
onUnsubscribeLast() { this.firstUnsubscribeCalls += 1; }
|
|
|
|
}
|
|
|
|
|
|
|
|
return {
|
|
|
|
test_unsubscribe(assert) {
|
|
|
|
const c = new Collection();
|
2019-07-29 14:29:49 +05:30
|
|
|
const unsubscribe = c.subscribe({});
|
|
|
|
unsubscribe();
|
2019-07-29 14:28:27 +05:30
|
|
|
assert.equal(c.firstSubscribeCalls, 1);
|
|
|
|
assert.equal(c.firstUnsubscribeCalls, 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|