Skip to content

Commit 98f6bf7

Browse files
redux updated
1 parent fc59fea commit 98f6bf7

File tree

1 file changed

+10
-5
lines changed

1 file changed

+10
-5
lines changed

README.md

+10-5
Original file line numberDiff line numberDiff line change
@@ -2237,7 +2237,7 @@ Hi, This is course page of **CoderDost Youtube Channel** Redux JS 2023 Course [V
22372237
[Immer Link](https://immerjs.github.io/immer/)
22382238
22392239
### Related Videos
2240-
1. De-structuring Assignment : [Long Video](https://youtu.be/sNhqFofQhFs) | [Object De-structure Short Video](https://youtube.com/shorts/H3MKXE69_c8) | [Array De-structure Short Video](https://youtube.com/shorts/ONGyMq49kZY)
2240+
1. De-structuring Assignment : [Long Video](https://youtu.be/sNhqFofQhFs) | [Object De-structure Short Video](https://youtube.com/shorts/H3MKXE69_c8) | [Array De-structure Short Video](https://youtube.com/shorts/ONGyMq49kZY)
22412241
2. Import/Export : [Long Video](https://youtu.be/7P5JUMc1cI4) | [Short Video](https://youtube.com/shorts/sUUOSWlwfM8)
22422242
3. Spread Operator : [Long Video](https://youtu.be/X4Iv0TBHDQ4) | [Short Video](https://youtube.com/shorts/5dBZGyXutx8)
22432243
4. [Callbacks](https://youtu.be/rx-y7U4x4wc)
@@ -2250,7 +2250,7 @@ Hi, This is course page of **CoderDost Youtube Channel** Redux JS 2023 Course [V
22502250
22512251
- **Assignment 1** : Add more cases in Account Reducer called `decrementByAmount` . Also check that amount should not be decremented in case `amount` to be decremented is less than account Balance. For e.g. if total amount in account is 10, you can't decrement by 11. Also show an error in that situation to user.
22522252
2253-
- **Assignment 2** : Check out IMMER library and run some example and see how you can make mutating updates like `state.amount++` inside reducer logic. And still it work perfectly in redux.
2253+
- **Assignment 2** : Check out IMMER library and run some example and see how you can make mutating updates like `state.amount++` inside reducer logic. And still it work perfectly in redux.
22542254
[Immer Link](https://immerjs.github.io/immer/)
22552255
22562256
### Related Videos
@@ -2266,16 +2266,21 @@ Hi, This is course page of **CoderDost Youtube Channel** Redux JS 2023 Course [V
22662266
- You an `INPUT BOX` to add new users to `list` , users show also add to database and updated in list.[Hint: use REST API concepts for Create API, POST method]
22672267
- You can put a `delete` button on end of list item. On clicking of this button `user` list item will be deleted from database. [Hint: use REST API concepts Delete API, DELETE method]
22682268
- You can put a `selected` button on end of list item. On clicking of this button `user` list item will change colors. [Hint: use REST API concepts Update API, PUT/PATCH method]
2269+
-
2270+
### Related Videos
2271+
1. [ REST API concepts](https://youtu.be/xrB51fPM1K4)
2272+
2. [REST API complete explanation in NodeJS](https://youtu.be/ChVE-JbtYbM?t=10913)
22692273
22702274
22712275
## Chapter 4 - Redux Toolkit Query
22722276
2273-
2277+
22742278
22752279
## Chapter 5 - Redux Toolkit with Async Thunk - Product and Cart Project
22762280
2277-
- **Assignment 1** : Add a `<Select>` on Product Card also which shows quantity selector, So user can add item with a particular quantity also initially.
2278-
- **Assignment 2** : Change the `<Select>` on Cart Items to `+` and `-` buttons which should increment or decrement quantity of item in the cart. Also check if Cart total is coming correct.
2281+
- **Assignment 1** : Add a `<Select>` on Product Card also which shows quantity selector, So user can add item with a particular quantity also initially.
2282+
- **Assignment 2** : Change the `<Select>` on Cart Items to `+` and `-` buttons which should increment or decrement quantity of item in the cart. Also check if Cart total is coming correct.
2283+
22792284
22802285
## Chapter 6 - Redux Saga Introduction [Optional chapter]
22812286

0 commit comments

Comments
 (0)