In Angular when we build components with public properties or the state to share with others, some options come into our heads to solve it:
- Emit an event using the new value of the component state.
- Inject service with Subject to share the state.
- Inject the component as a dependency like How to Build Compound Components in Angular
All options are valid, but we miss another way to share our component state in the template is using the exportAs
property.
The exportAs
The exportAs
property takes the Component or Directive name instance to make it available in the template.
@Component({
selector: 'app-country',
templateUrl: './country.component.html',
styleUrls: ['./country.component.css'],
exportAs: 'countryContext'
})
It give us access to the component instance, using local variable in the template. For example, we create the variable #country to point to the exportAs: countryContext
to access the CountryComponent
instance and use it anywhere in the template:
<div >
From outside!
<app-nice-gif [selected]="country.selected"></app-nice-gif>
</div>
<app-country #country="countryContext">
<app-country-flag [selected]="country.selected"></app-country-flag>
<app-country-flag [selected]="country.selected"></app-country-flag>
<app-country-flag [selected]="country.selected"></app-country-flag>
<app-banner [selected]="country.selected"></app-banner>
</app-country>
Recap
Using the exportAs
help us not require changing the code in our components to inject a service o component as a dependency. The local variable gives the component access to all public methods or properties from the component only in the template.
Top comments (0)