38
votes

I'm trying to inject a parent component into a child component. I thought this would be straightforward – simply specify/inject the parent component in the child's constructor():

constructor(private _parent:AppComponent) {}   // child component constructor

I get the following error:

EXCEPTION: Cannot resolve all parameters for ChildComponent(?). Make sure they all have valid type or annotations.

What am I missing?

ChildComponent:

import {Component} from 'angular2/core';
import {AppComponent} from './app.component';

@Component({
  selector: 'child',
  template: `<p>child</p>`
})
export class ChildComponent {
  constructor(private _parent:AppComponent) {}
}

AppComponent:

import {Component} from 'angular2/core';
import {ChildComponent} from './child.component';

@Component({
  selector: 'my-app',
  template: `{{title}} <child></child>
  `,
  directives: [ChildComponent]
})
export class AppComponent {
  title = "Angular 2 - inject parent";
  constructor() { console.clear(); }
}

Plunker

2
Mark, the problem is that when you import B from A, and at the same time you import A from B creates a circular dependency (can't go deeper on the subject). Check this plnkr with your case using only one file holding both Child and Parent components. - Eric Martinez
Thanks @EricMartinez, and thanks for all of your other Angular2 comments and answers as well on SO. I learn a lot from you. - Mark Rajcok
I want to ammend a word in the above comment. It's actually a circular reference (don't know if it's the same or not, anyway...). I asked about the same thing a time ago in TypeScript chatroom and I got my answer : You can check it here - Eric Martinez
You're welcome @MarkRajcok and thanks for the words, I really appreciate it, glad to know that I've been helpful. I would really like to ask you as well to add an answer (and if you find more about this subject) explaining this issue. See that there's another user having the same issue. It would be helpful to answer this one and that one. - Eric Martinez
@EricMartinez, I looked at the other question you referenced. It looks different (and the error is different) -- the template of each component uses the other component. I don't have an answer for that one. (For my case, I only wanted the parent injected so the child could call methods on the parent.) - Mark Rajcok

2 Answers

49
votes

See @EricMartinez's comment for the answer. The problem seems to be a circular reference when A imports B and B imports A.

Here's a plunker that uses two files instead of the one file that is in Eric's plunker.

The only change from my original plunker is in the ChildComponent:

import {Component, Inject, forwardRef} from 'angular2/core';
// ....
constructor(@Inject(forwardRef(() => AppComponent)) private _parent:AppComponent)

I don't know for sure if this eliminates the circular reference, since A and B are still importing each other, but it seems to work.

See also https://github.com/angular/angular/issues/3216, where Miško states:

This [not user-friendly declaration using forwardRef()] is a limitation of JS and how the function declarations get hoisted. Whenever you have a circular dependency you will need forwardRef :-( I just don't see a away around it.

I would argue that you should not be in situation where your parent needs to know about the children and children need to know about parent. @Query should take care of most of the use cases.

I am sorry, but while I agree this is a pain in some rare cases, I don't see a way out of it, and hence this issue is not actionable, will close.

Hmm... the reason I tried injecting the parent was because I see two ways for a child to communicate with a parent:

  1. the child defines output properties and emits events, which the parent subscribes to
  2. the child injects the parent (e.g., Pane might inject Tabs) and can then call methods on the parent

And I was trying to determine when to use each approach. Miško makes it sound like 2. should be rare.

Update: I was thinking about this some more... 1. is better because there is less coupling between the child and the parent. With 1. the child doesn't need to know (and probably shouldn't know) the public API/interface of the parent.
In the reverse direction (e.g., the parent uses @ViewChild (@Query is now deprecated) to get a reference to the child, then calls methods on the child), the coupling is fine, because the parent is using the child component, so it needs to know the public API/interface of the child: i.e., the input and output properties and public methods.

8
votes

you could simply use @Host decorator like this:

import {Component, Host} from 'angular2/core';
// ....
constructor(@Host() private app: AppComponent)