Organize your Composition API code (2k subscriber special)

Поділитися
Вставка
  • Опубліковано 25 січ 2025

КОМЕНТАРІ • 205

  • @EHBRod13
    @EHBRod13 9 місяців тому +4

    Bruv, this was exactly what I was looking for! My setup was getting pretty confusing

    • @TheAlexLichter
      @TheAlexLichter  9 місяців тому

      Glad to hear you found the video then 🙌

  • @johnsondev169
    @johnsondev169 Рік тому +40

    The idea of inline composable is very helpful !

  • @antonioparodyguzman3548
    @antonioparodyguzman3548 11 місяців тому +11

    Wow! This should be a must watch for old heavy vue 2 users (like myself).
    I am jumping right away into some heavy refactoring!
    Thanks a lot Alex! Your videos are absolutely great.
    P.S. Loved the inline-composable concept!

    • @TheAlexLichter
      @TheAlexLichter  11 місяців тому

      You are welcome Antonio! As a heavy Vue 2 user myself, I can definitely relate and hope it helps everyone who is coming from the Options API 😊

  • @muratozalp3763
    @muratozalp3763 11 місяців тому +5

    I was getting ready to comment "do we really need a composable for one logic in a component". but the video shows just exactly what you need from nuxt. Thanks Alexander

  • @ChrisVisserDev
    @ChrisVisserDev Рік тому +15

    This is all great stuff and you are also improving on your way of presenting all of this. I really enjoy these videos! Also as a suggestion coming from working in bigger companies and aligning with some other questions asked below, it would be a very nice idea if you can create videos on common scenarios like indeed how to deal with filtering, pagination, structuring API routes, access control and maybe even CI/CD etc :)
    All the best man. Learning a lot and catching details I wasnt aware off!

    • @TheAlexLichter
      @TheAlexLichter  Рік тому +3

      Thank you Chris! Noted the "common scenarios" idea, especially when ti comes to pagination, filtering (URL state one the list already), API structure etc ☺
      I appreciate the kind words and support 💚

  • @Discoh4rry
    @Discoh4rry Рік тому +40

    Nice video! But the blinking in the top while screen recording is pretty annoying... maybe you can fix that for future videos.

    • @TheAlexLichter
      @TheAlexLichter  Рік тому +12

      Yes, sorry for that. Was the first and last time that happens, misconfigured recording settings. 🙈

  • @keystrmpro
    @keystrmpro 4 місяці тому +2

    I really like these kinds of 'Practical Example' videos that can be applied to real-life scenarios. I suggest making some short code review videos as well.

    • @TheAlexLichter
      @TheAlexLichter  4 місяці тому +1

      Thanks! I might do these on stream and release a VOD here 👌

  • @marco.arruda
    @marco.arruda 11 місяців тому +2

    Thank you for the great content! I have to admit I made this mistake when I started with Vue3 composition API, but as soon as I started using composables, the way you show in the video makes much more sense!!

    • @TheAlexLichter
      @TheAlexLichter  11 місяців тому +1

      Really happy that my content is useful 🙌
      Yeah, I also did the same for a bit because I was used to it but eventually overcame it 🙏

  • @vineethedappal
    @vineethedappal 5 місяців тому +1

    I always had this confusion on how to organise code while using composition API. Thanks a lot for this, very helpful video.

  • @joshdeltener2012
    @joshdeltener2012 Рік тому +3

    Interesting concept, I can see that really helping with larger files that you want to organize but don't want in multiple files. As usual, great video!

    • @TheAlexLichter
      @TheAlexLichter  Рік тому

      Thanks Josh! Yeah, especially in bigger projects (hard to showcase in ~15 minutes) they are helpful due to all the different concerns a single component might have 👌

  • @JohnKomarnicki
    @JohnKomarnicki Рік тому +2

    Nice Video Alex!
    I just came across a article a few weeks ago from Michael Thiessen on these inline components and was working on a video about them. I've used these quite a bit in my application recently. Definitely find code a lot more organized.

    • @TheAlexLichter
      @TheAlexLichter  Рік тому

      Thank you John! I totally missed Michael's article on that and noticed it is almost a year old. 😲 Crazy!
      Same, I use them where applicable in various projects and am really happy with the code readability and maintainability ✔

  • @TheAlexLichter
    @TheAlexLichter  Рік тому +4

    Did you ever wrote a "// props" comment (or similar)? 🧐

    • @NathanChase
      @NathanChase Рік тому

      For sure. I think anyone who comes from Vue 2 and Options API will take some time to "unlearn what they have learned" in terms of organizing in the Options fashion, even with Composition API. Inlining your composable makes a lot of sense if nothing else will use it - and that's a common question we ask ourselves - what other components will actually use this code? Sometimes it's hard to not think of composable as only reusable code, so this might be a refactor in reverse, where there might be composables only used by one component that are better off inlined. Great stuff as always Alex!

    • @Tarabass
      @Tarabass Рік тому

      Never did this, I'm a disciplinary person. But, I'm the only one right now programming in nuxt 3/composition api at my team. Will share this video with my team members though as they will use nuxt 3 in the near future as well 👍🏻

    • @TheAlexLichter
      @TheAlexLichter  Рік тому

      @NathanCase Yes, absolutely. That's what "we" were used to for long. I did the same in the beginning 😊
      The point you talk about - is function XYZ reusable is exactly the point - and now people have the choice to refactor without making things "automatically reusable" but still having an easy way to organize code by concern but still grouping things closely together + a simple way to make it reusable if necessary 👌

    • @TheAlexLichter
      @TheAlexLichter  Рік тому

      @Tarabass Discipline helps a lot there! Thanks for sharing it in the future! Let me know if there are any remarks 👍

  • @Tarabass
    @Tarabass Рік тому +3

    Great video again, Alexander. Thx for the heads up on structure the code this way.
    And congrats with your channel! You're growing fast 🎉

    • @TheAlexLichter
      @TheAlexLichter  Рік тому

      Thank you Peter! Happy that you enjoyed it 🙏
      Trying my best to put out the best content I can + being consistent ✌

  • @torerik1778
    @torerik1778 8 місяців тому +1

    Love this! I'm still getting used to the composition API and I'm guilty of structuring my code in the options way. Going to refactor some stuff now following the same line of thinking you showed here.

    • @TheAlexLichter
      @TheAlexLichter  8 місяців тому

      Yess, glad you like it! 🙏🏻
      Hope the refactor will go well 🔥

  • @ronaldjuarez8991
    @ronaldjuarez8991 Рік тому +2

    This video was the best I have seen about Vue. Although I have a small query, if I instantiate a composable globally inside a , can I use it inside a 'Reusable functions specific to this component' without importing it internally? Or must the composable be instantiated again internally.

    • @TheAlexLichter
      @TheAlexLichter  Рік тому +1

      You technically can reuse it as it was instantiated beforehand 👌
      But I probably would be explicit if it is a composable. If it is a plain *function* though, you can just re-use it without issues.

  • @howard5526
    @howard5526 5 місяців тому +1

    This video introducing the composable function gave me a new idea on how to organize my code. thx

  • @jnl88
    @jnl88 11 місяців тому +1

    Your videos are super helpful for me migrating a project from Nuxt 2 to Nuxt 3. Thanks for the tips

    • @TheAlexLichter
      @TheAlexLichter  11 місяців тому

      Glad I could help! If you have any other questions or topics you are curious about, let me know ☺️

  • @rayan_azzam
    @rayan_azzam Рік тому +2

    Very useful, please keep sharing those types of tips 🎉🎉

  • @hangor3620
    @hangor3620 Рік тому +3

    You should continue doing content on youtube, so little quality content related to Vue on UA-cam.
    Great video!

    • @TheAlexLichter
      @TheAlexLichter  Рік тому +2

      Thanks! That's the plan! Once a week (except specials and streams) - release every Friday 👌

    • @hangor3620
      @hangor3620 Рік тому

      Glad to hear that@@TheAlexLichter

  • @LearnVue
    @LearnVue Рік тому +2

    Fire video - definitely like the part about inline composables. One thing I've seen is how defineProps/defineEmits is the one part where the composition API kinda forces the grouping by "options" - do you think grouping all the defineProps/defineEmits/defineModel at the top of the component is still the best approach? I've seen defineProp single use macros in Vue Macro/RFCs but don't know how I feel about it yet.

    • @TheAlexLichter
      @TheAlexLichter  Рік тому +1

      Yeah, for macros it is a bit tricky. I try to keep props at the top and then use them where needed. If I need prop-refs, I convert them where needed. For emits, I also define it at the top.
      Both of them are fine there IMO
      defineModel should (and can) be moved as close to related code as possible 👌

  • @frozenspirittv
    @frozenspirittv Рік тому +4

    Very well explained! Thank you 😊
    Here is the idea for the video: Keeping the state in the URL. How to handle states like pagination or such using url queries. Would love to get a tip or two in that space! Or if you know some good articles.

    • @TheAlexLichter
      @TheAlexLichter  Рік тому +1

      Thank you! Believe it or not, it is up high on my list as I see lots of mistakes around that. Even discussed some helpers for Nuxt (github.com/nuxt/nuxt/pull/24369)!

  • @codewithguillaume
    @codewithguillaume Рік тому +2

    Very nice Alexander :)

    • @TheAlexLichter
      @TheAlexLichter  Рік тому

      Thank you Guillaume! Hope you'll use the inline composables ✌

  • @Rostikchi
    @Rostikchi Рік тому +1

    Thanks a lot, Alexander! The content is instantly applicable.
    Have only one comment, that blinking rectangles in the upper part are a bit distracting.

    • @TheAlexLichter
      @TheAlexLichter  Рік тому

      Thank you for the feedback! It sadly was a recording accident noticed too late. Was the first and last time that happens 👌🏻

  • @CryptographicLoL
    @CryptographicLoL Рік тому +1

    I love your videos!
    Can you make a video about using generic components? I know it's not Nuxt, but would love to see someone tackle this feature. Perhaps even show real world advanced use cases. Would love to hear from you! Thank you for all your hard work!!

    • @TheAlexLichter
      @TheAlexLichter  Рік тому +1

      Thanks a lot 🙏
      Great suggestion! I've wrote it up the list 👌

  • @ivanfrances8913
    @ivanfrances8913 11 місяців тому

    This is huge! Can't wait to present this approach to my team

    • @TheAlexLichter
      @TheAlexLichter  11 місяців тому

      Let me know how your team liked it!

  • @valacshiro378
    @valacshiro378 7 місяців тому +3

    Wow 🤯 now i know where to start and hiw ro "clean" it
    Amazing thank you

  • @mohamedhiggy5242
    @mohamedhiggy5242 11 місяців тому +1

    Interesting concept! Thaanks so much Alex

  • @wedocreations
    @wedocreations 8 місяців тому +1

    I like the idea of inline composable but how I should test my logic business inside at my composable if it inside my component? I always love divide business logic and view but if I keep it all together how I should do it

    • @TheAlexLichter
      @TheAlexLichter  8 місяців тому +1

      That depends on the logic. You can always extract the logic itself into a function and test it if it is used in multiple places. Otherwise, why not testing the component itself?

  • @fffarzan
    @fffarzan Рік тому +1

    Hi. I recently used Nuxt 3 in one of my projects and what I couldn't realize that how can I wrap my code in a package that helps me to organize it without going on option apis way. Thanks for sharing your thaughts!🤘

    • @TheAlexLichter
      @TheAlexLichter  Рік тому

      Hey! Great the you use Nuxt 3 now! Enjoy it 😊
      And happy that my video could help you organizing the code better!

  • @sphex813
    @sphex813 Рік тому +1

    I like it, even tried to implement it in one of components in our project, however I have one question not quiet related with it. We are using eslint and @typescript-eslint/explicit-function-return-type rule, so I need to have return type for all the composables/inline composables, they can change very often and typescript can infer their type very reliably. Do you have any suggestions on how to get around the rule or any tips on how to define return type for composables?

    • @TheAlexLichter
      @TheAlexLichter  Рік тому +1

      I think having an explicit return type for composables is not a bad idea (at least for "mature" parts of the application). You can provide types as usual (see play.vuejs.org/#eNq1VV1vmzAU/Su3vIRIKZlU7SWj1bo1UjepW5V2mybxwsCAW2Ij2ySZsvz3XRsbCE3a7mFSP8D33O/D8da7rKpgVRNv5oUyEbRSIImqKyhjlp9HnpKRdxExuqy4ULAFQbIJJHxZ1YqkE1jHKikmoH5XBBbapLj599Ei8AV2kAm+hBFmGUUsYtMp3BAp45ycClLGiAKp6iyLWMKZVMAFzSmLSwuCc53UH12TsuTwg4syPRmNHXiLGfO8JAuyIkKSCSyt1w79aklsEH8QFP1NIfdko05lwdcMVEFZLl1cKu/MaZM8i0upfZxtEbOUL7XzIZQZim8jTMBnZP09LmsyhvML2EYMnkYIVhqAcUwMA8nAP+k8jRtgGlULLB1g50A3sSoCYcL5YwjhTfD2KPxoWiVqzLprx/Lzdn4Hl1dX8yu4ni/m+tjs+Fs70YUJja4m1d4SZoCFYKsrTtOJttqdzPq0CKUSOHDkFpYWsaxmiaKc9XdGGYJnmlcODH+QKvppPHtaiinkGIUML5uI2KTDiabgtMM5avtNC4NAzbwCWZVU+aPROLAB/HHwwCnTR73oOG4bf0AQgLbdvcFhTru4zrVd0cnwrF1rk80R/0kPLiRyZRiizeeoMpxIl8nmaoEHJ2NKMiRqcTbB/lfanNmKbR/4E04bCUJS4Isiy0rLA74BhGZ1sDpd8pSUKEyD/JEH0wb4q1YKB/s+KWnyiMDuS8YJmkdUtHtTTjhtwIcd90pGH/u075TSFRZFsy6R0Uvd3nbbiZGZXThF9AG3wUfZBrgvqIQilhBDUsQsIfDOkMfFCae9EXkT1GpkQkbz4EFyhoJuRh95mg60JOJrpRmHej5zS4m8GDV1/dmcaQmwi0GfgiSPB84f5EafRd6tIJKIFc6ltalY5EQ15vndF2ynZ8S11SWinzEuiORlrWtsYB9qlmLZPZyp9pO5ilAD7uV8owiTrqlGw5BLBh95eN9ovTnWelfuWXDmOIhT7AQoUBKneOzqG9x5+9ecQAbjL9kY338VNywSnV8pZj3kf5GzXvxjgmYgz0iasb9S1Ax218/6jLC5wEekzZpfEDeLsjlfELimPNNy89zKnPUeCJ09dVLXdWf+eLu/K2RHYA==, but I would also think of disabling the rule if they change too fast, as it only concerns a single component. "It depends" sadly 🙈

  • @Kingside88
    @Kingside88 Рік тому +1

    Great video and clean real-world problem solvent.

  • @macrooooo__
    @macrooooo__ 11 місяців тому +1

    what’s the shortcut for renaming all similar words simultaneously?

    • @TheAlexLichter
      @TheAlexLichter  11 місяців тому

      CTRL + SHIFT + L (on win) for selecting all occurrences. I usually do CTRL + D (which is select *next* occurrence in addition to the current ones)

  • @pedrohde
    @pedrohde Рік тому +1

    excellent content as always!

    • @TheAlexLichter
      @TheAlexLichter  Рік тому

      Thank you Pedro 🙌 Glad you still enjoy the content ☺

  • @alimaher1
    @alimaher1 Рік тому +1

    Thanks Alexander. That was really helpful.

  • @unitedstriker95
    @unitedstriker95 7 місяців тому +1

    Any reason for passing the original message in as a parameter to the composable? seems like you could just define it in the composable and return it.

    • @TheAlexLichter
      @TheAlexLichter  7 місяців тому +2

      You can in this case, of course! It was more to show how you can pass it in in case it comes from other composables or as prop (+ toRef) ☺️

  • @nyambe
    @nyambe Рік тому +1

    Can you organize by name also? For mesageOriginalText etc. the thing ia tomorrow you might not remember what isReverased reverses.

    • @TheAlexLichter
      @TheAlexLichter  Рік тому

      I would not organize by name but would give "more expressive names". So e.g. say `isMessageReversed` - absolutely! Still keeping them in an inline composable though :D

  • @elhamzeinodini4828
    @elhamzeinodini4828 9 місяців тому

    Very useful video, please upload quality content like this more❤

    • @TheAlexLichter
      @TheAlexLichter  9 місяців тому

      Will do! Next video coming up today 🙌

  • @LuckyStilet1
    @LuckyStilet1 5 місяців тому +1

    When refs, computed, watchers... used across different parts of logic, then where put it?
    Also props and store and some composables will be composition style anyway.
    So mixing top level things and logic related?

    • @TheAlexLichter
      @TheAlexLichter  5 місяців тому +1

      “Above” the composables that use it together, but still as close as possible (so they are co-located)

    • @LuckyStilet1
      @LuckyStilet1 5 місяців тому

      @@TheAlexLichter Thanks for answer.

  • @adrianpdm
    @adrianpdm 9 місяців тому

    great content as always!
    have you made any video about Nuxt lifecycle? coming from Nuxt 2, i was a bit surprised knowing that now plugin comes before middleware. Nuxt 3 doc seems to not mention this change. Also the doc no longer have any lifecycle diagram, cmiiw.

    • @TheAlexLichter
      @TheAlexLichter  9 місяців тому

      Thank you 🙏🏻
      Great idea! I helped with the v2 lifecycle page actually so could be a nice case

  • @carminator12
    @carminator12 Рік тому +1

    I'm used to pack stuff like option api because I find it convenient (also composition is by itself less verbose code). I don't need to read the code to figure out where are the variables among functions, watchers and so on, figure out lifecycle called code, etc; they are all packed together. But that's true when the file get big it make me jump middle-top-middle often, or I have to collapse everything. I will try to separate by logic to see what happens but just the idea of mixing stuff make me uncomfortable.
    Also wasn't expecting the "spaghetti code" splash but ok.

    • @TheAlexLichter
      @TheAlexLichter  Рік тому +1

      IMO it is just a matter of getting used to it. And as you mentioned - you rarely look for "where are the computeds" but most of the times "where is the related code". And if that sticks all together, it is easier to find then jump from top to bottom to the middle (as you mentioned as well). Uncomfortable !== bad. Definitely try it out and see how it goes 👌

    • @hangor3620
      @hangor3620 Рік тому +1

      Imagine you have a large file with 1k+ lines of code you inherited from other dev... Not so convenient anymore

    • @TheAlexLichter
      @TheAlexLichter  Рік тому

      @hangor3620 Exactly, that's the time where grouping by logic will shine!

  • @atnguyentien3208
    @atnguyentien3208 Рік тому

    Very helpful video, bro. Thank you so much! This knowledge is what I found so long ago.

    • @TheAlexLichter
      @TheAlexLichter  Рік тому

      You are welcome! Not a "new pattern" per se, right. But lots of people don't know about it!

  • @arnaudkinnoudo3351
    @arnaudkinnoudo3351 8 місяців тому +1

    GREAT content again! Thanks a lot

  • @ItsRyanStudios
    @ItsRyanStudios 7 місяців тому

    Ignore the complainers, video is fine.
    Interesting approach; I love composables but tend to avoid them because the devs I work with don't have time to navigate multiple files.
    Inline approach could be the answer 👍

    • @TheAlexLichter
      @TheAlexLichter  7 місяців тому

      Thanks 🙏🏻
      Let me know how your time likes it!

  • @ricko13
    @ricko13 Рік тому +3

    is just me or parts of the video are glitching?

    • @TheAlexLichter
      @TheAlexLichter  Рік тому +2

      Sadly not just you. A little mistake with the recording settings - won't happen again!
      Luckily no code is hidden or obstructed

  • @ramon7910
    @ramon7910 6 місяців тому

    What's the reason of keeping originalMessage outside useMessage? If it is only used inside the composable, we can put it inside so passing it to useMessage is not needed right? Or I'm missing something?

    • @TheAlexLichter
      @TheAlexLichter  6 місяців тому +1

      If you eg want to hook up originalMessage via v-model to an input field and then pass in the composables (or anything else, so you make it more flexible).
      But you don’t need to if there is no case for it 👌🏻

  • @michal_stachura
    @michal_stachura 3 місяці тому

    Very helpful. I think I'll switch to this approach.

    • @TheAlexLichter
      @TheAlexLichter  3 місяці тому +1

      Glad to hear! Let me know how this works out for you ☺️

  • @doktordaxter
    @doktordaxter Рік тому +1

    I don't really see the advantage of the "inline composable" at least not in this example. Like what is won in the end from wrapping the logic in the function useMessage, if it is only used in one place? Why not just have the reversedMessage computed and the toggleReverse function as they are in the component? I'm pretty new to vue3 and composition so just trying to learn. Interesting video though :)

    • @TheAlexLichter
      @TheAlexLichter  Рік тому +1

      Thanks for the feedback! This is a super small example of course. But think of a larger component that you can't split into smaller ones with more logic. Then, it helps a lot to group them by logic instead of just "writing them down imperatively"

  • @n0xQuZe
    @n0xQuZe Рік тому

    Hey great video! One topic I would love if you could cover is the usage of the same component for creating something( like a user creation modal with a form) and editing the same thing with the same component(same modal that opens prefilled with the selected user form). What would you say is a good approach here?

    • @TheAlexLichter
      @TheAlexLichter  Рік тому

      Thanks a lot! Also a great suggestion for a topic, added it to the list 👌

  • @mahdirashidi5104
    @mahdirashidi5104 11 місяців тому

    this is good idea, i use to use third method, sometims use second one, but i try use fourth , it is better for reading code later,thanks

    • @TheAlexLichter
      @TheAlexLichter  11 місяців тому

      My pleasure! Yeah, inline composables really help structuring the code 🔥

  • @JulioCampoSwork
    @JulioCampoSwork 11 місяців тому

    Nice video dude, composable are very usefull even more in same file, i only use it when the component is short

    • @TheAlexLichter
      @TheAlexLichter  11 місяців тому +1

      Thank you 🙏
      Yeah, I think you can always extract them later if you want to reuse them, but before it might simply be a premature abstraction / optimization.

  • @alwaisy
    @alwaisy Рік тому

    Thanks for making video on this topic. Is that screenshort even readable. Any high quality link.

    • @TheAlexLichter
      @TheAlexLichter  11 місяців тому

      Of course! Both, the original and refactored version are linked in the Vue Docs - vuejs.org/guide/extras/composition-api-faq.html#more-flexible-code-organization
      No color coding though

  • @phip1611
    @phip1611 Рік тому

    Very nice videos! 🎉🎉🎉 But when will you show us something about angular?
    (just kidding) keep going!

    • @TheAlexLichter
      @TheAlexLichter  Рік тому

      You can also use VueUse's useFetch composable. But yes, same idea there!

  • @A28480
    @A28480 Рік тому +1

    Great video! Many thanks

  • @rayan_azzam
    @rayan_azzam 9 місяців тому

    But if you use inline composables, i think we will loose the power of separating logic from the components while doing the component test
    What do you think?

    • @TheAlexLichter
      @TheAlexLichter  9 місяців тому

      Yes and no, because:
      1) If you test components, I wouldn't test implementation details but input and outputs.
      2) You can always extract business logic without extracting the composables (if necessary)

  • @muhamadnasir6236
    @muhamadnasir6236 Рік тому +1

    Wow!! thanks for share

  • @DeepStreamBits
    @DeepStreamBits Рік тому +1

    This would be equivalent to mixins for Vue2. You could have inline mixins in Vue 2, also

    • @TheAlexLichter
      @TheAlexLichter  Рік тому +2

      Kind of, yes. But with better TS support, no naming collisions and a transparent data flow 👌

  • @nyambe
    @nyambe Рік тому

    Btw how to hook up tailwind 3 in the vue playground?

  • @YankaZabka
    @YankaZabka 4 місяці тому +1

    Thank you!

  • @RahulDhole7
    @RahulDhole7 Місяць тому

    I believe in dedicating a folder and dump all in it to grow as muc( as you want

    • @TheAlexLichter
      @TheAlexLichter  Місяць тому

      Then you are searching for a lot of code often 👀

    • @RahulDhole7
      @RahulDhole7 Місяць тому

      @ I agree it’s a trade off. But my personal style is to create folder trees with meaningful naming instead of creating a single big fat file. Maybe because I wasn’t able to afford multiple big screens when I was learning to code.

  • @chambaderaphael8946
    @chambaderaphael8946 Рік тому +1

    Inline composable => ultra élégant 🎉

  • @SamvelKocharyan-g8h
    @SamvelKocharyan-g8h 6 місяців тому

    Am I the only one who gets error like "Block-scoped variable 'useComponentComposable()' used before its declaration.ts-plugin()" ? It's strange that on video there is no error

    • @TheAlexLichter
      @TheAlexLichter  6 місяців тому

      Do you have an example of code (e.g. a playground link)? Normal functions do not need to be declared before used (hoisting) but arrow functions and variables holding fn's (const abc = function(){}) do.

  • @gunnarkieck2063
    @gunnarkieck2063 Рік тому

    Great content thank you!

  • @ivan.jeremic
    @ivan.jeremic Рік тому

    Coming from react/solid you will get there soon once vapor drops.

    • @TheAlexLichter
      @TheAlexLichter  Рік тому

      Not sure what you mean. Vapor won’t change much API-wise for Vue (ofc perf-wise) and Vues reactivity system is already fine grained 🫠

  • @shuanwang4227
    @shuanwang4227 Рік тому +1

    thank you

  • @kaibe5241
    @kaibe5241 28 днів тому

    Dunno wtf is going on with your screen but something keeps flashing white at the top which makes the video hard to watch...

    • @TheAlexLichter
      @TheAlexLichter  28 днів тому

      I know! Mentioned before and sadly only noticed after uploading :(

    • @kaibe5241
      @kaibe5241 27 днів тому

      @@TheAlexLichter :(

  • @aazubakin
    @aazubakin 10 місяців тому

    More videos about best practices vue and nuxt.

  • @apglazkov
    @apglazkov 8 місяців тому

    It was 2024. Vue developers have finally found encapsulation 😏

    • @TheAlexLichter
      @TheAlexLichter  8 місяців тому

      Was already found 4 years ago (as shown in the video 😛) but things take time to change the mind

    • @apglazkov
      @apglazkov 8 місяців тому

      @@TheAlexLichter 😂

    • @apglazkov
      @apglazkov 8 місяців тому +1

      @@TheAlexLichter I remember how 20 years ago at the university we were taught OOP and encapsulation, and even then it was something ancient and 101 😏
      But I agree:
      It's better to reinvent the wheel than to drive without a wheel at all 😅

    • @TheAlexLichter
      @TheAlexLichter  8 місяців тому

      Well luckily we don’t need OOP in the front end nowadays. IMO it is great in the backend (to some degree) but horrible in the front end.
      I’ve also learnt it in Uni 😁
      But encapsulation can be done so nicely, and luckily the Composition API doesn’t force us to group by „type“ anymore 🙏🏻

    • @apglazkov
      @apglazkov 8 місяців тому

      @@TheAlexLichter "Well luckily we don’t need ~~OOP~~ WHEELS in the front end nowadays" - yep, let's just reinvent them 😂😂😂
      It might be funny if it wasn't so sad, thb
      Have to work with Vue/Nuxt for last months...
      And every time I wander how awful it is from the design point of view 😢
      The worst thing is that it encourages devs to write bad code - without encapsulation, with duplication and lots of boilerplate
      The interesting fact that most of the problems that frontend Vue/React/... devs are fighting so "heroically" now, were obvious from the VERY beginning
      While frontenders were desperately fighting against jQuery, mobile devs managed to emerge, grow and even mature: they re-invented Clean-Architecture, design patterns, etc. 😅
      But nvm, just a cry from the heart...
      Anyway, thanks for the video, and have a good day ?? night 😉

  • @s4ndeep1203
    @s4ndeep1203 Рік тому +1

    thankss

  • @AndrzejBMF
    @AndrzejBMF Рік тому

    "...even in general. If you write a comment to describe stuff, why not write a function, instead of a comment..."
    Sorry Alex, but this sounds to me like you haven't seen really large projects with really complex and convoluted logic.

    • @TheAlexLichter
      @TheAlexLichter  Рік тому +1

      Oh believe me, I’ve seen enough weird code 😁
      Also, to avoid misunderstanding: nobody stops you from writing JSdocs/TSDocs for your functions (which I definitely encourage).
      But instead of having one 1000 LOC function, writing subfunctions is the obvious way ☺️

  • @adamskhan
    @adamskhan 6 місяців тому

    I want to follow what the authorities suggest but I'm still unconverted. Nothing I've seen about Composition API including this video makes me prefer it over Options API. I want structure by aspect of component, not by function; for that shouldn't I create a child component? Also, I don't want every line beginning with "const" and looking the same. I notice too that even old-hand Composition API people keep forgetting to append ".value" after every variable, which is a drag and a case where a bit of magic might remain a good thing.

  • @kaibe5241
    @kaibe5241 28 днів тому

    GOD I hate redundant variable prefixes. Both shown and reversed are already terms defining a binary state! lol
    Outside of that, what you're basically advocating for here is vue controllers :)

    • @TheAlexLichter
      @TheAlexLichter  28 днів тому +1

      I'd say they add info. See this example:
      show method vs. show boolean
      reverse method vs. reverse boolean
      Not really clear IMO
      show method vs. isShown boolean
      reverse method vs. isReversed boolean
      More clear when reading ;)

    • @kaibe5241
      @kaibe5241 28 днів тому

      @@TheAlexLichter you’ve misunderstood me. You changed the words ;)
      shown === isShown
      reversed === isReversed
      is my point :)

    • @kaibe5241
      @kaibe5241 28 днів тому

      In most cases I find adding prefixes is a symptom of not thinking through the domain language appropriately, usually a sign of lazy thinking. Not saying you are, just been my experience running a software firm and managing lots of engineers :)

    • @TheAlexLichter
      @TheAlexLichter  27 днів тому

      To me, suffixes like "String", "List" etc. (think of userList, identityString) are in line with what you mentioned.
      The "is"/"has"/"does" prefix is different because it doesn't describe the word but more the action that is triggered by the boolean.
      Also isShown, willShow, hasShown, can all have different info, which is another reason why I am in favor of it for booleans

    • @kaibe5241
      @kaibe5241 27 днів тому +1

      @@TheAlexLichter It's a good argument but one I still fundamentally disagree with. Suffixes as you mention, I agree - they're redundant, and I advise my team not to use them as well.
      You don't need the prefix to advertise intent, as that can come from both the method/function signature, as well as its use, eg: if (this.reversed()) reads identical to if (this.hasReversed()). You can't use reversed() in any other context, it's a question about the object's state in the example I provide, and the engineer's intent is already clear.
      Regarding your last example, the only one that stands out is willShow, as this is a question about future state, rather than current state, and in that case it probably does make sense for the given context. This is obviously different from canShow, which is a question about potential state, which could also be reworded as "showable()".
      Hope that makes sense - and good discussion :)

  • @apglazkov
    @apglazkov 8 місяців тому

    Tbh, in the end the code still looks awful 😭
    Please add at least blank lines before functions so that the code doesn't look like auto-generated sheet that no one is going to read 😖

    • @TheAlexLichter
      @TheAlexLichter  8 місяців тому +1

      If you click on the "demo app code" in the description, there are line breaks? 🤔😆

    • @apglazkov
      @apglazkov 8 місяців тому

      @@TheAlexLichter 😉👍

  • @zlatkoiliev8927
    @zlatkoiliev8927 8 місяців тому

    Not a huge fan of this approach! That will force you to write tons of compostables in a big project. You can easily get lost like that!

    • @TheAlexLichter
      @TheAlexLichter  8 місяців тому +2

      Exactly, you will write lots of functions which contain all the related logic at one spot and even give a descriptive name to it.
      Which approach would you prefer otherwise? 👀

    • @zlatkoiliev8927
      @zlatkoiliev8927 8 місяців тому

      @@TheAlexLichterI will have to experiment with this. Maybe it is better indeed. The way I am doing it at the moment is exactly what you suggested NOT to do in the beginning, where I group them in a similar way to options api…

    • @TheAlexLichter
      @TheAlexLichter  8 місяців тому

      @zlatkoiliev8927 definitely give it a try! It will take a bit to get used to but it’ll feel way better to have things grouped by logic, like you’d do in classic JS/TS files too! ☺️

  • @CompanionCube
    @CompanionCube 10 місяців тому

    how is nobody talking about the incredible annoying white box glitches through out the whole video? is this another case of js dev just accepting anything as is?

    • @TheAlexLichter
      @TheAlexLichter  10 місяців тому

      This is literally one of the top comments 👀👀
      ua-cam.com/video/iKaDFAxzJyw/v-deo.html&lc=UgwbGl-6UroiU-NO5Td4AaABAg

  • @РусланКоваленко-ю6в
    @РусланКоваленко-ю6в 7 місяців тому

    IMO Composition API structuring sucks

  • @ColinRichardson
    @ColinRichardson Рік тому +1

    Nope, sorry, your advice may work for smaller apps of maybe only 200 or 300 files.. but once you get to the couple of hundred thousand files, you will shoot yourself in the foot..
    There are advantages to keeping everything grouped by options.. Once you have started to work on bigger projects, you may start to learn this for yourself.

    • @TheAlexLichter
      @TheAlexLichter  Рік тому +4

      Hey Colin! I’ve worked in projects definitely beyond the 200-300 files mark and there, grouping by logic actually helped understanding what is going on faster than everything grouped by options!
      Why you may wonder? Because the code was easier to read and understand than when it would’ve been grouped by options because you don’t have to jump through the whole file 😊
      So I think the other way around it is 👌🏻 Grouping by options is the “footgun” for bigger files and projects!

    • @ColinRichardson
      @ColinRichardson Рік тому

      @@TheAlexLichter good luck with that then.. Maybe when your projects get bigger and your teams get more diverse, you will see how it starts to make things worse.. Don't worry, you will get there..

    • @TheAlexLichter
      @TheAlexLichter  Рік тому +4

      I have no problem agreeing to disagree. Nobody has to take any of the advice I am giving here - and actually it’s good to draw own conclusions.
      But I would appreciate not being treated like I am new to the game and “will get there” 😊

    • @ColinRichardson
      @ColinRichardson Рік тому

      @@TheAlexLichter Sorry you feel that way, I am just trying to help you not get stuck in a rut of what you believe now. This will help when you start to work on bigger projects with more diverse teams.. You don't need to take any of the advice. Just trying to help you as you grow.

    • @TheAlexLichter
      @TheAlexLichter  Рік тому +5

      Then bring on some arguments or leave it 😁So far you said "there are advantages" and listed none. You talk about gigantic project and diverse teams but still listed nothing speaking in favor of grouping by option! Curious for your thoughts (without patronizing plz!)