Giter Club home page Giter Club logo

typescript-observable's Introduction

typescript-observable

Build Status

Adds classes and interfaces to make Typescript classes observable.

Installation

With npm

npm install --save typescript-observable

Observable

A class for observable objects.

  • on(type : string | string[], callback : (data : any) => void | IObserver) : { cancel : Function } Adds the observer callback to the event type. The returned object has a function cancel that removes the listener.
  • off(observer : IObserver) : boolean Removes the observer. Only works if the bound observer is of type IObserver. Returns true if the removal was successful, otherwise false.
  • count() : number Counts the number of observers.
  • clear() : void Removes all observers.
  • notify(event : IObservableEvent, data : any) : void Notifies all the observers listening to the IObservableEvent or any of its parents. The parameter data is passed to the observers.

ChangeObservable

extends Observable

A subclass of Observable that tracks changes.

  • hasChanged() : boolean Check if the object has changed.
  • setChanged() : void Set that the object has changed.
  • clearChanged

IObservableEvent

An interface for events.

  • parent : IObservableEvent Observers that observe the parent event will also be notified. Can be null.
  • name : string Name of the event.

IObserver

An interface that defines an observer.

  • update(data : any) : void Called when the observers are notified.

Example

The class to be observed can be extended with Observable

let rootEvent : IObservableEvent = {
        parent: null,
        name: 'root'
    },
    childEvent : IObservableEvent = {
        parent: rootEvent,
        name: 'child'
    };

class TestObservable extends Observable {
  foo() : void {
    // do something
    // notify observers listening to the rootEvent
    notify(rootEvent, {
        message: 'rootEvent was called'
    });
  }
  
  bar() : void {
    // do something else
    // notify observers listening to the childEvent and the rootEvent
    notify(childEvent, {
        message: 'childEvent was called'
    });
  }
}

let testObservable = new TestObservable();

// Called on rootEvent and childEvent
testObservable.on('root', data => {
    console.log('root observer', data.message);
});

// Called on childEvent
testObservable.on('child', data => {
    console.log('child observer', data.message);
});

testObservable.foo();
/**
 * Prints:
 * root observer, rootEvent was called
 */

testObservable.bar();
/*
 * Prints:
 * root observer, childEvent was called
 * child observer, childEvent was called
 */

Contribute

Make sure to run the tests

npm test

typescript-observable's People

Contributors

afsa avatar

Watchers

Cvetoslav Ludmiloff avatar James Cloos avatar

Forkers

87vrvk9k

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.