Angular 2 event broadcast
Asked Answered
H

2

18

New to Angular 2. I'm working on broadcast a event between same level component. Currently I know EventEmitter just can transfer a event to upper level component.

I have checked this this link and know observable may be a way to solve my problem, but the sample in that url seems not work for me.

Does anyone know how to use it(observable) for broadcast event or some other way to transfer event to same level components?

Hammett answered 26/10, 2015 at 4:1 Comment(1)
embed.plnkr.co/aJe5SUtFlnpmGXWA5eHkFomentation
E
27

You just need to create some service that will emit messages on which you can subscribe. It can be Observable from rxjs, EventEmitter from node.js, or anything else that follows Observable pattern. Then you should use Dependency Injection to inject this service into concrete components. See this plunker.

class Broadcaster extends EventEmitter {}

@Component({
  selector: 'comp1',
  template: '<div>Generated number: {{ generatedNumber }}</div>',
})
class Comp1 {
  generatedNumber: number = 0;

  constructor(broadcaster: Broadcaster) {
    setInterval(() => {
      broadcaster.next(this.generatedNumber = Math.random());
    },1000);
  }
}

@Component({
  selector: 'comp2',
  template: '<div>Received number: {{ receivedNumber }}</div>',
})
class Comp2 {
  receivedNumber: number = 0;

  constructor(broadcaster: Broadcaster) {
    broadcaster.observer({
      next: generatedNumber => this.receivedNumber = generatedNumber
    });
  }
}

@Component({
  selector: 'app',
  viewProviders: [Broadcaster],
  directives: [Comp1, Comp2],
  template: `
    <comp1></comp1>
    <comp2></comp2>
  `
})
export class App {}

PS In this example I use EventEmitter from angular2, but again, it can be whatever you want

Emlynn answered 26/10, 2015 at 11:36 Comment(3)
Thanks for responding and clarifying the concept "Observable pattern".Hammett
The latest version of angular Emitter has changed to use observables broadcaster.subscribe(generatedNumber => this.receivedNumber = generatedNumber);Haunch
Could you please update this answer for modern Angular 2? I think I'm close, but my component2 isn't catching the event, even after updating to use subscribe.Cung
W
16

Use BehaviorSubject

Service:

import { Injectable } from '@angular/core';
import {BehaviorSubject} from 'rxjs/BehaviorSubject';    

@Injectable()
export class MyService {

   public mySubject: BehaviorSubject<number> = new BehaviorSubject<number>(0);


   public doSomething(): void { 
      let myValue: number = 123;
      this.mySubject.next(myValue);
   }
}

Component:

@Component({ 
  selector: 'app-my-component',
  templateUrl: './my-component.component.html',
  styleUrls: ['./my-component.component.css']
})
export class MyComponent {

   constructor(private myService: MyService) { 
        this.myService.mySubject.subscribe(
             value => {
                console.log(value); 
             }
        );
   }

}
Whim answered 14/2, 2017 at 10:16 Comment(1)
I used this approach to get an Angular Materials Toolbar click event to open and close an Angular Materials Sidenav component - CheersFelucca

© 2022 - 2024 — McMap. All rights reserved.