Why you should use useState()

  Рет қаралды 22,476

Alexander Lichter

Alexander Lichter

Күн бұрын

Пікірлер: 91
@saltytostitos
@saltytostitos 11 ай бұрын
This is fantastic to cover! Love it! Explaining the link to useAsyncData helped me understand useState easily.
@TheAlexLichter
@TheAlexLichter 11 ай бұрын
Glad it was helpful and happy to hear it closed the gap ✨🎉
@Reagan_Dev
@Reagan_Dev 11 ай бұрын
Thank you, for the quality content again. PS. Congratulations on your 2k sub 🙌
@TheAlexLichter
@TheAlexLichter 11 ай бұрын
You are welcome! Glad you enjoy the videos pal 🙏 Onto the next 2k 😛
@chriscdn
@chriscdn 11 ай бұрын
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!
@TheAlexLichter
@TheAlexLichter 11 ай бұрын
Hey Chris! Then you could pass a key for the state as prop (and then prefix it in useState so you fully avoid collisions).
@chriscdn
@chriscdn 11 ай бұрын
@@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?
@TheAlexLichter
@TheAlexLichter 11 ай бұрын
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
@chriscdn
@chriscdn 11 ай бұрын
@@TheAlexLichter Ah, I missed that. Many thanks! Subscribed!
@mikalai-hryb
@mikalai-hryb 11 ай бұрын
It's a nice explanation and usage. Thank you! I will do it!
@TheAlexLichter
@TheAlexLichter 11 ай бұрын
Glad to hear that!
@YonathanKevin20
@YonathanKevin20 9 ай бұрын
I really enjoyed your video! It was so clear and detailed, and I thought it was awesome. Keep up the great work!
@TheAlexLichter
@TheAlexLichter 9 ай бұрын
Thank you so much! 🙌
@michaelpumo83
@michaelpumo83 11 ай бұрын
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. 😄
@TheAlexLichter
@TheAlexLichter 11 ай бұрын
Thanks a lot 🙌 Looking forward to see you in AMS 🎉🎉🎉
@svenvanreenen
@svenvanreenen 11 ай бұрын
Thank you very much for your video's they are really helpful, love them!
@TheAlexLichter
@TheAlexLichter 11 ай бұрын
You're very welcome! 😊
@wesleyjanse6600
@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.
@A28480
@A28480 11 ай бұрын
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
@TheAlexLichter
@TheAlexLichter 11 ай бұрын
Glad it was helpful! 🙌
@nhs119nhs119
@nhs119nhs119 10 ай бұрын
Great explanation! Thank you, Alex
@TheAlexLichter
@TheAlexLichter 10 ай бұрын
You are welcome 🤗
@tolgabeyazoglu536
@tolgabeyazoglu536 11 ай бұрын
it's great video Alex produces content for us and it's free
@TheAlexLichter
@TheAlexLichter 11 ай бұрын
Thank you 🙌
@ronaldjuarez8991
@ronaldjuarez8991 11 ай бұрын
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!
@TheAlexLichter
@TheAlexLichter 11 ай бұрын
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`.
@doluadao1995
@doluadao1995 8 ай бұрын
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-k6j
@AsierGil-k6j 11 күн бұрын
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.
@TheAlexLichter
@TheAlexLichter 8 күн бұрын
Talked about that a bit in kzbin.info/www/bejne/opK1e4GhfMSqotU You can reduce the payload by passing less (unneeded) data only 👀
@achillesle3995
@achillesle3995 7 ай бұрын
Can you point out when using refs in nuxt 3? pls
@TheAlexLichter
@TheAlexLichter 7 ай бұрын
You can use refs as you’d do in Vue, EXCEPT “outside” of composables, so as “global state” 😊
@muratozalp3763
@muratozalp3763 5 ай бұрын
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.
@theseangle3184
@theseangle3184 4 ай бұрын
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.
@carlosvaldesweb7322
@carlosvaldesweb7322 9 ай бұрын
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?
@TheAlexLichter
@TheAlexLichter 8 ай бұрын
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
@djxak
@djxak 10 ай бұрын
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.
@TheAlexLichter
@TheAlexLichter 10 ай бұрын
You might want to check out Nuxt's latest useId composable or Daniel's vue-bind-once directive! github.com/danielroe/vue-bind-once
@designerjehovah4453
@designerjehovah4453 9 ай бұрын
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?
@TheAlexLichter
@TheAlexLichter 8 ай бұрын
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
@TheAlexLichter
@TheAlexLichter 7 ай бұрын
Video is up now! kzbin.info/www/bejne/iorcdp2EZbqlnKM
@virusblitz
@virusblitz 11 ай бұрын
thank you for making this, great examples!
@TheAlexLichter
@TheAlexLichter 11 ай бұрын
My pleasure! Happy it helped and the examples were clear 🙌
@annazu1111
@annazu1111 7 ай бұрын
your videos opened my eyes.....
@TheAlexLichter
@TheAlexLichter 7 ай бұрын
Really happy it did 🙏🏻🙏🏻
@rifatno1
@rifatno1 5 ай бұрын
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
@TheAlexLichter
@TheAlexLichter 5 ай бұрын
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
@rifatno1
@rifatno1 5 ай бұрын
@@TheAlexLichter Thanks for the info
@squidproxy136
@squidproxy136 9 ай бұрын
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
@TheAlexLichter
@TheAlexLichter 8 ай бұрын
Fetch all SEO-related data on the server 👍🏻 Use useFetch/useAsyncData + await it ☺️
@squidproxy136
@squidproxy136 8 ай бұрын
@@TheAlexLichter thank you, that make sense 👍
@freakfreak786
@freakfreak786 9 күн бұрын
13:21 why is your last few words sometimes so quiet, that it sounds like you stopped the sentence
@nickmurdaugh9856
@nickmurdaugh9856 5 ай бұрын
But useState triggers my React related PTSD.
@KuroManX
@KuroManX 4 ай бұрын
keep calm, we don't have that bullshit setState, also it returns a ref
7 ай бұрын
Thanks for this informative video!
@TheAlexLichter
@TheAlexLichter 7 ай бұрын
You are welcome 🙌🏻
@Thr0nSK
@Thr0nSK 11 ай бұрын
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?
@TheAlexLichter
@TheAlexLichter 11 ай бұрын
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 🤣)
@Thr0nSK
@Thr0nSK 11 ай бұрын
@@TheAlexLichterYeah, the debugging is a good point!
@TheAlexLichter
@TheAlexLichter 10 ай бұрын
@@Thr0nSKOne more thing to consider is e.g. when the state depends on a page param, locale or similar!
@Thr0nSK
@Thr0nSK 10 ай бұрын
@@TheAlexLichter True! Good point
@nyambe
@nyambe 11 ай бұрын
Great info!! what about global state in vue without pinia?
@TheAlexLichter
@TheAlexLichter 11 ай бұрын
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-cody
@don-cody 11 ай бұрын
Amazing content
@TheAlexLichter
@TheAlexLichter 11 ай бұрын
Thanks Cody 🙏
@todpale
@todpale 11 ай бұрын
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).
@TheAlexLichter
@TheAlexLichter 11 ай бұрын
What do you think useState should be / is used for? ☺️
@todpale
@todpale 11 ай бұрын
@@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.
@TheAlexLichter
@TheAlexLichter 11 ай бұрын
I'd argue that you have full control over the data (+ what is actually sent over to the client) 😊
@todpale
@todpale 11 ай бұрын
@@TheAlexLichter I think I need to test it. Thank you for the video!
@TheAlexLichter
@TheAlexLichter 11 ай бұрын
You are welcome! Let me know if you have any more questions 😊
@JulienReszka
@JulienReszka 6 ай бұрын
I wish the doc was clearer
@TheAlexLichter
@TheAlexLichter 6 ай бұрын
What is missing in the docs in your opinion?
@JulienReszka
@JulienReszka 6 ай бұрын
@@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.
@JulienReszka
@JulienReszka 6 ай бұрын
@@TheAlexLichter I'm talking about this doc m/docs/api/composables/use-state
@Oskinavara
@Oskinavara 2 ай бұрын
@@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. :)
@YessenOrazbaiuly
@YessenOrazbaiuly 9 ай бұрын
Thank you!
@TheAlexLichter
@TheAlexLichter 8 ай бұрын
You are welcome!
@pepinogdev
@pepinogdev 11 ай бұрын
greatt, good channel, good content, good good good
@TheAlexLichter
@TheAlexLichter 11 ай бұрын
Thank you very much Simon!
@teckyify
@teckyify 2 ай бұрын
Honestly I don't really understand your explanation language-wise and systematic. Too chaotic for me.
@TheAlexLichter
@TheAlexLichter 2 ай бұрын
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', () => 'что-то'); И в чём разница?
@suheugene
@suheugene 11 ай бұрын
Я не думаю, что первый вариант правильный. В видео, где он описывал неправильное использование useFetch эта тема как раз и затрагивается kzbin.info/www/bejne/pJvWeImjmLypn7s Она применима ко всем use+Что-либо приколам нукста (в моём понимании) Применения первого варианта, где const nameVar = () => useState('title', () => 'что-то'); я даже не видел, на самом деле. Есть какой-нибудь пример?
@виртуоз_ру
@виртуоз_ру 11 ай бұрын
@@suheugene Пример есть в документации в разделе composables
@TheAlexLichter
@TheAlexLichter 11 ай бұрын
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".
@nangseakheng2976
@nangseakheng2976 11 ай бұрын
Good content
@TheAlexLichter
@TheAlexLichter 11 ай бұрын
Thanks 🙏😊
Organize your Composition API code (2k subscriber special)
18:22
Alexander Lichter
Рет қаралды 26 М.
The Right Way To Return API Errors in .NET
10:40
Nick Chapsas
Рет қаралды 65 М.
To Brawl AND BEYOND!
00:51
Brawl Stars
Рет қаралды 17 МЛН
The Best Band 😅 #toshleh #viralshort
00:11
Toshleh
Рет қаралды 22 МЛН
When you have a very capricious child 😂😘👍
00:16
Like Asiya
Рет қаралды 18 МЛН
useAsyncData vs. useFetch 🤯
15:20
Alexander Lichter
Рет қаралды 11 М.
Vue.js API Client Layer Explained in 4 minutes
3:54
Neuronfire
Рет қаралды 507
NEW Folder Structure in Nuxt 4
16:50
Alexander Lichter
Рет қаралды 16 М.
You're Probably Using Nuxt Wrong
5:16
LearnVue
Рет қаралды 35 М.
State Managers Are Making Your Code Worse In React
13:33
Web Dev Simplified
Рет қаралды 207 М.
DejaVue #E019 - Nuxt Tips You Have to Know
43:37
DejaVue
Рет қаралды 790
Avoid losing Reactivity in your Vue Application
10:32
Alexander Lichter
Рет қаралды 9 М.
Nuxt Server Components Explained (With New Updates!)!
20:20
Program With Erik
Рет қаралды 7 М.
Auto Imports in Vue and Nuxt - The Good and the Bad
21:08
Alexander Lichter
Рет қаралды 3,6 М.
To Brawl AND BEYOND!
00:51
Brawl Stars
Рет қаралды 17 МЛН