Angular

Host and Visibility in Angular's Dependency Injection

In our article on Dependency Injection in Angular we explored what dependency injection actually is, and how it is implemented in the Angular framework. If you haven’t read that article yet, I highly recommend you doing so, since this article is based on it.

Even though we learned that Angular’s new dependency injection is very flexible and solves pretty much all the problems we have with the dependency injection in AngularJS, there are still a couple of topics that we haven’t discussed yet. One of them is how Angular treats the relationship between host and child injectors, and the other one is how the visibility of dependencies are handled. In this article we’re going to explore exactly these two topics.

Understanding host relationships

Host and visibility are both features in Angular’s dependency injection system, that are very specific to Angular and throughout this article we’ll learn why. For now just keep in mind that we probably don’t need any of these features when using Angular’s DI not in the context of Angular itself. However, once we understood the context and why this feature exist, we’ll also take a look at how this is implemented under the hood, so we all know what’s going on.

Let’s start off by imagining the following scenario. We have three nested components that all do their own thing (because that’s what components do in Angular):

<component-one>
  <component-two>
    <component-three></component-three>
  </component-two>
</component-one>

As we learned in our article on dependency injection in Angular, each component in Angular creates its own injector. Which means the code above can be translated to something like this:

injector (<component-one>)
      ^
      |
child injector (<component-two>)
      ^
      |
grand child injector (<component-three>)

The ^ symbol just signalises that a child injector is created from it’s parent. To come back to our nice and cozy JavaScript world, we could also translate it to this:

var injector = Injector.create();
var childInjector = Injector.create([], injector);
var grandChildInjector = Injector.create([], childInjector);

Of course, this code is very simplified and as we can see, there are also no providers passed to any of the injectors. Usually, when injectors are created, there are providers passed to them so we can ask for specific dependencies in our code. Let’s add some actual providers, to see how the relationships between the injectors affect dependency instantiation.

var injector = Injector.create([
  { provide: Car, deps: [Engine] },
  { provide: Engine, deps: [] }
]);
var childInjector = Injector.create([], injector);
var grandChildInjector = Injector.create([
  { provide: Car, useClass: Convertible, deps: [] }
], childInjector);

The injector tree allows us to define injector providers for a specific component and its children. With the code above, if we ask grandChild for a dependency of type Car we’ll get back an instance of type Convertible, because it defines it’s own provider for that type. However, if we ask for a dependency of type Engine, we simply get an instance of the class Engine, because grandChild will ask it’s parent injector (recursively) until an injector has providers defined for that type. If this is entirely new to you, all this has been covered in our last article on DI.

Okay, this sounds all very powerful but where does this host thing come into play? Let’s get back to the original code with our three nested components. <component-two> and <component-three> are both children of <component-one>. However, we don’t know yet what’s inside of our components themselves. In Angular, a component always has a view. A component’s view can be in a way encapsulated, this is due to the fact that, since 2.x, Angular supports Shadow DOM.

For example, here’s what the view of <component-one> could look like:

<h1>Component 1</h1>

<ng-content></ng-content>

As we can see, the view of a component is just yet another DOM tree. If we configure Angular accordingly, this DOM tree can be Shadow DOM. That’s also why we have an <ng-content> tag there. It’s Angular’s implementation of content insertion points, which is another Shadow DOM feature.

Even though we don’t use Shadow DOM, a component still comes with it’s own view that is kind of hidden behind the component itself. This is what makes every component in Angular a host of a view. In fact, when speaking just about Shadow DOM, we always need a host element to create a shadow dom for it.

Okay, but how is that related to DI?

That’s a good question! We’ve now seen a couple of times that an injector is always looking up a dependency on it’s parent injector in case it doesn’t have providers for the requested type. That parent injector does pretty much the same until we finally get our dependency. When we think in components, that means that a component’s injector will lookup up a dependency even across boundaries.

To make things a bit more clear, let’s say we have a component <video-player> which comes with the following view.

<video-screen></video-screen>
<video-controls>
  <play-button></play-button>
  <pause-button></pause-button>
</video-controls>

Our <video-player> component consists of a couple of other components. Let’s say that the injector of <video-player> comes with providers for a PlayerService:

@Component({
  selector: 'video-player',
  providers: [
    PlayerService // shorthand for { provide: PlayerService, deps: [] }
  ]
})
class VideoPlayer {
  ...
}

PlayerService is used by the component’s view components (<play-button>, <pause-button>), to play and pause a video respectively. In order to get an instance of PlayerService, we’d need to inject it like this:

