1. Урок 1. 00:01:51
    Demonstration of The Application To Be Built
  2. Урок 2. 00:02:15
    Installing of Ruby Version Manager
  3. Урок 3. 00:01:13
    Installing Ruby
  4. Урок 4. 00:02:42
    Creating a Gemset
  5. Урок 5. 00:02:17
    Installing Node.js and Yarn
  6. Урок 6. 00:02:24
    Installing Ruby on Rails 6
  7. Урок 7. 00:03:56
    Creating Rails 6.0 Project
  8. Урок 8. 00:02:19
    Copying Static Files To Public Folder
  9. Урок 9. 00:04:23
    Rails Application Structure
  10. Урок 10. 00:02:39
    Rails Model-View-Controller Pattern
  11. Урок 11. 00:02:04
    The Rails Views Folder Structure
  12. Урок 12. 00:01:24
    Introduction to Rails Routing
  13. Урок 13. 00:03:11
    Rails Action Controller
  14. Урок 14. 00:02:17
    Moving the Body of Index File to the Layout File
  15. Урок 15. 00:06:53
    Creating Products Controller
  16. Урок 16. 00:02:21
    Rails View Rendering
  17. Урок 17. 00:05:36
    Installing Bootstrap 4
  18. Урок 18. 00:03:32
    Introduction to Embedded Ruby (ERB)
  19. Урок 19. 00:03:10
    Creating and Using Rails View Partials
  20. Урок 20. 00:01:50
    Creating the Footer Partial
  21. Урок 21. 00:01:38
    Moving the Rest of Layout File Content Into Index View Template
  22. Урок 22. 00:03:36
    Factoring Out Product Data Into A Variable
  23. Урок 23. 00:01:42
    Replacing Hardcoded Data With Variables In Product View Template
  24. Урок 24. 00:00:43
    Fixing Product Definition Error
  25. Урок 25. 00:02:55
    Eliminating Code Duplication Using Loops
  26. Урок 26. 00:02:41
    Passing Variables To Partials
  27. Урок 27. 00:04:01
    Simplifying View Templates By Using Action View Helper Methods
  28. Урок 28. 00:04:38
    Replacing Anchor Tags With Link_to Method Challenge
  29. Урок 29. 00:02:53
    Moving Data From The View To The Controller
  30. Урок 30. 00:03:47
    Creating The Product Model
  31. Урок 31. 00:04:50
    ActiveRecord Migration
  32. Урок 32. 00:04:23
    Preparing To Populate The Database Tables With Data
  33. Урок 33. 00:04:19
    Seeding Database Tables With Data
  34. Урок 34. 00:03:05
    Creating Products Controller's Show Action
  35. Урок 35. 00:01:55
    Replacing Product Show Data In View Template
  36. Урок 36. 00:04:45
    Adding Product Show Route
  37. Урок 37. 00:05:43
    Passing Product ID From The View To The Controller
  38. Урок 38. 00:01:46
    Creating The Routes For Listing Products
  39. Урок 39. 00:05:07
    Creating New Product Route
  40. Урок 40. 00:08:06
    Using Form Helper Methods To Create The New Product Form
  41. Урок 41. 00:09:35
    Saving New Product Form Data
  42. Урок 42. 00:05:59
    Editing A Product
  43. Урок 43. 00:03:36
    Factoring Out Product Form As A Partial
  44. Урок 44. 00:03:03
    Posting The Edited Product Data To The Controller
  45. Урок 45. 00:05:06
    Deleting A Product
  46. Урок 46. 00:02:32
    Creating Filters In Controllers
  47. Урок 47. 00:03:28
    Handling ActiveRecord RecordNotFound Errors
  48. Урок 48. 00:04:19
    Adding ActiveRecord Validations
  49. Урок 49. 00:03:23
    Testing The Validation On The Rails Console
  50. Урок 50. 00:02:39
    Using Conditionals In Controllers To Determine The Course Of Action To Take
  51. Урок 51. 00:05:40
    Adding Flash Messages
  52. Урок 52. 00:01:56
    Using Flash.now Upon Failure To Save
  53. Урок 53. 00:01:49
    Replacing The Current Routes With Resourceful Routing
  54. Урок 54. 00:02:22
    Introduction To User Model
  55. Урок 55. 00:03:52
    Creating The User Model
  56. Урок 56. 00:01:15
    Adding The Bcrypt Gem
  57. Урок 57. 00:02:40
    Validating The User Model
  58. Урок 58. 00:09:49
    Introducing Regular Expression (REGEX)
  59. Урок 59. 00:04:35
    Writing Email REGEX
  60. Урок 60. 00:03:18
    Downcasing Email Addresses Automatically
  61. Урок 61. 00:05:14
    Verifying Downcasing Email Address And Its Uniqueness
  62. Урок 62. 00:07:01
    Creating The User Controller
  63. Урок 63. 00:04:02
    Creating The New User Form
  64. Урок 64. 00:05:33
    Signing A User Up
  65. Урок 65. 00:07:28
    Creating The Sign In Form
  66. Урок 66. 00:06:09
    Signing Users In
  67. Урок 67. 00:08:13
    Prevent Multiple Signin
  68. Урок 68. 00:04:39
    Implementing Signing Users Out
  69. Урок 69. 00:04:33
    Preventing Signup If Signed In
  70. Урок 70. 00:01:54
    Implementing Automatic Sign In Upon Sign up
  71. Урок 71. 00:02:19
    Displaying User Email Address Upon Signin
  72. Урок 72. 00:07:20
    Outputting User Model Validation Error Messages
  73. Урок 73. 00:02:23
    Outputting Product Model Validation Error Messages
  74. Урок 74. 00:04:05
    Factoring Out Validation Errors Code Into A Partial
  75. Урок 75. 00:00:49
    Section Introduction
  76. Урок 76. 00:05:41
    Adding User Id and Quantity To Product Model
  77. Урок 77. 00:02:20
    Verifying That Product Records Without User Id Are Invalid
  78. Урок 78. 00:07:48
    Adding User Id To Products In The Seed File And Re-seed Database
  79. Урок 79. 00:03:41
    Whitelisting The Quantity Field
  80. Урок 80. 00:00:47
    Section Introduction
  81. Урок 81. 00:01:46
    Conditional Rendering Of New Product List
  82. Урок 82. 00:03:24
    Protecting The New Product Link Using A Filter
  83. Урок 83. 00:02:44
    Conditional Rendering Edit Product And Delete Product Buttons
  84. Урок 84. 00:02:52
    Associating Products With Owners In Controller
  85. Урок 85. 00:06:40
    Preventing Non-Owners From Editing or Deleting Other Users' Products
  86. Урок 86. 00:00:33
    Introducing Adding Comments
  87. Урок 87. 00:02:49
    Creating Comment Model
  88. Урок 88. 00:04:44
    Creating Comments Controller Without The Use Of A Generator
  89. Урок 89. 00:09:32
    Creating Comment Form Partial
  90. Урок 90. 00:03:00
    Passing Product and Comment Objects To The Comment Partial
  91. Урок 91. 00:08:27
    Implementing CommentsController's Create Action
  92. Урок 92. 00:07:22
    Creating Comment Partial
  93. Урок 93. 00:09:13
    Rendering Comments
  94. Урок 94. 00:03:26
    Moving The Logic For Rejecting New Comments To A Helper Method
  95. Урок 95. 00:02:08
    Sorting Comments In Descending Order
  96. Урок 96. 00:10:59
    Deploying To Heroku
  97. Урок 97. 00:02:49
    What is React.js?
  98. Урок 98. 00:02:34
    Installing React
  99. Урок 99. 00:02:52
    Integrating Hello React Into Rails
  100. Урок 100. 00:07:09
    Explaining Hello React
  101. Урок 101. 00:04:44
    Transpiling JSX To JavaScript
  102. Урок 102. 00:02:36
    Breaking Up The View Into Components
  103. Урок 103. 00:01:51
    Creating The Component Folder Structure
  104. Урок 104. 00:03:03
    Creating The Wrapper Component
  105. Урок 105. 00:03:25
    Rendering The Wrapper Component
  106. Урок 106. 00:03:22
    Creating The Header Component
  107. Урок 107. 00:04:44
    Creating The Remaining Components
  108. Урок 108. 00:02:57
    Fleshing Out The Header Component
  109. Урок 109. 00:04:49
    Fleshing Out The Jumbotron And ProductList Components
  110. Урок 110. 00:01:14
    Fleshing Out The Footer Component
  111. Урок 111. 00:05:37
    Creating The Product Component
  112. Урок 112. 00:05:36
    Using The Map Function To Map Over Product List
  113. Урок 113. 00:05:55
    Looping Through List of Products
  114. Урок 114. 00:01:18
    Passing Key Prop To List
  115. Урок 115. 00:01:56
    Introducing Data Retrieval in React
  116. Урок 116. 00:06:19
    Creating Namespaces
  117. Урок 117. 00:05:14
    Setting Up Hot Module Reloading (HMR)
  118. Урок 118. 00:05:15
    Responding To Requests With JSON Data Using JBuilder Gem
  119. Урок 119. 00:01:46
    Introducing React State and Props
  120. Урок 120. 00:01:34
    Introducing React Lifecycle Methods
  121. Урок 121. 00:08:56
    Discussing The React Lifecycle Methods
  122. Урок 122. 00:13:16
    Introducing Class-Based Components
  123. Урок 123. 00:05:17
    Using State Values In Components
  124. Урок 124. 00:03:10
    Passing Product Prop To Product Component
  125. Урок 125. 00:05:49
    Receiving Product Props In the Product Component
  126. Урок 126. 00:02:34
    Adding PropTypes To Product Component
  127. Урок 127. 00:00:50
    Introducing Client-Side Routing
  128. Урок 128. 00:05:08
    Setting Up Client-Side Routing
  129. Урок 129. 00:08:58
    Using The Route Component
  130. Урок 130. 00:07:32
    Using The Switch Component
  131. Урок 131. 00:05:13
    Adding 404-Not Found Component
  132. Урок 132. 00:06:53
    Creating The ProductDetail Component
  133. Урок 133. 00:06:15
    Using Link Component
  134. Урок 134. 00:02:44
    Passing URL Parameters
  135. Урок 135. 00:05:06
    Receiving URL Parameters
  136. Урок 136. 00:08:50
    Responding To Show Request With JSON
  137. Урок 137. 00:03:08
    Using Link Components In Header Component
  138. Урок 138. 00:00:32
    Introducing React Forms
  139. Урок 139. 00:07:28
    Creating A New Product Form
  140. Урок 140. 00:01:46
    Adding Initial State To Form Component
  141. Урок 141. 00:05:58
    Handling The OnSubmit Event
  142. Урок 142. 00:09:44
    Handling Form Input Data
  143. Урок 143. 00:01:14
    Handling Form Input Data For Rest Of The Fields Challenge
  144. Урок 144. 00:05:31
    Using Alternative Methods of Binding
  145. Урок 145. 00:06:41
    Submitting Form Input Data
  146. Урок 146. 00:03:58
    Implementing Product Form Submission
  147. Урок 147. 00:02:00
    Handling Form Data Submission In Parent Component
  148. Урок 148. 00:02:00
    Graphical Representation of Component Hierarchy
  149. Урок 149. 00:09:20
    Adding A New Product
  150. Урок 150. 00:02:10
    Creating JBuilder Partial
  151. Урок 151. 00:09:42
    Creating checkErrors Method
  152. Урок 152. 00:07:55
    Using The checkErrors Method
  153. Урок 153. 00:08:57
    Displaying Error Message On Name Field On Form
  154. Урок 154. 00:01:58
    Displaying Error Message On Other Fields On Form
  155. Урок 155. 00:10:10
    Implementing clearErrors Method
  156. Урок 156. 00:01:58
    Introducing Handling Server-Side Errors
  157. Урок 157. 00:10:18
    Adding Properties To Component State And Writing Error Messages To State
  158. Урок 158. 00:01:58
    Server-Error Handling Workflow
  159. Урок 159. 00:08:45
    Creating ErrorMessages Component
  160. Урок 160. 00:03:09
    Clearing Server-Side Errors Upon Successful Save
  161. Урок 161. 00:09:02
    Preventing Duplicate Rendering Of Same Error Message
  162. Урок 162. 00:09:55
    Preventing Form Submission When There Are Client-Side Errors
  163. Урок 163. 00:05:50
    Toggling The Form View On And Off
  164. Урок 164. 00:00:43
    Introducing Form Input Components
  165. Урок 165. 00:09:53
    Creating Form Input Component
  166. Урок 166. 00:04:26
    Creating A TextArea Component
  167. Урок 167. 00:02:52
    Creating A Button Component
  168. Урок 168. 00:09:52
    Using Input Components
  169. Урок 169. 00:02:59
    Using React Children
  170. Урок 170. 00:04:37
    Creating A Generic Form Component
  171. Урок 171. 00:02:21
    Using The Generic Form In NewProductForm Component
  172. Урок 172. 00:07:20
    Creating ProductForm Component
  173. Урок 173. 00:02:03
    Fixing Undefined Props Error
  174. Урок 174. 00:00:47
    User Management
  175. Урок 175. 00:11:53
    Implementing User Registration
  176. Урок 176. 00:07:59
    Adding Signup Event Handlers
  177. Урок 177. 00:05:17
    Setting Current User Variable
  178. Урок 178. 00:07:23
    Fetching The Current User From The Database
  179. Урок 179. 00:10:15
    Redirecting To Home Page Upon Signup
  180. Урок 180. 00:02:38
    Activating An Event In The Parent Component From The Child
  181. Урок 181. 00:06:39
    Passing Current User As A Prop From App Component To The Header Component
  182. Урок 182. 00:08:19
    Implementing Signup Client-Side Error Handling
  183. Урок 183. 00:04:05
    Preventing Signup Form Submission There Are Client-Side Errors
  184. Урок 184. 00:11:22
    Handling Signup Server-Side Errors
  185. Урок 185. 00:12:01
    Implementing Signing Users Out In React
  186. Урок 186. 00:08:49
    Signing Users Out And Redirecting To Home Page
  187. Урок 187. 00:10:06
    Implementing Sign In Form
  188. Урок 188. 00:09:28
    Adding Signin Event Handlers
  189. Урок 189. 00:06:24
    Implementing Sign In Form handleSubmit Handler
  190. Урок 190. 00:02:45
    Implementing handleSignin Method
  191. Урок 191. 00:09:11
    Displaying Signin Server Error Messages
  192. Урок 192. 00:07:33
    Preventing Rendering Of Signin Component If Signed In Already
  193. Урок 193. 00:05:46
    Hiding Some Nav Links
  194. Урок 194. 00:02:00
    Assigning Owners To Products
  195. Урок 195. 00:00:55
    Introducing Editing And Deleting Products
  196. Урок 196. 00:14:28
    Protecting The Edit And Delete Product Buttons
  197. Урок 197. 00:09:35
    Creating The Editing Component
  198. Урок 198. 00:07:58
    Implementing Editing Product
  199. Урок 199. 00:11:30
    Implementing getProduct Method
  200. Урок 200. 00:09:45
    Updating Product
  201. Урок 201. 00:06:53
    Implementing Client-Side Error Handling
  202. Урок 202. 00:11:04
    Implementing handleProductUpdate Method
  203. Урок 203. 00:09:18
    Updating Parent Component
  204. Урок 204. 00:04:00
    Responding To Product Update Requests With JSON Data
  205. Урок 205. 00:07:01
    Preventing Unauthorized Editing of Products
  206. Урок 206. 00:03:44
    Preventing Retrieval Of Non-Existent Products
  207. Урок 207. 00:08:08
    Implementing Code To Pass Error Message To ProductList Component
  208. Урок 208. 00:04:39
    Modifying ErrorMessages Component To Render Flash Messages
  209. Урок 209. 00:11:30
    Using React Hooks
  210. Урок 210. 00:06:35
    Deleting A Product
  211. Урок 211. 00:01:54
    Introducing Higher-Order Components (HOCs)
  212. Урок 212. 00:12:00
    Higher-Order Functions
  213. Урок 213. 00:13:14
    Implementing Higher-Order Components
  214. Урок 214. 00:03:52
    Implementing Product Form Higher-Order Component
  215. Урок 215. 00:08:33
    Moving The Common Code From The Form Components Into The HOC
  216. Урок 216. 00:09:45
    Passing Event Handlers Down
  217. Урок 217. 00:00:46
    Introducing Adding Comments To Products
  218. Урок 218. 00:03:49
    Creating CommentList Component
  219. Урок 219. 00:03:22
    Creating Comment Component
  220. Урок 220. 00:09:29
    Rendering The CommentList Component In The ProductDetail Component
  221. Урок 221. 00:05:28
    Creating The Api's Comments Controller's
  222. Урок 222. 00:06:44
    Retrieving Comments Together With Products
  223. Урок 223. 00:03:55
    Handling Comments Not Found Error
  224. Урок 224. 00:06:28
    Formatting Date
  225. Урок 225. 00:01:32
    Creating CommentForm Homework
  226. Урок 226. 00:06:09
    Creating CommentForm Component
  227. Урок 227. 00:05:03
    Implementing Comments Client-Side Error Handlers
  228. Урок 228. 00:03:42
    Implementing Comments' handleSubmit Handler
  229. Урок 229. 00:03:26
    Implementing CommentForm Component Server-Side Error Handling
  230. Урок 230. 00:07:29
    Implementing handleCommentSubmit Method
  231. Урок 231. 00:03:07
    Adding Comment Create Action
  232. Урок 232. 00:03:35
    Protecting The CommentForm From Unauthorized Access