How to call component method from service? (angular2)
Asked Answered
H

3

31

I want to create service, which can interact with one component. All another components in my app, should be able to call this service, and this service should interact with this component.

How to call component method from service?

@Component({
  selector:'component'
})
export class Component{

  function2(){ 
    // How call it?
  }
}

From this servive?

@Injectable()

export class Service {


  callComponentsMethod() {
    //From this place?;
      }
}
Harbor answered 24/11, 2016 at 14:7 Comment(1)
You should extract the callComponentsMethod method in to a service and then inject the service to both placesAtory
C
35

Interaction between components can be indeed achieved using services. You will need to inject the service use for inter-component communication into all the components which will need to use it (all the caller components and the callee method) and make use of the properties of Observables.

The shared service can look something like this:

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

@Injectable()
export class CommunicationService {

  // Observable string sources
  private componentMethodCallSource = new Subject<any>();
  
  // Observable string streams
  componentMethodCalled$ = this.componentMethodCallSource.asObservable();

  // Service message commands
  callComponentMethod() {
    this.componentMethodCallSource.next();
  }
}

Example:

Sender:

callMethod = function () {
   this.communicationService.callComponentMethod();
}

Receiver:

this.communicationService.componentMethodCalled$.subscribe(() => {
      alert('(Component2) Method called!');
});

I have created a basic example here, where clicking on a button from Component1 will call a method from Component2.

If you want to read more on the subject, please refer to the dedicated documentation section: https://angular.io/guide/component-interaction#parent-and-children-communicate-via-a-service

Careful answered 24/11, 2016 at 14:30 Comment(15)
It calls callComponentMethod, but does not call componentMethodCallSource. Have you any idea why?Harbor
I don't really understand your question. The end result is that Component1 calls a method from Component2. Isn't that what you need?Careful
I do not understand why, but does not calls needed function.Harbor
You mean in your application, right? Can you please look in the console to see if there are any errors?Careful
No. There are no errors. I see console.logs only in callComponentMethod, but it does not call needed method.Harbor
Make sure you register the shared service as a provider in the root module. If that's not the issue, please show me the code of your application so I can take a look.Careful
Let us continue this discussion in chat.Harbor
Could it call component from another module?Harbor
I only tested the situation where the components reside in the same module, I don't think it works with different modules.Careful
@Tudor Ciotlos, Your above solution is really good. How to pass value from component 1 to component 2 in method parameter?Graeae
@AnilJagtap Please take a look at this example: angular.io/docs/ts/latest/cookbook/…Careful
@TudorCiotlos can you elucidate me on how can I call a component "method" from a service method? Not from another component. I'm using a same dropdown in various components so a I need every component to implement its own version of the service method thats its called when the an option is selected.Willettewilley
I tested what Tudor Ciotlos explained and it only works if all components are in the same module. If you want to work with this solution and separated modules, you'll need to make adaptions.Redbreast
the more oftener i call this function it gets fired twice or more. For every time i call it, the next time it is +1. So if i used the function 10 times it gets called 11 times the next time.Crossexamine
@Crossexamine without seeing your code, my best bet is that you have a RxJs memory leak problem. This article might help: netbasal.com/…Careful
B
21

The question does not ask component interaction, it asks for calling a component method from a service.

This simply can be achieved by injecting service to the component. Then define a method inside the service which takes a function as parameter. The method should save this function as a property of service and call it wherever it wants.

// -------------------------------------------------------------------------------------
// codes for component
import { JustAService} from '../justAService.service';
@Component({
  selector: 'app-cute-little',
  templateUrl: './cute-little.component.html',
  styleUrls: ['./cute-little.component.css']
})
export class CuteLittleComponent implements OnInit {
  s: JustAService;
  a: number = 10;
  constructor(theService: JustAService) {
    this.s = theService;
  }

  ngOnInit() {
    this.s.onSomethingHappended(this.doThis.bind(this));
  }

  doThis() {
    this.a++;
    console.log('yuppiiiii, ', this.a);
  }
}
// -------------------------------------------------------------------------------------
// codes for service
@Injectable({
  providedIn: 'root'
})
export class JustAService { 
  private myFunc: () => void;
  onSomethingHappended(fn: () => void) {
    this.myFunc = fn;
    // from now on, call myFunc wherever you want inside this service
  }
}
Battaglia answered 3/9, 2019 at 7:10 Comment(4)
Thank you, you saved my dayBirck
@Battaglia is it possible to send data from service to component in this way?Mariettemarigold
@Mariettemarigold of course. You just need to inject the service inside the constructor of the component and use the service.Battaglia
genius and so simple thxWorldlywise
E
4

as this post is a bit old, I actualize the response of Tudor the stackblitz

the service

private customSubject = new Subject<any>();
  customObservable = this.customSubject.asObservable();

  // Service message commands
  callComponentMethod(value:any) {
    this.customSubject.next(value);
  }

the main-component

constructor(private communicationService:CommunicationService){}
  ngOnInit()
  {
    this.communicationService.customObservable.subscribe((res) => {
          this.myFunction(res)
        }
      );
  }
  myFunction(res:any)
  {
    alert(res)
  }

Another component that call to the method of the service

constructor( private communicationService: CommunicationService  ) { }

  click() {
    this.communicationService.callComponentMethod("hello word");
  }
Estimate answered 27/8, 2019 at 6:47 Comment(1)
that is working fine but point is multiple time call issues occurredCapability

© 2022 - 2024 — McMap. All rights reserved.