@Component({ ... })
class PlayButton {
  constructor(playerService: PlayerService) {

  }
}

Since we have a provider for PlayerService defined in VideoPlayer, its injector will return an instance accordingly and everything works as expected, even if <play-button> doesn’t know anything about that provider. However, in case VideoPlayer wouldn’t define that provider, the lookup will go on and on (even outside the <video-player> component) until either some other component has such a provider, or an error is thrown.

This can be problematic. Just imagine someone uses our code with another <awesome-player> component instead, and it doesn’t have that provider. Our code could end up getting an instance of PlayerService that it actually shouldn’t get. What we need is a way to somehow make sure, that we always get an instance of PlayerService provided by the host video component (wether it’s <video-player>, <awesome-player> or anything else).

Restricting dependency lookup

Luckily, this is covered by Angular’s dependency injection system. If we need to ask for a dependency and want to make sure that the lookup ends with the current component’s host, we can use the @Host decorator. Here’s our <play-button> component rewritten with the lookup constraint:

@Component({ ... })
class PlayButton {
  constructor(@Host() playerService: PlayerService) {

  }
}

If you don’t know what it’s about with these decorators, you might want to read our article on annotations and decorators. Now we ensured that PlayerService instance is always instatiated by our component’s host, which is currently our VideoPlayer component.

Dependency Visibility

Okay cool, we now know what @Host is and why we need it. But we didn’t talk about the other thing that Angular’s DI introduces yet - dependency visibility. So what is this visibility we’re talking about here? Well, as we learned, we can use the providers property in a @Component decorator to define providers for its injector. However, it turns out that there’s another property viewProviders that basically allows us to do the same thing. What’s the difference between those two then?

viewProviders allows us to define injector providers that are only available for a component’s view. Let’s take a closer look at what that means by using our <video-player> component. Our <video-player> component has its own view with its own components. So usually, we would use that component just like this:

<video-player><video-player>

But let’s imagine, we change the API and <video-player> expects a child element, that implements a video component (whatever that looks like). So we go ahead an build a <custom-video> component that does exactly that and we use it as a child of <video-player> so it can do it’s job with it:

<video-player>
  <custom-video></custom-video>
</video-player>

Now <video-player> has a child element (with it’s own injector) that it needs to work. Note that this child is part of the Light DOM rather than the video player component’s Shadow DOM (emulation). Next, we realise that <custom-video> needs something of type VideoService in order to work correctly, so we inject it accordingly:

@Component({ ... })
class CustomVideo {
  constructor(videoService: VideoService) {

  }
}

We know that, if <custom-video> ask its injector for a dependency, the injector will look up the dependency in it’s injector tree if it doesn’t have a provider for that type, until it gets the requested instance. This is quite cool, but now imagine that <video-player> has its own provider for the type VideoService, because it needs a very specific instance for it’s view, in order to work:

@Component({
  selector: 'video-player',
  providers: [
    PlayerService,
    { provide : VideoService, useClass : SpecificVideoService, deps: [] }
  ]
})
class VideoPlayer {
  ...
}

What now happens is, that <custom-video> would get an instance of SpecificVideoService but it actually needs an instance of VideoService. However, due to the lookup that happens in the injector tree, the provider defined in <video-player> is the next one that is available. How can we get around that? This is exactly where viewProviders come in. With viewProviders we can tell the DI system very specifically, which providers are available to which child injectors (Light DOM or Shadow DOM).

To make our code work as expected, all we have to do is to make the VideoService provider of <video-player> explicitly available only for its view:

@Component({
  selector: 'video-player',
  providers: [
    PlayerService
  ],
  viewProviders: [
    { provide: VideoService, useClass: SpecificVideoService, deps: [] }
  ]
})
class VideoPlayer {
  ...
}

Now, whenever a component of <video-player>’s view asks for something of type VideoService, it’ll get an instance of SpecificVideoService as expected. Other child components from the outside world that ask for the same type however, won’t see this provider and will continue with the lookup in the injector tree. Which means <custom-video> now gets an expected instance from another parent injector without even knowing that <video-player> actually introduces its own provider.

View Providers are also only available in components, not in directives. That’s simply because a directive doesn’t have its own view.

Conclusion

Angular’s DI is very powerful and doesn’t only cover the common needs when it comes to a decent dependency injection system. It even implements specific use cases for injector trees that are used in conjunction with DOM trees, which could also be encapsulated. I hope this article made clear why we have providers, viewProviders and @Host.

Written by  Author

Pascal Precht