Is it possible to add a component in the root component template and being able to access it from a child component. For example, imagine this is the root app component:
<main>
<global-component #globalComponent></global-component>
<child-component></child-component>
</main>
What I would like is, in the code of "child-component", being able to do something like this:
@Component({...})
export class ChildComponent
{
@SomethingAwesome(GlobalComponent) globalComponent: GlobalComponent;
}
The goal is to be able to display errors/warning always in the same way. The "GlobalComponent" template would be a modal message and I want to be able to display it whenever I want. For example:
...
this.globalComponent.ShowError("Something's weird in here !");
...
The alternative (I guess) I have in mind is creating a service with an observable that "GlobalComponent" would subscribed to and react accordingly but I'm wondering if what I asked is possible.
Edit:
In the example, components are siblings but it might not always be the case. "GlobalComponent" should be available in any component, whatever its "deepness".
Thanks
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…