To try everything Brilliant has to offer-free-for a full 30 days, visit brilliant.org/DecodedFrontend. You’ll also get 20% off an annual premium subscription.
@returncode00002 ай бұрын
You are one of the best Angular instructors, I really love the clarity on how you explain things, great job!
@gund_ua2 ай бұрын
Nice video as usual Dmytro! Finally, 7 years later, angular added this to the core and my library can be deprecated (once outputs are added as well).
@DecodedFrontend2 ай бұрын
Thanks, Alex! Your library is fantastic and was happy to recommend it to everyone who neede to handle complex use cases with dynamic components! 🙌🏻
@alphamarouanadiallo8238Ай бұрын
Thanks again !
@haroldpepete2 ай бұрын
Damn, the last part was impressive, you're the angular man, thanks. I would like to watch a video about how get user preferences from the backend, then hide or show features depend on user priveleges and preference, and if you may use guard in routes, it would be nice
@vamvdotnetАй бұрын
Great demo!!!
@maximvoloshin76022 ай бұрын
Thanks for limitations. Great video!
@DecodedFrontend2 ай бұрын
Thank you 😊
@ahfazrahman93282 ай бұрын
Thank you for the wonderful content @DecodedFrontend.
@manuelhohagen44412 ай бұрын
Another amazing video! So many thanks!!
@gagiksimonyan37822 ай бұрын
Thanks Dmytro for another useful video)
@AnamariaNanes2 ай бұрын
Thanks!
@DecodedFrontend2 ай бұрын
Thank you so much for your support ❤️
@DraaElMizan2 ай бұрын
Another amazing tutorial. Thanks Dmytro.
@musoverda2 ай бұрын
thank you! another interesting and useful video! this time - do you use protected as an alternative to private? ) i like this approach more than the # symbol
@Nabulio852 ай бұрын
Really great. ❤
@albertoalbericio6163Ай бұрын
Do you know if you can use [ngComponentOutletInputs] to chain Inputs? I mean, instead of defining a static string value for the input, bind it to a real Input in the creator component. Thanks for your video.
@alexander-37012 ай бұрын
@DecodedFrontend How would you prevent loading unused components from the map?
@DecodedFrontend2 ай бұрын
Using the import('./component-path') to lazy load them :)
@alexander-37012 ай бұрын
@@DecodedFrontend Another question. :) How would you approach this case but with micro-frontends?
@ytamb012 ай бұрын
@@DecodedFrontend yes. your widget keys could be the component-paths so you don't have to import them up-front?
@oleksiipopov51432 ай бұрын
Thank you! It was realy usefull video!
@DecodedFrontend2 ай бұрын
Glad to hear that! Thank you!
@spamdump73372 ай бұрын
why Type instead of WidgetComponent?
@FriendlyAce2 ай бұрын
Are your courses also available on udemy?
@DecodedFrontend2 ай бұрын
Hello, Unfortunately, I moved from Udemy and my angular courses are not available there.
@NiGhTm4r38910 күн бұрын
There is no [ngComponentOutletInputs] (anymore?). Instead I have to use ngComponentOutlet as a structural directive: *ngComponentOutlet="component; inputs" Is this video still up to date? Also, is it possible to strictly type the inputs so I don't just put random stuff in there? I imagine having like 5 different components, that another component, which has the directive can use and they all have different inputs. I kinda want a type or interface that says "this component has these inputs". Is that possible?
@MrVinodkumar922 ай бұрын
How can we get the widget component class without defining so that the component is not dependent and everything can be lazily loaded.
@ahmedshehata41432 ай бұрын
I have an Angular application that uses lazy-loaded modules. One particular module contains a lot of components that depend on user input, where only one component is visible at a time based on the user's choice. I am experiencing issues with managing the visibility of these components. Currently, I am using CSS classes to hide/show components, but this approach leads to problems when interacting with visible components. When I use the *ngIf directive to conditionally render components, it works correctly but may cause performance issues as it triggers re-rendering of components each time the user changes their input. How can I efficiently manage the visibility of these components to improve performance while avoiding unnecessary re-rendering?
@stefanstanchev53152 ай бұрын
Great demo, but may I ask something? Why you prefer to create and re-assign properties instead of using signals?
@DecodedFrontend2 ай бұрын
Hi :) Since it is a tutorial, everything that is not related to the topic directly, I simplyify as easy as possible to reduce unnecessary cognitive load. You should not treat it as a production-ready code.
@stefanstanchev53152 ай бұрын
@@DecodedFrontend Sounds valid. However, from my perspective, many would be interested in seeing how you would implement this piece of code. Signals are straightforward, yet they remain a core part of Angular functionality. Kudos for all the great work you’ve done and continue to do!