Redux Toolkit Tutorial - 23 - Extra Reducers

preview_player
Показать описание


📱 Follow Codevolution

Extra Reducers
Extra Reducers in Redux Toolkit
Redux Toolkit Tutorial
Рекомендации по теме
Комментарии
Автор

if anyone is getting this error in dec 2023,
throw shapeAssertionError;
^

Error: The object notation for `createSlice.extraReducers` has been removed. Please use the 'builder callback' notation instead.

use this,
extraReducers: (builder) => {
builder.addCase('cake/ordered', (state) => {
state.numOfIceCreams--
})
}
instead of this,
extraReducers: {
['cake/ordered']: (state) => {
state.numOfIceCreams--
}
}
thank me laterhand-pink-waving

SandyZangetsu
Автор

You my friend are an excellent teacher and a great series this is. Thanks a lot!

mrjebbar
Автор

This saves me from the mind-boggling RTK tutorials. Thanks a lot!

pkc
Автор

The best Redux Toolkit Tutorial in Youtube. So far i have gone through several Youtube channels to learn Redux but no explain it in details as You do. thanks a lot.

hudabodrul
Автор

By far the best Redux tutorial, thank you

boredne
Автор

thanks for help, managed to complete my task after watching your video

takashimurakami
Автор

Thank you so much, I'm following the videos and they are super clear and easy to understand!
btw: I think (in my opnion) the first way to write the the extraReducers, is makes more since to me, and it's easier to understand.
for me I think that if I don't need to use the functionality provided by (builder), and all I need is just to add Extra Reducer, I'm gonna stick with the first way :)

FirasMohamed
Автор

You are doing god's work. Thanks👍

prajwalsakle
Автор

the map extraReducers way has been removed use the builder way guys

jivara
Автор

for extra reducers, when the cake is ordered, the number of ice-cream is reduced by one, what about when cake is restocked, does the number of ice-cream reduce too?

alexanaderemeka
Автор

What is the meaning of sytax ['cake/ordered'] or as explained function in square brackets

abhinavchinnala
Автор

Great video. Any idea how to separate content inside extrareducer to another file?

LuthfanMursyidanM
Автор

Is it possible to use logger for extra reducers ?
@Codevolution ??

happenings