Add type annotations to BaseObservable
This commit is contained in:
parent
d73dea797a
commit
319027e2e3
1 changed files with 13 additions and 17 deletions
|
@ -14,20 +14,18 @@ See the License for the specific language governing permissions and
|
|||
limitations under the License.
|
||||
*/
|
||||
|
||||
export class BaseObservable {
|
||||
constructor() {
|
||||
this._handlers = new Set();
|
||||
}
|
||||
export abstract class BaseObservable<T> {
|
||||
protected _handlers: Set<T> = new Set<T>();
|
||||
|
||||
onSubscribeFirst() {
|
||||
onSubscribeFirst(): void {
|
||||
|
||||
}
|
||||
|
||||
onUnsubscribeLast() {
|
||||
onUnsubscribeLast(): void {
|
||||
|
||||
}
|
||||
|
||||
subscribe(handler) {
|
||||
subscribe(handler: T): () => void {
|
||||
this._handlers.add(handler);
|
||||
if (this._handlers.size === 1) {
|
||||
this.onSubscribeFirst();
|
||||
|
@ -37,7 +35,7 @@ export class BaseObservable {
|
|||
};
|
||||
}
|
||||
|
||||
unsubscribe(handler) {
|
||||
unsubscribe(handler: T | null): null {
|
||||
if (handler) {
|
||||
this._handlers.delete(handler);
|
||||
if (this._handlers.size === 0) {
|
||||
|
@ -48,14 +46,14 @@ export class BaseObservable {
|
|||
return null;
|
||||
}
|
||||
|
||||
unsubscribeAll() {
|
||||
unsubscribeAll(): void {
|
||||
if (this._handlers.size !== 0) {
|
||||
this._handlers.clear();
|
||||
this.onUnsubscribeLast();
|
||||
}
|
||||
}
|
||||
|
||||
get hasSubscriptions() {
|
||||
get hasSubscriptions(): boolean {
|
||||
return this._handlers.size !== 0;
|
||||
}
|
||||
|
||||
|
@ -63,12 +61,10 @@ export class BaseObservable {
|
|||
}
|
||||
|
||||
export function tests() {
|
||||
class Collection extends BaseObservable {
|
||||
constructor() {
|
||||
super();
|
||||
this.firstSubscribeCalls = 0;
|
||||
this.firstUnsubscribeCalls = 0;
|
||||
}
|
||||
class Collection extends BaseObservable<{}> {
|
||||
firstSubscribeCalls: number= 0;
|
||||
firstUnsubscribeCalls: number = 0;
|
||||
|
||||
onSubscribeFirst() { this.firstSubscribeCalls += 1; }
|
||||
onUnsubscribeLast() { this.firstUnsubscribeCalls += 1; }
|
||||
}
|
||||
|
|
Reference in a new issue