Тёмный

Building a Recursive Angular Sidebar Component 

Zoaib Khan
Подписаться 5 тыс.
Просмотров 1,6 тыс.
50% 1

Опубликовано:

 

9 сен 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 30   
@DirtySouth33T
@DirtySouth33T Месяц назад
that is awesome actualy, so this just made me change my mind on some things with my multi layout app. this just made it way cleaner i used the original videos for your sidebar with 1 level :) thanks man!
@PrajinSP
@PrajinSP Месяц назад
Thank you so much for this amazing tutorial on Angular! Your explanations were clear and really helped me understand the concepts better. I appreciate the effort you put into creating this content. Keep up the great work!
@ZoaibKhan
@ZoaibKhan Месяц назад
Glad you liked it Prajin!
@ianvink
@ianvink Месяц назад
well done!
@ZoaibKhan
@ZoaibKhan Месяц назад
Thanks Ian, in part to you as well :)
@ianvink
@ianvink Месяц назад
If you haven't already, a video on using the host {} in the Component header and the various elements you can set in it would be a good video. Reducing the # of DIVs is a great benefit for example
@ZoaibKhan
@ZoaibKhan Месяц назад
Aah, you mean the host binding in components?
@DirtySouth33T
@DirtySouth33T Месяц назад
i just signed up and bought it for helping support you as well! really love this type of stuff keep on keeping on, inspiring me to do better
@ZoaibKhan
@ZoaibKhan Месяц назад
Hey Allen! Thanks for all the support. It really means a lot :) And do let me know if you have any suggestions for future content/videos
@DirtySouth33T
@DirtySouth33T Месяц назад
​@@ZoaibKhan its Adam :) I would love to know your thoughts on a couple of things. How would you approach a multi layout project, where admin and user both have your sidenav with their own dashboard example /admin/dashboard & /app/dashboard but then you have a public layout that has a nav bar across the header like bootstrap almost with login/reset password etc.... Would you make a base layout and extend that in the admin/user layouts and override the menu at the component level? I also would love to you how your thoughts on proper project layout for example you use pages/dashboard then you have components like components/sidenav, when you have a project that gets very large do you see benefits from this type layout I have a project that each page is basically a components and then it has a module that barrels the sub components. I have a core module that wraps and barrels interceptors and things like that and the i have shared/services/models and things of that nature. Thanks Zoaib!
@ZoaibKhan
@ZoaibKhan Месяц назад
Oh, sorry for that, Adam :) For a multi layout project, there are multiple ways to do this. One is what you suggested, keep a sidenav and the header in the base layout. Then we use some flag in our state in a service (or signal store, whatever) and show and hide them according to the flag. The other option is to just add the sidenav where needed - so you don't need it in the public facing one - so you can keep a parent component for the authenticated routes only (with an auth guard obviously). Maybe naming it as AuthenticatedLayout And keep the other one as the PublicLayout - with the boostrap like header as parent there. I like the second one, personally. Just seems a bit more organized and will allow you to protect the admin and user routes as well using auth guards. For the project structure, I'd kept pages to contain the top level components linked to routes. And the components basically contain reusable parts of those pages - so things like e.g. common buttons, form control elements, things which are shared. About keeping sub components in a separate module (assuming they're NgModules), the only downside is lack of tree shaking - and which is also the problem with the infamous shared modules that've been very common in the Angular world. Devs just end up adding any common stuff there and it keeps getting imported everywhere - unnecessarily bloating up pages when we don't need them. We can keep barrel files though - and also arrays of shared components to use in components when we need a bunch of them. Being mindful that a lot of unrelated stuff is not stuffed into one place. So yeah, that's a short overview. Hope that helps :)
@DirtySouth33T
@DirtySouth33T Месяц назад
​@@ZoaibKhan awesome answers Thank you so much!! I hear ya on the shared component getting put everywhere LOL!!! i might have done that but now that we have standalone its forcing me to rethink this which is a good thing :) Thanks again brother I look forward to your next video! :)
@ZoaibKhan
@ZoaibKhan Месяц назад
You're welcome :)
@AkhilManikandan-i1e
@AkhilManikandan-i1e Месяц назад
hai zoaib, you are doing a brilliant work in helping people like me, can you make a continuation of this same project with an addition of a dark mode toggler in the toolbar this time, in which when clicked the sun icon changes into a moon icon and vice versa?????
@ZoaibKhan
@ZoaibKhan Месяц назад
Hey Akhil, thanks 🙏 This is quite a simple change, not sure if it'll be worth a whole video. I already have a dark mode video with material - you can check that out for reference for now. I may add the dark mode and toggle to a starter template containing these components...let's see :)
@satheeshkumark9571
@satheeshkumark9571 2 дня назад
It's a great playlist. How to make it as responsive page?
@ZoaibKhan
@ZoaibKhan День назад
Not exactly this, but the general approach is given in this video ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-I13uAoOGU_4.htmlsi=Wav9yFdCfFVPeU-0
@satheeshkumark9571
@satheeshkumark9571 День назад
@@ZoaibKhan Thanks Zoaib
@dcoding
@dcoding Месяц назад
Excellent
@fayazvar3948
@fayazvar3948 Месяц назад
I have not bought the source code, but i passed your videos many time and completed the Navigation Menu. Only one thing i could not do that, how to apply the color theme.
@ZoaibKhan
@ZoaibKhan Месяц назад
I think that's covered in the 3rd video in the playlist - link to which you can find in the description.
@harshakuppala
@harshakuppala Месяц назад
Great, Waiting for the updated code
@ZoaibKhan
@ZoaibKhan Месяц назад
Hey Harsha! If you'd purchased the sidebar in the past, you should've got an email by now
@harshakuppala
@harshakuppala Месяц назад
@@ZoaibKhangot the mail ❤
@ZoaibKhan
@ZoaibKhan Месяц назад
Awesome! Enjoy 😊
@nejmaljamal1281
@nejmaljamal1281 Месяц назад
Can't we just use angular mat tree component instead
@ZoaibKhan
@ZoaibKhan Месяц назад
Sure, you can try to. But it's not meant to be a navigation bar and will require lots of modification in styling e.g.
@Animesh878
@Animesh878 Месяц назад
I am i years of exp in angular developer , i did't find any angular vacancy what should i do
@ZoaibKhan
@ZoaibKhan Месяц назад
I'd suggest building up your portfolio of projects and taking freelance projects while you search for a vacancy
@Animesh878
@Animesh878 Месяц назад
@@ZoaibKhan okk
Далее
Modern Angular Lazy Loading Guide!
22:47
Просмотров 1,2 тыс.
The problem with Angular Signals and Async Reactivity
11:19
Они захватят этот мир🗿
00:48
Просмотров 579 тыс.
Sigma Girl Pizza #funny #memes #comedy
00:14
Просмотров 1,6 млн
Customizing Angular Material just got easier in v18!
14:12
Senior Angular Developer Interview (theory)
41:57
Просмотров 19 тыс.
How I MASTERED CODING with these 4 easy steps
8:02
Просмотров 100 тыс.
Auto Hiding Sticky Navbar with Angular and Motion One!
18:41
5 Design Patterns That Are ACTUALLY Used By Developers
9:27