Skip to content

Commit fc59fea

Browse files
redux updated
1 parent 9016aa6 commit fc59fea

File tree

1 file changed

+19
-5
lines changed

1 file changed

+19
-5
lines changed

README.md

Lines changed: 19 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
2-
31
# FULL STACK COURSE 2023
42

53
1. [ REACT MasterClass Course Material - HERE](#react-js-masterclass)
@@ -2175,7 +2173,7 @@ It is easy to make travel booking for direct journey from one city to another. B
21752173
- Interface will provide the connecting journey options on same date.
21762174
- Care must be taken in timings of arrival and departure - so that one can continue the journey.
21772175
2178-
2176+
[Back To Top](#full-stack-course-2023)
21792177
21802178
# Redux JS MasterClass
21812179
@@ -2238,15 +2236,27 @@ Hi, This is course page of **CoderDost Youtube Channel** Redux JS 2023 Course [V
22382236
- **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.
22392237
[Immer Link](https://immerjs.github.io/immer/)
22402238
2239+
### 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)
2241+
2. Import/Export : [Long Video](https://youtu.be/7P5JUMc1cI4) | [Short Video](https://youtube.com/shorts/sUUOSWlwfM8)
2242+
3. Spread Operator : [Long Video](https://youtu.be/X4Iv0TBHDQ4) | [Short Video](https://youtube.com/shorts/5dBZGyXutx8)
2243+
4. [Callbacks](https://youtu.be/rx-y7U4x4wc)
2244+
5. [Promises](https://youtu.be/aA4-VNZK2s0)
2245+
6. [Async Await](https://youtu.be/rdy8ZV0LXV0)
22412246
22422247
2248+
22432249
## Chapter 2 - Redux With React Application
22442250
22452251
- **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.
22462252
22472253
- **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.
22482254
[Immer Link](https://immerjs.github.io/immer/)
22492255
2256+
### Related Videos
2257+
1. [React-Redux in Class Components](https://youtu.be/FIjtWnypwMo)
2258+
2259+
22502260
## Chapter 3 - Redux Toolkit with React
22512261
22522262
- **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.
@@ -2262,11 +2272,15 @@ Hi, This is course page of **CoderDost Youtube Channel** Redux JS 2023 Course [V
22622272
22632273
22642274
2265-
## Chapter 5 - Redux Toolkit with Async Thunk - Product and Card Project
2275+
## Chapter 5 - Redux Toolkit with Async Thunk - Product and Cart Project
22662276
22672277
- **Assignment 1** : Add a `<Select>` on Product Card also which shows quantity selector, So user can add item with a particular quantity also initially.
22682278
- **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.
22692279
22702280
## Chapter 6 - Redux Saga Introduction [Optional chapter]
22712281
2272-
- **Assignment 1** : Complete the `delete` and `update` feature using Redux Saga middleware
2282+
- **Assignment 1** : Complete the `delete` and `update` feature using Redux Saga middleware
2283+
2284+
2285+
2286+
[Back To Top](#full-stack-course-2023)

0 commit comments

Comments
 (0)