Content projection, what is it?
Content projection (also known as transclusion) is a way to import HTML content
from outside the component and insert that content into the component’s template
in a designated spot.
Therefore, using content-projection you can obtain the result shown in the
following image.
Notice that the component works like a mirror. Another more complicated example
in the one shown in the following image in which a letter with user data is
being configured.
I saw a ng-container, what is that?
The Angular ng-container is a grouping element (syntax element) that doesn’t
interfere with styles or layout because Angular doesn’t put it in the DOM.
And we can use structural directives with it.
Structural… What?
A Structural directive changes the DOM layout by adding, removing or
manipulating DOM elements.
And then can I…?
where am-icon
is the following component:
The result is an icon instead of four, just as we expected. 💔
How does ng-content work?
- ng-content doesn’t produce content. It simply projects the existing content
- consistency of expectations 👀
- performance 🔥
- Following the previous rule, it can neither create nor destroy components projected (lifecycle).
- Only the last ng-content projects the content.
And… what can I do? Here ng-template comes to the rescue…
What is a ng-template?
As the name suggests, it is a template element,
a model which you can instantiate, hence you can set a template as a component’s
input, which is pretty useful.
The asterisk (*) syntax
The asterisk is syntactic sugar for something a bit more complicated.
You usually see with: *ngIf, *ngFor, *anyDirective, …
Then our repeat component?
Explain me what that ngTemplateOutlet is!
The ngTemplateOutlet directive receives a ng-template and it’s responsible
for create the instance and insert it into the DOM.
Yeah, context like in JS!
We can give an object to the instance, which is created by the
ngTemplateOutlet, of your ng-template. That object can contain whatever you
want to pass to your template. Here, we expose the magic of a lot of library
components (datatables, angular-material, ng-bootstrap, …).
We can do awesome things!
More more more…
- Presentation
- The GitHub branch of this post is https://github.com/Caballerog/ng-transclusion/
Originally published at https://carloscaballero.io on June 6, 2019.
Top comments (7)
Oh, so that's the name transclusion have in the new Angular! I was curious about it as I use it a lot in Vue as named slots. Good to know. :)
Hi @Romulo,
Yes, It is!
:-)
Thanks for the article, it really shines some light into this topic.
Outstanding article! Thanks!
Thank you Pierre-Henry.
😊
Great article! But please next time, make bigger pictures :D
Nice explanation of the projection concepts in Angular. One of the use case i have presented in my blog too here sanketmaru.github.io/posts/ng-temp....