This is fantastic to cover! Love it! Explaining the link to useAsyncData helped me understand useState easily.
@TheAlexLichter11 ай бұрын
Glad it was helpful and happy to hear it closed the gap ✨🎉
@Reagan_Dev11 ай бұрын
Thank you, for the quality content again. PS. Congratulations on your 2k sub 🙌
@TheAlexLichter11 ай бұрын
You are welcome! Glad you enjoy the videos pal 🙏 Onto the next 2k 😛
@chriscdn11 ай бұрын
How do you deal with multiple instances of a component on the same page, each of which should have its own state? For example, consider the following: const count = useState("counter", () => Math.round(Math.random() * 100)); Due to the "counter" key, each instance of the component will get the same value. However, I'd like each instance to have its own random value. Thanks for the videos!
@TheAlexLichter11 ай бұрын
Hey Chris! Then you could pass a key for the state as prop (and then prefix it in useState so you fully avoid collisions).
@chriscdn11 ай бұрын
@@TheAlexLichter Thanks for your reply. The catch is that I use this component in many different places, and there's no consistent way to track which instance gets which key. I prefer to keep my components autonomous and not require management of an external key. The application for this might be obvious: ``` ... ``` The problem is keeping `uniqueId` unique for each instance and be SSR compatible. I see hints of a `useId` composable coming to Nuxt. Maybe this is the solution? Or can you think of another way in the meantime?
@TheAlexLichter11 ай бұрын
The useId composable will likely be implemented in Vue 3.5 (as mentioned in the video). Then that should be really easy! Until then, check out Daniel's vue-bind-once github.com/danielroe/vue-bind-once
@chriscdn11 ай бұрын
@@TheAlexLichter Ah, I missed that. Many thanks! Subscribed!
@mikalai-hryb11 ай бұрын
It's a nice explanation and usage. Thank you! I will do it!
@TheAlexLichter11 ай бұрын
Glad to hear that!
@YonathanKevin209 ай бұрын
I really enjoyed your video! It was so clear and detailed, and I thought it was awesome. Keep up the great work!
@TheAlexLichter9 ай бұрын
Thank you so much! 🙌
@michaelpumo8311 ай бұрын
Finally just managed to watch this all the way through! Brilliant explanation on useState and I've already thought of a place in my own codebase I could benefit from this. Thanks so much. Oh, and thanks for the raffle prize! Very chuffed. 😄
@TheAlexLichter11 ай бұрын
Thanks a lot 🙌 Looking forward to see you in AMS 🎉🎉🎉
@svenvanreenen11 ай бұрын
Thank you very much for your video's they are really helpful, love them!
@TheAlexLichter11 ай бұрын
You're very welcome! 😊
@wesleyjanse6600Ай бұрын
So how would I manage global state with useState do I create a composable for this and manage the state in that composable? do you have a seperate video on this? I'm sadly a glorified React dev learning vue/nuxt. So the concepts don't click yet.
@A2848011 ай бұрын
Anothee great video! 👌 tips like this make it much easier for beginner like me to get a comprehensive grasp of how nuxt works under the hood
@TheAlexLichter11 ай бұрын
Glad it was helpful! 🙌
@nhs119nhs11910 ай бұрын
Great explanation! Thank you, Alex
@TheAlexLichter10 ай бұрын
You are welcome 🤗
@tolgabeyazoglu53611 ай бұрын
it's great video Alex produces content for us and it's free
@TheAlexLichter11 ай бұрын
Thank you 🙌
@ronaldjuarez899111 ай бұрын
Excellent video! I have a question, why do you think it is wrong to use a global state in a composable even if you are not using SSR. Regards!
@TheAlexLichter11 ай бұрын
Good question! I wouldn't say that it is bad practice overall, but when using nuxt and (one day) switching to SSR, you might run into the issue from above without noticing. Instead I'd go with a more explicit way, e.g. a "globalState" file that exports these `ref`s/`reactive`.
@doluadao19958 ай бұрын
Sometimes you don't know what component is mutating the global state in composable when composable is used in many place, so debuging can become very challenging. But with a very carefull use, it can be very handy for some case.
@AsierGil-k6j11 күн бұрын
One question, i need the page not to render in the source of my ssr page the "NUXT_DATA" script, or if it has to be in the page which is fine, to not include all of my state, is there anything for that? It does not matter if its with pinia or useState, If its a large application it could include a lot of needless things.
@TheAlexLichter8 күн бұрын
Talked about that a bit in kzbin.info/www/bejne/opK1e4GhfMSqotU You can reduce the payload by passing less (unneeded) data only 👀
@achillesle39957 ай бұрын
Can you point out when using refs in nuxt 3? pls
@TheAlexLichter7 ай бұрын
You can use refs as you’d do in Vue, EXCEPT “outside” of composables, so as “global state” 😊
@muratozalp37635 ай бұрын
Alexander, I have multiple frontend projects that merge into one using a Nuxt layer. I need a unified state management solution for these projects. For example, one UI manages robot jobs, while another displays job reports. What would you advise for more generic store mechanism? How can I integrate useFetch with state management, considering useFetch is typically used only starting points of component or composable? I feel like if I use state management, I will have to give up useFetch.
@theseangle31844 ай бұрын
Just use an actual database at that point. Or simply Redis. You can use Nuxt's server side API endpoints feature instead of a separate backend application. These endpoints can query your Redis. You'll have to either make the users create accounts or store a randomly created ID in the browser cookies (assuming all of the apps are on the same domain/origin). You can then use that ID (or username) as the key to query the redis db and have shared state between the apps on the server side, but not shared with other users.
@carlosvaldesweb73229 ай бұрын
First of all, excellent videos! I have a problem that I've been stuck on for a while, could you help me? I have a composable called useQuiz, to handle a quiz, its questions, and the options for each question. I would like to manage the state of this quiz with useState in my composable, but I don't know the correct way to store the result of useFetch or useAsyncData in the quiz variable of my composable to manage the state across all child components. Maybe my implementation is not correct, should the result be placed in the onResponse? Or maybe inside the useAsyncData handler?
@TheAlexLichter8 ай бұрын
useFetch already uses useState (more or less) under the hood. If you want to further alter the data, you might have to save it in a new useState indeed. You could watch the result of useFetch. Happy to give better advice with a stackblitz or similar
@djxak10 ай бұрын
Thanks for the explanation! What should I use instead of useState() if I do not want to create a **global** state? I mean, useState() always needs a key or uses file:line as a key. But what if I need to create an SSR-friendly composable, that should return **new** state (just like a Ref) on each call? Let's say I want useRandom() composable (it's not what I really need, but I think it is a good example to understand the problem). Without SSR I can just use a Ref. useState() needs a key, but I can't generate a key (that will be the same on the server and on the client) as there is nothing I can use as a source data. file:line key is also not suitable here as useState() will be always called from the same file:line (because it is called inside of my composable). Maybe there is a helper/something to generate a key based on a stacktrace of the current call or an other way to solve this? Basically, I need a Ref, but SSR-friendly.
@TheAlexLichter10 ай бұрын
You might want to check out Nuxt's latest useId composable or Daniel's vue-bind-once directive! github.com/danielroe/vue-bind-once
@designerjehovah44539 ай бұрын
Awesome video. Been using useState so much in my application; it actually helped me understand WHEN to use Pinia as a state management tool. On a sidenote, may I ask if you would be willing to cover how the wrapper component works in Nuxt? I sometimes get mismatches warnings in my console and I resort using to this component but I never fully understood why and I couldn't find a good answer in the community?
@TheAlexLichter8 ай бұрын
Client-Only "hides" the problem only. I talked about hydration at Vue.js Amsterdam, the talks will be released soon & will link it here. Slides can be found already at github.com/manniL/talk-hydration-vuejs-amsterdam-2024
@TheAlexLichter7 ай бұрын
Video is up now! kzbin.info/www/bejne/iorcdp2EZbqlnKM
@virusblitz11 ай бұрын
thank you for making this, great examples!
@TheAlexLichter11 ай бұрын
My pleasure! Happy it helped and the examples were clear 🙌
@annazu11117 ай бұрын
your videos opened my eyes.....
@TheAlexLichter7 ай бұрын
Really happy it did 🙏🏻🙏🏻
@rifatno15 ай бұрын
There is a problem. I'm using one component outside layout and one inside layout. Both depends on the same state. When I change the value from inside layout, the value of the component outside layout doesn't update in SSR. // this component doesn't update when the value is changed in layout // the vaule is changed here The problem solves when I use inside layout
@TheAlexLichter5 ай бұрын
That is correct as SSR is "top to bottom" and there is no "real" workaround there I'm afraid. You can't update what is already rendered during SSR. See github.com/nuxt/nuxt/issues/19258 for more details
@rifatno15 ай бұрын
@@TheAlexLichter Thanks for the info
@squidproxy1369 ай бұрын
thanks for the great content Mr Alexander, please if you can make video explaining JS execution/useFetch on server/client like common issues or tips because that confusing sometimes especially in my case where i want to make ecommerce and for example should i fetch the product (singular) on the server for better SEO while the profile page can be ssr false. Thanks Again
@TheAlexLichter8 ай бұрын
Fetch all SEO-related data on the server 👍🏻 Use useFetch/useAsyncData + await it ☺️
@squidproxy1368 ай бұрын
@@TheAlexLichter thank you, that make sense 👍
@freakfreak7869 күн бұрын
13:21 why is your last few words sometimes so quiet, that it sounds like you stopped the sentence
@nickmurdaugh98565 ай бұрын
But useState triggers my React related PTSD.
@KuroManX4 ай бұрын
keep calm, we don't have that bullshit setState, also it returns a ref
7 ай бұрын
Thanks for this informative video!
@TheAlexLichter7 ай бұрын
You are welcome 🙌🏻
@Thr0nSK11 ай бұрын
Isn’t it actually better not to provide the key & let nuxt generate it automatically so that there is no way you could get a duplicate key in a large project? The key might make sense if you need to access the state from multiple places in code, however, even then you could just create a wrapper composable around useState without key and call it instead of useState(), couldn’t you?
@TheAlexLichter11 ай бұрын
I'd rather trust my own key (so I definitely won't duplicate it) then on auto-gen 😛 + It is easier to debug in the devtools (which is the better reason here 🤣)
@Thr0nSK11 ай бұрын
@@TheAlexLichterYeah, the debugging is a good point!
@TheAlexLichter10 ай бұрын
@@Thr0nSKOne more thing to consider is e.g. when the state depends on a page param, locale or similar!
@Thr0nSK10 ай бұрын
@@TheAlexLichter True! Good point
@nyambe11 ай бұрын
Great info!! what about global state in vue without pinia?
@TheAlexLichter11 ай бұрын
Thank you 🙏 If you need global state in plain Vue without Pinia, then you *can* go for the pattern from the video: a `ref` outside a composable to keep the global state inside. Can also be a `reactive` object holding global state in a different file that is manipulated!
@don-cody11 ай бұрын
Amazing content
@TheAlexLichter11 ай бұрын
Thanks Cody 🙏
@todpale11 ай бұрын
As far as I understand, useState was created for a very small amount of data to provide an instant access through the project. Once I had an interview with a company which used useState as a main state system for depencies reducung. I failed it because of a different vision of the topic😅 Seems like it’s really supposed to be the Pinia replacement inside Nuxt. But I still believe that useState is a completely different tool (even after your explanation).
@TheAlexLichter11 ай бұрын
What do you think useState should be / is used for? ☺️
@todpale11 ай бұрын
@@TheAlexLichter I’ve never tested it properly. My argumentation might be pretty weak but I’ll still try to explain. From my perspective, useState is a global and enhanced version of React’s one. It helps to create small stores that can share needed values between components without extra complexity. I don’t feel that I have a control over data fully as well as I’d do it with Pinia. At the same time, I don’t need to implement useState because I’ve already got Pinia that does the same thing.
@TheAlexLichter11 ай бұрын
I'd argue that you have full control over the data (+ what is actually sent over to the client) 😊
@todpale11 ай бұрын
@@TheAlexLichter I think I need to test it. Thank you for the video!
@TheAlexLichter11 ай бұрын
You are welcome! Let me know if you have any more questions 😊
@JulienReszka6 ай бұрын
I wish the doc was clearer
@TheAlexLichter6 ай бұрын
What is missing in the docs in your opinion?
@JulienReszka6 ай бұрын
@@TheAlexLichter I tried to use useState to store the idToken to make a request with useFetch with Authorization Bearer token but struggled with it for hours until I noticed I should use useCookie for this. It was not clear to me what SSR-friendly means in this case.
@JulienReszka6 ай бұрын
@@TheAlexLichter I'm talking about this doc m/docs/api/composables/use-state
@Oskinavara2 ай бұрын
@@TheAlexLichter To be honest there is much missing in the docs. Your videos seem to be a natural extension of the (poor) docs of Nuxt 3. I feel like the docs cover 30% of the Nuxt possibilities. But the team seems to be aware of that if they link to your videos in the docs xD Big F to the Nuxt team, Big L for you. :)
@YessenOrazbaiuly9 ай бұрын
Thank you!
@TheAlexLichter8 ай бұрын
You are welcome!
@pepinogdev11 ай бұрын
greatt, good channel, good content, good good good
@TheAlexLichter11 ай бұрын
Thank you very much Simon!
@teckyify2 ай бұрын
Honestly I don't really understand your explanation language-wise and systematic. Too chaotic for me.
@TheAlexLichter2 ай бұрын
That’s unfortunate to hear! If you have any specific question, happy to answer it in the comments.
@виртуоз_ру11 ай бұрын
Приветствую, Александр. Такой вопрос: в каких случаях следует использовать объявление useState вот так: const nameVar = () => useState('title', () => 'что-то'); а в каких вот так: const nameVar = useState('title', () => 'что-то'); И в чём разница?
@suheugene11 ай бұрын
Я не думаю, что первый вариант правильный. В видео, где он описывал неправильное использование useFetch эта тема как раз и затрагивается kzbin.info/www/bejne/pJvWeImjmLypn7s Она применима ко всем use+Что-либо приколам нукста (в моём понимании) Применения первого варианта, где const nameVar = () => useState('title', () => 'что-то'); я даже не видел, на самом деле. Есть какой-нибудь пример?
@виртуоз_ру11 ай бұрын
@@suheugene Пример есть в документации в разделе composables
@TheAlexLichter11 ай бұрын
const nameVar = () => useState('title', () => 'что-то'); allows you to decide when you want to initialize the state and get a fresh "ref" (that is populated with the state) all the time. It avoids issues like we've seen in the plugin, where the values would be "shared".