ngTemplateOutlet is WAY more useful than I realised

  Рет қаралды 77,656

Joshua Morony

Joshua Morony

Күн бұрын

Пікірлер: 103
@JoshuaMorony
@JoshuaMorony Жыл бұрын
Join my mailing list for more exclusive content and access to the archive of my private tips of the week: mobirony.ck.page/4a331b9076
@AlainBoudard
@AlainBoudard 2 жыл бұрын
Yeah, I followed the same path from Twitter posts and went back to the basics to grasp this feature better. I ended up in the source code of PrimeNg - that I use in my actual job daily - and I love it ! I'm glad to see that the Angular folks keep on sharing that kind of stuff so wee all grow ! Cheers :)
@AlainBoudard
@AlainBoudard 2 жыл бұрын
I forgot to say that your video is impressive in details ! I had this one as reference : kzbin.info/www/bejne/aITRh6uGmq-Xrac
@Xrat88
@Xrat88 2 жыл бұрын
Your channel is gold man, I'm going to share it with my job partners!
@AleksandarT10
@AleksandarT10 2 жыл бұрын
Great video! Totally changed my perspective on ngTemplateOutlet ! Usually all examples out there are just plain simple that really do not make sense to use. Keep up the good work and it would be great if u can make more such videos explaining "ambigious" topics
@sant11h
@sant11h 2 жыл бұрын
Great video! I think I speak for all that features like this are not very well documented in the angular docs and we would appreciate more videos about advanced angular features. Thanks!
@FLevi-pi5vt
@FLevi-pi5vt 2 жыл бұрын
I did find that too, looking at most angular doc examples (if there were any examples) I was only left scratching my head. Maybe that's by design, there are many paid courses online.
@KrycekA
@KrycekA 2 жыл бұрын
Thanks for sharing a detailed explanation Josh! If I knew about this a few months earlier, my code would have looked a lot better as I ended up having a reusable component where I had to "configure" wether some parts of the template should be rendered or not.
@JoshuaMorony
@JoshuaMorony 2 жыл бұрын
Next time!
@mersaCS
@mersaCS 2 жыл бұрын
You can even use this with service. Ex: In root router component, when you want specific layout to dynamic like button or even a dialog. Just create service and observable to listen and set. And inject the service from whatever children component with TemplatePortal and use it with viewchild decorator
@TayambaMwanza
@TayambaMwanza 2 жыл бұрын
The sad thing is that there's hardly any documentation about it on official angular docs I.e examples etc
@Nate-gi7no
@Nate-gi7no 2 жыл бұрын
Yep. The angular docs are really lacking on the advanced features
@ImperiumLibertas
@ImperiumLibertas 2 жыл бұрын
​@@Nate-gi7no which is a shame because it's the advanced features that makes Angular shine over other frameworks.
@TayambaMwanza
@TayambaMwanza 2 жыл бұрын
@Cristian Stefan why is it trash?
@bromptonhorsing8597
@bromptonhorsing8597 2 жыл бұрын
Your video gave me an idea how I could refactoring messy table in our project. Thanks! Great Video
@monfernape
@monfernape 2 жыл бұрын
This is black magic. So cool. I've used primeng table a lot lately and I always wondered how does table pass value to `let-row`
@kiritgupta
@kiritgupta 2 жыл бұрын
Thank you for this video, I’m going to share it with my coworkers. Our in house table component is a ‘component’ as per your example, and it takes this monster ‘columnConfig’ object. Our table does sorting, filtering, pagination and supports any number of action buttons as the last column. We do not use ngTemplateOutlet, I’m sure everyone will agree it’s better and maybe worth building a new table component that uses it.
@MrEltoni12
@MrEltoni12 2 жыл бұрын
As soon as the twitter message suggested a table i chuckled thinking that is the perfect way to showcase this feature.
@vitruvianeli
@vitruvianeli Жыл бұрын
I didn't just like the video; I also added it to the special list. Joshua, you are a fantastic content producer. Thanks.
@adodragicevic3786
@adodragicevic3786 Жыл бұрын
I love your videos on Angular! The best
@collinsk8754
@collinsk8754 2 жыл бұрын
Your video definitely helped with this feature! Shukran! 😊😊
@ReymarMend
@ReymarMend 9 ай бұрын
Wow, Amazing, I had no idea about this, a well deserved like!
@ico0z
@ico0z 2 жыл бұрын
A very very useful information provided and explained. Awesome work thanks for sharing.
@asmolenic
@asmolenic Жыл бұрын
@JoshuaMorony, thanks for the video. It was really helpful, but at the same time it reminded me of why I didn't like it when I've encountered it in the past. I am typing freak. Whenever I see the 'any' type I go bananas. Using this approach, the 'let-*' variables in the template will be of type 'any', which means no autocomplete/intellisense and can easily lead to errors that can be spotted only at runtime. I haven't had the chance of running into a similar scenario but here's one for ya: An ng-container with *ngFor that loops through some list of objects. Within this container, the type of the items is properly inferred, which is great. Let's say I need an ng-template that I can project into a child component of this container. Placing the ng-template inside the container works, we have typing, but at the same time we're creating a separate template instance for each item. Moving the ng-template outside the ng-container looses the typing. How can I go about that? Thanks again. Edit: I found your next video that tackles this exact issue (kzbin.info/www/bejne/mpLYaJ6Hgsl7aqM). Thanks!
@magmarrex5939
@magmarrex5939 2 жыл бұрын
Very good material pls make more from Angular. I love this framework!
@g-luu
@g-luu Жыл бұрын
Great content as awlays. I'm interested in seeing how would customizing a specific table column would like. The current setup seems you need to redo all your your columns when you want to customize a single column like include an icon for column name.
@maximilianvitzthum5591
@maximilianvitzthum5591 2 жыл бұрын
Thanks for the videos, really helpful content. Please keep making those.
@TheTom265
@TheTom265 2 жыл бұрын
Really well explained mate. Great stuff.
@adamlawrence3651
@adamlawrence3651 Жыл бұрын
This is a great example, basically allows you to write a reusable component, but give the flexibility that can't be given using normal components. I have seen ngtemplateoutput used a lot in the code base at work, and until seeing this I just wasn't sure if the benefit. it allows you to encapsulate display logic in a component, but allow the component using the re usable component to override this if needed. I still think it is over used on our current code base, but now have a better understanding when this technique should be used.
@Stevexupen
@Stevexupen 9 ай бұрын
i learned about this when i was trying to reproduce react's render prop concept in angular
@CodingAbroad
@CodingAbroad 2 жыл бұрын
We can also use this to have a reactive form benefitting from the async pipe
@family-trails-and-tales
@family-trails-and-tales 2 жыл бұрын
Great explanation, thank you for sharing @Joshua.
@sabelogumede8951
@sabelogumede8951 2 жыл бұрын
This will change my life, thanks Josh😅
@sroDrakso
@sroDrakso 2 жыл бұрын
Thank you! Keep going! awesome video!
@Nabulio85
@Nabulio85 Жыл бұрын
Thank you. Great content, great channel. ❤
@AleksandraSetsumei
@AleksandraSetsumei Жыл бұрын
this is amazing! I can't wait to try it out
@p.s29
@p.s29 2 жыл бұрын
Great video. I was just experimenting with ngTemplateOutlet on stackblitz yesterday... I did one extra thing and that is binding a function to the template passed in content projection. Not sure whether that is an optimized way or not but it worked except the type checking.
@igorproshchenko6280
@igorproshchenko6280 2 жыл бұрын
Hey, what a great content you have! Subscribed
@randomcoggles3805
@randomcoggles3805 2 жыл бұрын
Good quality education. Thanks!
@vivekpachouri4059
@vivekpachouri4059 2 жыл бұрын
Great video and superb explanation. Please do a similar video for ngComponentOutlet?
@callimardisotope7963
@callimardisotope7963 2 жыл бұрын
I love you, Thanks for this really instructive video 👍😁
@khumozin
@khumozin 2 жыл бұрын
Nice video! 💯 I have implemented the second solution in one of my projects, but with less code.
@victorpetch8579
@victorpetch8579 2 жыл бұрын
My use case on this was a CRUD page. I had a component doing a create operation, another one for editing, another one for reading.. As it turns out, they all are 80% similar. Creating lots of components for similar stuff would have too much copied code. Instead, I created a bunch of templates and just switched them up based on the route of the page. If it's create, I'd use templates 1,2 and 3. If it's edit, I'd use 2, 3 and 5.. and so on.
@3pleFly
@3pleFly Жыл бұрын
The problem with this is readability. Are generic and DRY components good? Yes, essential? No.
@hollow_ego
@hollow_ego Жыл бұрын
Really interesting video. I think I have used ngTemplateOutlet before, but can't quite remember the use case. I think it had something to do with using different inputs based on some condition. One feedback I would like to give: On small screens in the dark it is hard to read the actual. The contrast to the bright output on the right makes it hard on the eyes. I ended up blocking of half the screen with my hand.
@BillMoman
@BillMoman 2 жыл бұрын
Thank you - this is really helpful
@kevintale2608
@kevintale2608 2 жыл бұрын
Super cool! In short, I'd say ngTemplateOutlet is useful when the data sent to the dumb component should be rendered differently depending on the context of use. But I guess ng-content could also do the trick? I wonder if you've tried with ng-content as well.
@JoshuaMorony
@JoshuaMorony 2 жыл бұрын
There's a great explanation of why ng-content isn't powerful enough for the task in this case in the video I linked from Stephen Cooper, highly recommend checking it out
@RoyerAdames
@RoyerAdames 2 жыл бұрын
Cool. Universal Studios Orlando uses this
@stonecoldcarebear
@stonecoldcarebear 2 жыл бұрын
Subscribed. Great video, thanks for sharing.
@chadbekmezian4806
@chadbekmezian4806 2 жыл бұрын
Super helpful! Thank you!
@nChauhan91
@nChauhan91 2 жыл бұрын
It’s like slots of a web component, nice
@Xenon77x
@Xenon77x 2 жыл бұрын
Please make videos on Angular universal
@tuntunpandit8367
@tuntunpandit8367 2 жыл бұрын
Please make a video on Angular Life Cycle Hooks in detail with examples. Thanks
@muhamedkarajic
@muhamedkarajic Жыл бұрын
Useful video!
@mayanksati1842
@mayanksati1842 2 жыл бұрын
Great explanation.
@parsamh78
@parsamh78 Жыл бұрын
It really helps. thanks a lot
@cburys
@cburys Жыл бұрын
Good information in here for sure. I still wrestle with why though. If you have to pass in a template for any variation, we lose reusability. IMO, if I have to write a template every time I use the component, why even use the component? Currently in our, as this video would call it, messy custom table implementation, we pass in an array of column definition objects, and then the data itself. The column definitions determine how the data is displayed, order of columns, and any non standard header behavior, etc. The component itself is a beast, but using it is a breeze.
@prajwal5891
@prajwal5891 2 жыл бұрын
Hey, what did you use to read the template string as html and not a string?
@yawarbhat2377
@yawarbhat2377 2 жыл бұрын
Can we pass in a method in thr context ?
@USONOFAV
@USONOFAV 11 ай бұрын
kinda interesting what kind and how big your projects were that you can't find a use case for ngTemplateOutlet
@MahmoudTarek-pz1rl
@MahmoudTarek-pz1rl Жыл бұрын
I'm trying to build a custom table using angular material table, and providing a custom table row using ngTemplateOutlet is not working or Im just missing something.. Any advice I'd be grateful.
@ucnguyenphanhuynh3134
@ucnguyenphanhuynh3134 6 ай бұрын
good work
@LalindaDias
@LalindaDias 2 жыл бұрын
Hi @Joshua, Thanks for the video. I have a question regarding ng-template usage in template. Isn't it hard to do unit testing when we use ng-template for dynamically display content in template (component.html) ?
@JoshuaMorony
@JoshuaMorony 2 жыл бұрын
I haven't actually tried testing this code, but it doesn't strike me as something that would be a problem - is there something specific that you think would be challenging?
@LalindaDias
@LalindaDias 2 жыл бұрын
​@@JoshuaMorony Sorry for the late response. I read an article recently in Medium that strongly suggests not putting any logic inside templates because it would be harder to unit test that logic.
@ur.kr.2814
@ur.kr.2814 2 жыл бұрын
I've been using templates like this for a while. The only thing I don't like is the lack of typing for the Context object and its use in the let-contextprop attributes.
@JoshuaMorony
@JoshuaMorony 2 жыл бұрын
I have another video on strongly typing with context guard if you want to check it out: kzbin.info/www/bejne/mpLYaJ6Hgsl7aqM
@ur.kr.2814
@ur.kr.2814 2 жыл бұрын
@@JoshuaMorony That's very useful, thank you! I will get a lot of use out of this
@kaisteinkellner7331
@kaisteinkellner7331 2 жыл бұрын
Great content thanks a lot !
@timburstefan
@timburstefan 2 жыл бұрын
HI, can I ask a small question about displaying object data to the page when the values of the object have not yet come from the server, and the console throws undefined values until the data is fetched. This has been bothering me for some time and I don't know what solution to use, any advice would be amazing. I could initialize every single field of the object but I'm sure there is a better than this.
@JoshuaMorony
@JoshuaMorony 2 жыл бұрын
I will generally have a stream for any data that is loaded, then in the template use an *ngIf="myStream$ | async as data; else loadingTemplate" now the component will only render when data is available, otherwise it will display the loading template
@timburstefan
@timburstefan 2 жыл бұрын
@@JoshuaMorony That makes sense, thank you!
@_rohit_s
@_rohit_s 2 жыл бұрын
I've a question A parent component and we pass children components by router-outlet , & if we want to pass value @Input I know we can use service here but I want to use @Input here
@jordisarrato331
@jordisarrato331 10 ай бұрын
amazing!
@vvsg2
@vvsg2 2 жыл бұрын
Wow, this is amazing, thank you. I didn't think you could do this in Angular! However, I think that this is still waaay too janky, and not well documented, compared to other frameworks (in React this is just basic stuff with render props)... It would be nice if Angular Dev Team will improve this pattern in the future!
@defenseman84
@defenseman84 2 жыл бұрын
I would never do this in Angular do get that result. I think he’s just demoing a capability. The result here can be done much more cleanly. In fact, when using Angular Material, getting configurable tables is very easy and clean.
@igorgaiduk5536
@igorgaiduk5536 2 жыл бұрын
What will you do if you need to rerender data inside ng-template? Take a try and you will see the problem with ng-templates. Better to use a component for price and change showed value inside "ngOnChanges" life cycle hook.😉
@djglxxii
@djglxxii 2 жыл бұрын
Nice video. However, in the final "ugly" version, couldn't it have been a bit more flexible if you had used ng-content with named slots? Basically allow consumers to project content into the data table instead of using all those inputs.
@JoshuaMorony
@JoshuaMorony 2 жыл бұрын
I haven't explored pushing ng-content in this context to see if I could come up with a solution, but in the video I liked to by Stephen Cooper he explains the downfall of ng-content in this kind of scenario: kzbin.info/www/bejne/aITRh6uGmq-Xrac
@names-mars
@names-mars 2 жыл бұрын
I get why ngTemplateOutlet is easier, and I think there's no right and wrong way of doing this, it falls down to what you're trying to achieve. But in my opinion, both these methods you showed are messy, and I'm certainly not choosing the lesser evil xD. I think there should be a much much cleaner way of doing things. Currently working on making a widget library for an internal framework in this company I work for (they're vendors, and it's sad that they have to keep rebuilding things for every new requirements), high level widgets that are highly customizable based on the data model (well I guess the right term is a view model), and I definitely won't go for that first method you showed, I also already have 1 other approach that involves almost no complexity on the template layer. But currently, I'm just arranging ideas, haven't really settled on one and maybe I'm wrong, but I know what not to do at least. I want to keep the template layers as clean as possible so my UIUX team can focus on pure styling principles and not be bothered by angular's nuances.
@aknownj
@aknownj 2 жыл бұрын
I'm curious as to this how you intend to achieve this? Apart from newer standalones, older use of CDK portals, or the ancient well-deserved frowned-upon misuse of innerHtml
@monfernape
@monfernape 2 жыл бұрын
11:09 my eyes, my eyes.
@crshbndcoot
@crshbndcoot 2 жыл бұрын
thanks
@VinyciusOliveira
@VinyciusOliveira 2 жыл бұрын
I think that can also be done with ng-content...
@JoshuaMorony
@JoshuaMorony 2 жыл бұрын
Check out the vid I linked from Stephen Cooper for a good demo of why ng-content isn't quite powerful enough for this use case
@praktycznewskazowki6733
@praktycznewskazowki6733 2 жыл бұрын
great!
@mwdcodeninja
@mwdcodeninja 2 жыл бұрын
If you are already iterating over your dataset in a preprocessing step why not simply inject a button component into the results? You are combining business logic with display logic in your component example and that overcomplicates it. If you're using buttons, you're using a button component that knows how to handle clicks. But all that said, I appreciate the NG template explanation. I've struggled with it in the past but this helps the it all together.
@ucnguyenphanhuynh3134
@ucnguyenphanhuynh3134 6 ай бұрын
keep it
@romarioputra3775
@romarioputra3775 2 жыл бұрын
What is the use of context in thead?
@JoshuaMorony
@JoshuaMorony 2 жыл бұрын
I'm using that in the default headers template to get the keys from the data to use as default column names - not making use of it in the home component with these specific examples, but there could be a situation where you want to reference the actual data when supplying your header template.
@romarioputra3775
@romarioputra3775 2 жыл бұрын
@@JoshuaMorony ahhh i dont even see that ☺. Thank you!
@thefather8362
@thefather8362 Жыл бұрын
Why not just create three separate components instead of one component that supports multiple use cases? Components are easy to create. My personal opinion is that components should be as simple as possible.
@bronzekoala9141
@bronzekoala9141 11 ай бұрын
Funny that you have to explicitly tell it that a value is implicit 😂
@ChristopherNeurofunker
@ChristopherNeurofunker 2 жыл бұрын
forget that. just create different components 🤣
@JEsterCW
@JEsterCW 2 жыл бұрын
Angular is not useful at all, its a nightmare 😂
@AliciaGuitar
@AliciaGuitar 2 жыл бұрын
After you figure out the learning curve its fine. It forces good practices and thats a good thing even if it takes longer to master
@JoshuaMorony
@JoshuaMorony 2 жыл бұрын
Why do you think Angular is not useful?
@spencereaston8292
@spencereaston8292 2 жыл бұрын
My current SOP would have used viewContainerRef.createComponent for the child elements. This seems to have a lot less boilerplate then createComponent especially if the created components are not going to be consumed anywhere else.
@notarealhandle123
@notarealhandle123 2 жыл бұрын
ngOutletTemplate is crap, because it is too limited: it does not support the essential create/destroy events, and no access to the component instance. The only good way is to implement it all yourself, which is what I did for my projects. If interested how I did it - reply to me with contact email, I will send you an example. It is possible that Angular v15 will get a proper ngOutletTemplate support finally.
@octavian3033
@octavian3033 2 жыл бұрын
Great video. Thanks a lot.
WTF is "Zone.js" and is it making your app slow?
13:21
Joshua Morony
Рет қаралды 55 М.
黑天使只对C罗有感觉#short #angel #clown
00:39
Super Beauty team
Рет қаралды 36 МЛН
黑天使被操控了#short #angel #clown
00:40
Super Beauty team
Рет қаралды 61 МЛН
Change Detection in Angular - You Project Is 20x Slower!
15:16
Monsterlessons Academy
Рет қаралды 74 М.
NgTemplateOutlet in Angular - Everything You Have to Know (2022)
35:15
Decoded Frontend
Рет қаралды 54 М.
I bet you can understand NgRx after watching this video
22:48
Joshua Morony
Рет қаралды 193 М.
This is the Only Right Way to Write React clean-code - SOLID
18:23
I only ever use *these* RxJS operators to code reactively
25:25
Joshua Morony
Рет қаралды 136 М.
The easier way to code Angular apps
9:54
Joshua Morony
Рет қаралды 69 М.
Why XState and RxJS are not "too complex"
6:51
Joshua Morony
Рет қаралды 3,1 М.