angular2-pubsub
TypeScript icon, indicating that this package has built-in type declarations

4.0.3 • Public • Published

Pub/Sub Service for Angular 2

A simple publisher/subscriber service.

NPM

Usage

  • Import service in your codes or download via npm or bower.

npm i --save angular2-pubsub

if you use Angular version 2.x.x plase install from npm with '2.0.6' tag.

npm i --save angular2-pubsub@2.0.6

if you use Angular version 5.x.x plase install from npm with 'next' tag.

npm i --save angular2-pubsub@next

  • Add module bundle to imports in your application.
...
 
import { PubSubModule } from 'angular2-pubsub'; // <= HERE
 
@NgModule({
declarations: [
    RootComponent,
    NavigationComponent,
    OverlayComponent
],
imports: [
    BrowserModule,
    FormsModule,
    HttpModule,
    PubSubModule.forRoot() // <= AND HERE
],
providers: [], 
bootstrap: [RootComponent]
})
 
...
  • And import service wherever you want

Documentation

Class Overview

declare class PubSubService {
    private events: Object;
    $pub(event: string, eventObject?: any): void;
    $sub(): undefined;
    $sub(event: string): Observable<any>;
    $sub(event: string, callback: (value: any) => void): Subscription;
    $sub(event: string, callback: (value: any) => void, error: (error: any) => void): Subscription;
    $sub(event: string, callback: (value: any) => void, error: (error: any) => void, complete: () => void): Subscription;
}

PubSubService.$pub(event: string, eventObject?: any): void

Publish event to all subscriber.

etc.

export class OverlayComponent implements OnInit, OnDestroy {
    constructor(private pubsub: PubSubService) { }
 
    anyFunc(){
        this.pubsub.$pub('pleaseCloseSidenav', 'helloIAmOverlay');
    }
}

PubSubService.$sub(event: string): Observable

Subscribe to channel.

etc.

export class NavigationComponent implements OnInit, OnDestroy {
    sideanvSub: any;
    
    constructor(private pubsub: EventDispatcherService) { }
 
    ngOnInit() {
        // usage of $sub(event: string): <Observable<any>>;
        this.closeSidenavSub = this.pubsub.$sub('pleaseCloseSidenav').subscribe((from) => {
            this.sidenavOpened = false;
        });
 
        // usage of $sub(event: string, callback: (value: any) => void, error?: (error: any) => void, complete?: () => void): Subscription;
        this.openSidenavSub = this.pubsub.$sub('pleaseOpenSidenav', (from) => {
            this.sidenavOpened = true;
        });
    }
    ngOnDestroy() {
        this.closeSidenavSub.unsubscribe();
        this.openSidenavSub.unsubscribe();
    }

See Changelog $sub method have one bug. RxJS Subscriber call subscribe method on start like Angular 1.x $scope.$watch.

Build the source

Follow the steps to run the tests and build the source code.

npm install
npm test
npm run build

Commands above will generate the ready to use bundles under the ./dist folder.

Package Sidebar

Install

npm i angular2-pubsub

Weekly Downloads

18

Version

4.0.3

License

ISC

Last publish

Collaborators

  • sqlprovider