Этот материал находится в платной подписке. Оформи премиум подписку и смотри или слушай Pure Redux (COMPLETE PACKAGE), а также все другие курсы, прямо сейчас!
Премиум
  • Урок 1. 00:03:07
    What is Redux? What's it for?
  • Урок 2. 00:01:58
    Start with a Plain React App
  • Урок 3. 00:10:40
    Add Redux to the React App
  • Урок 4. 00:07:33
    Actions
  • Урок 5. 00:09:36
    How the Reducer Works
  • Урок 6. 00:02:30
    What is Immutability?
  • Урок 7. 00:04:15
    Why Immutability Matters to Redux
  • Урок 8. 00:08:43
    How to Immutably Update Arrays
  • Урок 9. 00:07:15
    How to Immutably Update Objects
  • Урок 10. 00:06:19
    Easier debugging with Redux DevTools
  • Урок 11. 00:10:05
    Make API calls with redux-thunk
  • Урок 12. 00:04:43
    Easy immutability with Immer
  • Урок 13. 00:04:34
    How to Test a Reducer
  • Урок 14. 00:04:45
    How to Test Plain Action Creators
  • Урок 15. 00:10:42
    How to Test Async (thunk) Actions
  • Урок 16. 00:01:28
    Create the OfCourse App
  • Урок 17. 00:10:34
    Use a form to get data into Redux
  • Урок 18. 00:03:16
    Set up an API server
  • Урок 19. 00:06:00
    POST new records with redux-thunk
  • Урок 20. 00:00:48
    Proxy requests to the API server
  • Урок 21. 00:08:43
    Fetch the list of courses
  • Урок 22. 00:13:04
    Add a "New Course" Button
  • Урок 23. 00:04:36
    Add Routing and a CourseDetailPage
  • Урок 24. 00:05:34
    Fetching courses from the server
  • Урок 25. 00:01:12
    Style the CourseDetailPage
  • Урок 26. 00:10:40
    Add Lessons to a Course
  • Урок 27. 00:02:40
    Save Lessons to the Server
  • Урок 28. 00:05:37
    Split the Reducers and Use combineReducer
  • Урок 29. 00:05:32
    Implementing Selectors with reselect
  • Урок 30. 00:01:46
    Exercise Solution - getCourseById selector
  • Урок 31. 00:11:42
    Fetch Lessons when route changes
  • Урок 32. 00:11:02
    Edit Lesson Titles and Persist Them
  • Урок 33. 00:05:18
    Delete Lessons from a Course
  • Урок 34. 00:04:44
    Create LessonPage and link the lessons
  • Урок 35. 00:09:21
    Edit lesson contents as Markdown
  • Урок 36. 00:06:36
    Preview the lesson markdown as HTML
  • Урок 37. 00:01:05
    Fix the Error Handling in api.js
  • Урок 38. 00:08:26
    Create LoginPage, signup and login
  • Урок 39. 00:04:40
    Save the JWT Token with Middleware
  • Урок 40. 00:02:09
    Redirect after login
  • Урок 41. 00:04:36
    Save the user in localStorage
  • Урок 42. 00:05:45
    Logging out, and the LoginLogout button
  • Урок 43. 00:07:56
    Hiding components based on role
  • Урок 44. 00:10:14
    Let users buy courses at the SalesPage
  • Урок 45. 00:01:17
    Introduction
  • Урок 46. 00:03:46
    Use Context to avoid prop drilling
  • Урок 47. 00:03:24
    Allow Children to Update Parents with a callback
  • Урок 48. 00:03:01
    Hide the implementation details of a Provider
  • Урок 49. 00:05:07
    Use Multiple Providers in the Same App
  • Урок 50. 00:01:24
    Use a Consumer Outside the Matching Provider
  • Урок 51. 00:04:05
    Use Context to Display Notifications
  • Урок 52. 00:01:25
    Use contextType to access Context without a Consumer
  • Урок 53. 00:01:22
    Use the useContext Hook to access Context in Function Components
  • Урок 54. 00:04:09
    Performantly Render a Large List with React Context
  • Урок 55. 00:02:35
    Test a Component That Uses a Consumer
  • Урок 56. 00:04:15
    Test a Component That Uses a Provider