Dynamic Component in Angular (2024)

  Рет қаралды 28,846

Decoded Frontend

Decoded Frontend

Күн бұрын

Пікірлер: 89
@DecodedFrontend
@DecodedFrontend 4 ай бұрын
💡 Follow Decoded Frontend also here: Join More than 500+ Angular Developers on our Discord Server - bit.ly/decoded-frontend-discord Also, follow me on: Twitter - twitter.com/DecodedFrontend Instagram - instagram.com/decodedfrontend LinkedIn - www.linkedin.com/in/dmezhenskyi
@MuratZan
@MuratZan Ай бұрын
Teşekkürler.
@DecodedFrontend
@DecodedFrontend Ай бұрын
Wow! Thank you so much for support ❤️
@EtoBARAKUDAvasa
@EtoBARAKUDAvasa 4 ай бұрын
My first experience of dynamic component start at ~3 year ago when add npm module to Angular who doesn't have integration with Angular - its very help me make unic feature and save many times. And I recommend make some unic ComponentRendererService with method renderComponent who take (component: Type, inputs: Partial) and return ComponentRef and here you can also control of destroy dynamic components
@FranklyTerrible
@FranklyTerrible 2 ай бұрын
Dmitry, you are the best Angular source ever.
@angular-developer-e1t
@angular-developer-e1t Ай бұрын
Ты реально крут. 6 лет работал с Angualr и не знал этих вещей. Сейчас делаю тестовое задание на динамические формы с самописными импутами и это точно то что мне нужно.
@denisBriceag
@denisBriceag 3 ай бұрын
Hi, Dmitry! Thanks for the video, very explanatory, as always. I’ve been using dynamic components together with material stepper. It might be useful when you don’t want to eagerly load all the steps which are separate components with its own business logic.
@amrahmed3083
@amrahmed3083 4 ай бұрын
Great video but I think you need to add in what situations would this be helpful and recommended 😊
@DecodedFrontend
@DecodedFrontend 4 ай бұрын
You’re right, I should have mentioned that. The next video is also about dynamic components and I’ll do it there 😉
@amrahmed3083
@amrahmed3083 4 ай бұрын
@@DecodedFrontend sounds great😃❤️
@vigneshwaran332
@vigneshwaran332 Ай бұрын
great Video, please make one for dynamically creating component with custom Injector
@oleksandrvorovchenko8674
@oleksandrvorovchenko8674 4 ай бұрын
Дякую! Класне пояснення , як завжди!
@DecodedFrontend
@DecodedFrontend 4 ай бұрын
🙏🏻 дякую!
@IvanYermolenkoSS
@IvanYermolenkoSS Ай бұрын
Дякую за корисний контент! 🔥
@hanshans9902
@hanshans9902 2 ай бұрын
thanks. good content😊
@DemystifyFrontend
@DemystifyFrontend 3 ай бұрын
Very well explained 🎉
@vkiperman
@vkiperman 4 ай бұрын
Another gem of a video!
@hobbytsworld
@hobbytsworld 4 ай бұрын
As always top content!
@pointlesspos8440
@pointlesspos8440 4 ай бұрын
I'v been using ngx-dynamic components for a few years. It's also a nice option. Pair that with gridster and you can do a dashboard.
@returncode0000
@returncode0000 4 ай бұрын
Very useful content
@DecodedFrontend
@DecodedFrontend 4 ай бұрын
Thank you! 😊
@returncode0000
@returncode0000 4 ай бұрын
@@DecodedFrontend It's useful because you used a very small example/use case so it's understandable and you have a very good speed when explaining, not too fast, so that everyone can follow your explanation 👏 Keep it up! (it is also a topic that I didn't understood well enough, so thanks for this also)
@Sevkingblade
@Sevkingblade 4 ай бұрын
Awesome video as always Dmytro!
@serhiilytvyn8753
@serhiilytvyn8753 4 ай бұрын
Thanks a lot for your videos and good explanation.
@ytamb01
@ytamb01 4 ай бұрын
Really enjoyed the video. Thank you. I would be very interested to see a nice implementation of lazy-loading dynamically generated components as part of this series.
@andrewg2998
@andrewg2998 4 ай бұрын
Are you talking about the route based lazy loading they introduced in angular 15 or the deferrable views ?
@ytamb01
@ytamb01 4 ай бұрын
@@andrewg2998 I have been able to do this in ng 18 and it shows a lot of promise for something like a configurable dashboard. I really like the idea of a user being able to configure what components they would like without having to load them in the initial bundle. async onLoadComponent() { this.viewContainerRef.clear(); const { MessageComponent } = await import('../message/message.component'); this.componentRef = this.viewContainerRef.createComponent(MessageComponent); if (this.componentRef) { this.componentRef.setInput('message', 'this message was set by the dashboard'); } }
@ytamb01
@ytamb01 4 ай бұрын
@@andrewg2998 In ng18 you can do this on a button click: async onLoadComponent() { this.viewContainerRef.clear(); const { MessageComponent } = await import('../message/message.component'); this.componentRef = this.viewContainerRef.createComponent(MessageComponent); if (this.componentRef) { this.componentRef.setInput('message', 'this message was set by the dashboard'); } } I think this would be great on a dashboard where user could select the components they want without loading them in the initial bundle. But I'm not sure what the best pattern for something like this would be. I don't love the async and await here for example.
@ytamb01
@ytamb01 4 ай бұрын
@@andrewg2998 No I meant using import directly e.g. const { MessageComponent } = await import('../message/message.component'); and then this.componentRef = this.viewContainerRef.createComponent(MessageComponent);
@kevinsamuelndoum6992
@kevinsamuelndoum6992 2 ай бұрын
Thank you so much sir. This video is amazing
@TheSysmat
@TheSysmat 4 ай бұрын
Nice video, very good ng content
@oleksandrfesiuk6310
@oleksandrfesiuk6310 4 ай бұрын
Дякую за корисний контент!
@DecodedFrontend
@DecodedFrontend 4 ай бұрын
Дуже дякую за фідбек😊
@rifathossain2788
@rifathossain2788 3 ай бұрын
thank you so much, this video was amazing.
@farshadbayat64
@farshadbayat64 4 ай бұрын
Thank you for this video.
@farshadbayat64
@farshadbayat64 4 ай бұрын
How can we dynamically create a ViewContainer? Is it possible to create a ViewContainer using an element that exists in the component or by using the class name?
@DimanIvanov
@DimanIvanov 3 ай бұрын
Awesome!
@stepandemchenko9870
@stepandemchenko9870 4 ай бұрын
Is it possible assign directive to dynamic component? For example create dynamic component which was implement of ControlValueAccessor interface and after that assign to this component formControlName directive
@DecodedFrontend
@DecodedFrontend 4 ай бұрын
Hey! As far as I know, it is not possible to apply directives at runtime. However, I think that something similar you could achieve with Directive Composition API.
@knoppix20
@knoppix20 4 ай бұрын
Great tutorial! But is it possible to specify component name as string const/variable and then convert/import this string to real object/instance?
@fabiangubeli3319
@fabiangubeli3319 4 ай бұрын
Also interested in this question. Currently I use a map from String to Component to solve this
@knoppix20
@knoppix20 4 ай бұрын
Once i tried to made this. Name of class from string to object conversion but webpack builder not allowed to do so as it cant find full real path of component. It need that all component paths before compile process was already fully know but not pieces of this.
@SamuelMarsha-v1s
@SamuelMarsha-v1s 2 ай бұрын
How do you use this pattern with Viewchildren? If you have multiple different components that need to be created AfterViewInit for example; such as creating multiple widgets (which could be different components) whose count you don't know beforehand; how would you go about it?
@cherepovets8994
@cherepovets8994 4 ай бұрын
Thank you! Great video! But I want to add, that output() is not signal based
@DecodedFrontend
@DecodedFrontend 4 ай бұрын
Oh, indeed, I said “signal-based outputs” which is wrong. Sorry for the confusion, you are right. Just most of the new APIs like input, ViewChild, etc are signal-based, so that I mapped in my head all these new functions as signal-based too 😅
@cdotforce
@cdotforce 3 ай бұрын
Very useful when you need to federate components from a MFE to another one because the client does not provide a components library. That was my case.
@urtaav639
@urtaav639 4 ай бұрын
excellent video, master how can I create multiple components that is, I have a drop-down list of options when selecting 1, I want to show component1 component2 and component5, when selecting 2 show component2, component3, component8 to say the least, the idea is to show the components without order and That each one is connected to my form, can you do that or what is the topic to investigate it, help master
@ievgensvichkar2643
@ievgensvichkar2643 3 ай бұрын
I wish working with inputs and outputs of dynamic components was consistent. But instead we have: inputs are set via setInput() API w/o direct access of the class instance, but output is accessed using direct access to the instance
@yurtiksupreme465
@yurtiksupreme465 3 ай бұрын
Якби ми користували наприклад @if Statement ? чи є різниця між ними? Для чого користувати dynamic component?
@DecodedFrontend
@DecodedFrontend 3 ай бұрын
З функціональної точки зору різниці не має. Річ тут скоріше в тому, що рішення з if-ами буде гірше масштабуватись. Якщо ми уявимо, що в нас кілька варіантів віджетів, то в нашому хост-компоненті (компонент в якому створюємо віджети) одразу зʼявиться під кожний варіант свій if, що вже не дуже зручно. Але гірше те, що кожного разу коли треба буде додати новий тип віджету, треба модифікувати хост-компонент, тобто тут порушується open-closed principle, який каже що функціонал компоненту може бути розширеним без його модифікації. Це веде так чи інакше до негативних наслідків при масштабуванні і також тестуванні, бо кожен новий тип віджету треба буде «мокати» і оновлювати тести. Резюме: if / else добре коли в тебе 1-2 компонента і ти впевнений що: а) це не потрібно масштабувати. б) знаєш наперед з яким компонентом будеш працювати. Приклад: компонент профілю користувача який показується в залежності від того, чи користувач залогінився. Dynamic components добре коли в тебе є багато однотипних компонентів і ти впевнений що: а) в майбутньому будуть добавлятись нові типи. б) не зрозуміло наперед який саме компонент треба буде створити. Приклад: створення компонентів (віджетів) з json конфігу який приходить з серверу. Ще рекомендую глянути моє крайнє відео також про створення компонентів динамічно, але декларативним підходом. Там в кінці я також показую приклад як би це виглядало в реальному житті - kzbin.info/www/bejne/pWSsY3ida7ZngqMsi=n2A-VcWvct9gudbA
@yurtiksupreme465
@yurtiksupreme465 3 ай бұрын
@@DecodedFrontend зрозуміло. Дуже дякую!
@Tanvir1642
@Tanvir1642 4 ай бұрын
I noticed you didn't add the Dynamic Component in the imports array. So, is it lazily loaded?
@DecodedFrontend
@DecodedFrontend 4 ай бұрын
No, it is eagerly loaded. For lazy loading, I would need to use import(../path2component…)
@bukanaka
@bukanaka 4 ай бұрын
Имба контент подъехал на угловой тачке))
@DecodedFrontend
@DecodedFrontend 4 ай бұрын
haha :D
@hendjfjfj.hdjfn_h
@hendjfjfj.hdjfn_h 4 ай бұрын
Go. Go. Go 🎉
@HimanshuGargMusic
@HimanshuGargMusic 4 ай бұрын
How we can use the composition directive for the component where we form controls and methods that we want to remove its duplicacy and the code can not be used as directive in component, Thanks in advance ❤
@o_glethorpe
@o_glethorpe 4 ай бұрын
Thanks for sharing... Would You be so kind to create a video about service locator? Im trying to implement clean archtecture and want to be able to configure what service some component should use on the start of the application, something like, now the signin component should work with firebase, now with rest api.
@qyihamba7034
@qyihamba7034 2 ай бұрын
I would love for Angular to provide APIs that enable dynamic component creation with directive support. You cannot for example create dynamic forms without any template code. It's very exciting until you have to include formGroup directive
@jontaylor1586
@jontaylor1586 4 ай бұрын
I needed this the other day. The fact that you're creating siblings of the element used to make the viewContainerRef threw me way off.
@rkrao8582
@rkrao8582 4 ай бұрын
Omg as complex as it is, I would only imagine what would happen if try to write tests for this. 🤯 As always great content though
@mohammadrezamrg9380
@mohammadrezamrg9380 4 ай бұрын
It would be good if making something with server driven ui like angular spartacus storefront
@BishoySaeed-r2q
@BishoySaeed-r2q 3 ай бұрын
we need course for ssr or a video anything will be fine
@musoverda
@musoverda 4 ай бұрын
why do you use the # symbol to create a private property?
@DecodedFrontend
@DecodedFrontend 4 ай бұрын
Because it is shorter and unlike TypeScript’s” “private” access modifier, the # makes property private even later at runtime.
@musoverda
@musoverda 4 ай бұрын
@@DecodedFrontend do you use the # symbol in your projects? in production?
@Diamondiam0nd
@Diamondiam0nd 4 ай бұрын
Hi I feel like I got nobody to ask, but is passing signal inputs through some component a valid pattern? Like I got a parent main component named "A", which has declared some signal value. This component have dumb B component declared inside its html. The B component contains some mini ui component named "C". Is passing a value through signal inputs/outputs from component C to B to A a valid pattern?
@codeSurvivor
@codeSurvivor 4 ай бұрын
It is, but if you get more than 2 levels I would use a shared service with that signal, observable or whatever you need to share. This is a common pattern when needing to communicate components that are siblings or deeply nested children
@Anonym-mw5lz
@Anonym-mw5lz 3 ай бұрын
is it somehow possible to lazy load dynamic components?
@pierre-louis2711
@pierre-louis2711 4 ай бұрын
Hello and thank you as always for your awesome content. I juste miss one thing here : could you provide me some use-cases of creating component this way ? :)
@DecodedFrontend
@DecodedFrontend 4 ай бұрын
There are many cases. For example, you might get a config from the server that describes which components should be created, and since you don't know the config at build time, you have no choice other than creating components at runtime. You also might track validity changes of your form and dynamically create/destroy components with error messages depending on the validity state of the form control. This is just the first that came to my mind :)
@pierre-louis2711
@pierre-louis2711 4 ай бұрын
@@DecodedFrontend Thank you for your reply ! Creating component from a config file is a good example. Thank you ! It helps me. As concern as form errors messages, is that not the responsability of @if (*ngIf) ?
@Ahmed.Kharrat
@Ahmed.Kharrat 4 ай бұрын
You can also create a modal service that creates and manages modal wrappers, allowing you to inject any component inside these wrappers, similar to how `NgbModal` works ;)
@DecodedFrontend
@DecodedFrontend 4 ай бұрын
@@Ahmed.Kharrat dialog window a good example too. Thanks, Ahmed!
@Ahmed.Kharrat
@Ahmed.Kharrat 4 ай бұрын
Hi Dmytro, first of all thanks for the great content :) what you think about this alternative: this.#componentRef.instance.title.set('weather'); and also we can guarantee type checking by (this.#componentRef.instance as WidgetComponent).title.set('weather');
@BishoySaeed-r2q
@BishoySaeed-r2q 3 ай бұрын
i think there is a lag in the video ?
@krishubisht
@krishubisht 4 ай бұрын
Yo yo
@DecodedFrontend
@DecodedFrontend 4 ай бұрын
✌🏻
@Marshall86MT
@Marshall86MT 3 ай бұрын
I found it a bit confusing, I'd rather have preferred having those solutions split instead of mixing them up in the same file. But thanks anyway 😊
@shubhamgoel7703
@shubhamgoel7703 4 ай бұрын
Yo First comment :D
@DecodedFrontend
@DecodedFrontend 4 ай бұрын
Nice!!!😉
@Edgars82
@Edgars82 4 ай бұрын
In which case this can be useful? Just create component with all the inputs and outputs and render it based on condition.
@sokka7460
@sokka7460 4 ай бұрын
For example, for a wyswyg, or if you have a dashboard where the user can create different type of widgets
@DecodedFrontend
@DecodedFrontend 4 ай бұрын
It might be useful when you don't know in advance which component has to be rendered (e.g. It depends on configuration from server). Using if/else blocks might work ok if you have only 1-2 components to deal with, otherwise you will quickly notice that this solution doesn't scale well and each time you need to add a new component, you have to introduce another @if block.
@lucaspham5238
@lucaspham5238 3 ай бұрын
I have a task to create a custom directive that takes either a class constructor, a `TemplateRef`, or a simple string as input, and displays it as an overlay when the user hovers over the element bound to the directive. Handling the `TemplateRef` and string can be done easily with `ngTemplateOutlet` and string interpolation, but rendering the class constructor requires extra steps like what we learn in this video
@diadetediotedio6918
@diadetediotedio6918 2 ай бұрын
Angular has an absolutely terrible and boilerplaty way of doing things that in principle should not be that complex. But amazing video anyways!
NgComponentOutlet in Angular - DECLARATIVE Dynamic Components
21:20
Decoded Frontend
Рет қаралды 10 М.
How To Make Angular Code More Reusable
19:14
Decoded Frontend
Рет қаралды 31 М.
Сестра обхитрила!
00:17
Victoria Portfolio
Рет қаралды 958 М.
Гениальное изобретение из обычного стаканчика!
00:31
Лютая физика | Олимпиадная физика
Рет қаралды 4,8 МЛН
Леон киллер и Оля Полякова 😹
00:42
Канал Смеха
Рет қаралды 4,7 МЛН
Арыстанның айқасы, Тәуіржанның шайқасы!
25:51
QosLike / ҚосЛайк / Косылайық
Рет қаралды 700 М.
Angular Resource API - Everything You Have To Know (so far)
27:58
Decoded Frontend
Рет қаралды 18 М.
RxJS Scan Operator - How to Manage the State
16:33
Decoded Frontend
Рет қаралды 12 М.
React vs Angular In 2025
8:23
Impekable
Рет қаралды 5 М.
Angular Design Patterns - Bridge [Advanced, 2020]
24:34
Decoded Frontend
Рет қаралды 48 М.
TOP 6 Mistakes in RxJS code
18:35
Decoded Frontend
Рет қаралды 24 М.
Angular v19 Developer Event
22:54
Angular
Рет қаралды 71 М.
Input Signals in Angular 17.1 - How To Use & Test
14:34
Decoded Frontend
Рет қаралды 31 М.
Angular 19 is a BEAST of a release!
19:39
Maximilian Schwarzmüller
Рет қаралды 52 М.
Angular dependency injection in depth -  Dependency providers (2021)
17:19
Сестра обхитрила!
00:17
Victoria Portfolio
Рет қаралды 958 М.