WATCH NEXT: React Interview Questions and Answers - Dominate Your Next Interview - kzbin.info/www/bejne/r4Kro2elpd-ShJIsi=51b2XP_84GH3q6oF
@lostin81592 жыл бұрын
Thank you so much! This video is the one that finally made me understand it. If someone else is still struggling, what worked for me is not splitting so much (just for learning purposes) and not abstracting actions, simply doing yield put({ type: "ABC", payload: ABC }). Maybe I'm weird, but this made my brain click, now that I understand I can split everything back to different folders and files again.
@MonsterlessonsAcademy2 жыл бұрын
You are welcome!
@gagangupta12559 ай бұрын
Awesome video. Thanks alot for giving the context and not directly jumping to the coding
@MonsterlessonsAcademy9 ай бұрын
Glad it was helpful!
@thomasmendoza87102 жыл бұрын
My new favorite instructor. Soon as I get a job with your videos I will get you some 🍺 💰
@MonsterlessonsAcademy2 жыл бұрын
Awesome! Thank you!
@nebiyuzewge44716 ай бұрын
very good video. i get the core concept with in 30 minutes. thank you!
@MonsterlessonsAcademy6 ай бұрын
Glad it helped!
@viniciusm.m.78222 жыл бұрын
Nice!!!
@MonsterlessonsAcademy2 жыл бұрын
Thanks!
@Deliverant2 жыл бұрын
Thx for the video. I've been using redux and redux-saga for a very long time in my projects but i'm starting to wonder, what are the alternatives(if there are) to redux-saga in 2022? I know there are tons of alternatives for redux, but what about redux-saga?
@MonsterlessonsAcademy2 жыл бұрын
I don't know any alternatives to redux saga and I don't know if we need anything else. It is either redux-thunk or redux-saga.
@Deliverant2 жыл бұрын
@@MonsterlessonsAcademy Yeah that what i was thinking. So if instead of redux we use some other state management library like Zustand for example, how do we manage async effects?
@MonsterlessonsAcademy2 жыл бұрын
@@Deliverant then it depends on the library how they do async effects.
@shineLouisShine9 ай бұрын
16:00 - I see what you did there ;) (...already subscribed though) 25:05 - the pop-up modal reminds me that Redux--Saga also include Channels mechanism. Do you have any experience with this concept? (requires a deeper dive) - Your project arrangement is very elegant but I find files with the exact same name quite confusing to work with (despite the different folders which they are included in)
@MonsterlessonsAcademy9 ай бұрын
Thanks! Keep in mind that Saga is an old tool and is not recommened by Redux team nowadays. The recommened solution is redux-toolkit.
@sugaryxegnirys4 ай бұрын
@@MonsterlessonsAcademy I left a job using rtk and now I'm interviewing at a company that uses redux saga 💀
@bigxmark865610 ай бұрын
Hi, can i ask, so the action for the createUser was never used? 23:03
@MonsterlessonsAcademy10 ай бұрын
Hi it is used automatically through saga github.com/monsterlessonsacademy/monsterlessonsacademy/blob/245-redux-saga/src/redux/sagas/handlers/createUser.js
@stoyangrigorov56342 жыл бұрын
Thanks Alex
@MonsterlessonsAcademy2 жыл бұрын
You are welcome!
@soumyasurajita9651 Жыл бұрын
Nice and to the point explanation of saga. Loved it. Also did you cover redux-thunk/redux-toolkit for sideeffects