-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
207 lines (207 loc) · 10.5 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Getting Started with Redux</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
</head>
<body>
<div class="jumbotron">
<h1>Getting Started with Redux</h1>
<p>Original videos <a href="https://egghead.io/courses/getting-started-with-redux">https://egghead.io/courses/getting-started-with-redux</a> </p>
<p>This project implements the code of the course "Getting Started with Redux" by Dan Abramov <a href="https://twitter.com/dan_abramov">@dan_abramov</a></p>
</div>
<div>
<table class="table">
<tr>
<th>#</th>
<th>Description</th>
<th>Video</th>
<th>Code</th>
</tr>
<tr>
<td>01</td>
<td>Redux: The Single Immutable State Tree</td>
<td><a href="https://egghead.io/lessons/javascript-redux-the-single-immutable-state-tree?course=getting-started-with-redux ">Video</a></td>
<td>-</td>
</tr>
<tr>
<td>02</td>
<td>Redux: Describing State Changes with Actions</td>
<td><a href="https://egghead.io/lessons/javascript-redux-describing-state-changes-with-actions?course=getting-started-with-redux">Video</a></td>
<td>-</td>
</tr>
<tr>
<td>03</td>
<td>Redux: Pure and Impure Functions</td>
<td><a href="https://egghead.io/lessons/javascript-redux-pure-and-impure-functions?course=getting-started-with-redux">Video</a></td>
<td>-</td>
</tr>
<tr>
<td>04</td>
<td>Redux: The Reducer Function</td>
<td><a href="https://egghead.io/lessons/javascript-redux-the-reducer-function?course=getting-started-with-redux">Video</a></td>
<td>-</td>
</tr>
<tr>
<td>05</td>
<td>Redux: Writing a Counter Reducer with Tests</td>
<td><a href="https://egghead.io/lessons/javascript-redux-writing-a-counter-reducer-with-tests?course=getting-started-with-redux">Video</a></td>
<td>-</td>
</tr>
<tr>
<td>06</td>
<td>Redux: Store Methods: getState(), dispatch(), and subscribe()</td>
<td><a href="https://egghead.io/lessons/javascript-redux-store-methods-getstate-dispatch-and-subscribe?course=getting-started-with-redux">Video</a></td>
<td><a href="06">Code</a></td>
</tr>
<tr>
<td>07</td>
<td>Redux: Implementing Store from Scratch</td>
<td><a href="https://egghead.io/lessons/javascript-redux-implementing-store-from-scratch?course=getting-started-with-redux">Video</a></td>
<td><a href="07">Code</a></td>
</tr>
<tr>
<td>08</td>
<td>Redux: React Counter Example</td>
<td><a href="https://egghead.io/lessons/javascript-redux-react-counter-example?course=getting-started-with-redux">Video</a></td>
<td><a href="08">Code</a></td>
</tr>
<tr>
<td>09</td>
<td>Redux: Avoiding Array Mutations with concat(), slice(), and ...spread</td>
<td><a href="https://egghead.io/lessons/javascript-redux-avoiding-array-mutations-with-concat-slice-and-spread?course=getting-started-with-redux">Video</a></td>
<td><a href="09">Code</a></td>
</tr>
<tr>
<td>10</td>
<td>Redux: Avoiding Object Mutations with Object.assign() and ...spread</td>
<td><a href="https://egghead.io/lessons/javascript-redux-avoiding-object-mutations-with-object-assign-and-spread?course=getting-started-with-redux">Video</a></td>
<td><a href="10">Code</a></td>
</tr>
<tr>
<td>11</td>
<td>Redux: Writing a Todo List Reducer (Adding a Todo)</td>
<td><a href="https://egghead.io/lessons/javascript-redux-writing-a-todo-list-reducer-adding-a-todo?course=getting-started-with-redux">Video</a></td>
<td><a href="11">Code</a></td>
</tr>
<tr>
<td>12</td>
<td>Redux: Writing a Todo List Reducer (Toggling a Todo)</td>
<td><a href="https://egghead.io/lessons/javascript-redux-writing-a-todo-list-reducer-toggling-a-todo?course=getting-started-with-redux">Video</a></td>
<td><a href="12">Code</a></td>
</tr>
<tr>
<td>13</td>
<td>Redux: Reducer Composition with Arrays</td>
<td><a href="https://egghead.io/lessons/javascript-redux-reducer-composition-with-arrays?course=getting-started-with-redux">Video</a></td>
<td><a href="13">Code</a></td>
</tr>
<tr>
<td>14</td>
<td>Redux: Reducer Composition with Objects</td>
<td><a href="https://egghead.io/lessons/javascript-redux-reducer-composition-with-objects?course=getting-started-with-redux">Video</a></td>
<td><a href="14">Code</a></td>
</tr>
<tr>
<td>15</td>
<td>Redux: Reducer Composition with combineReducers()</td>
<td><a href="https://egghead.io/lessons/javascript-redux-reducer-composition-with-combinereducers?course=getting-started-with-redux">Video</a></td>
<td><a href="15">Code</a></td>
</tr>
<tr>
<td>16</td>
<td>Redux: Implementing combineReducers() from Scratch</td>
<td><a href="https://egghead.io/lessons/javascript-redux-implementing-combinereducers-from-scratch?course=getting-started-with-redux">Video</a></td>
<td><a href="16">Code</a></td>
</tr>
<tr>
<td>17</td>
<td>Redux: React Todo List Example (Adding a Todo)</td>
<td><a href="https://egghead.io/lessons/javascript-redux-react-todo-list-example-adding-a-todo?course=getting-started-with-redux">Video</a></td>
<td><a href="17">Code</a></td>
</tr>
<tr>
<td>18</td>
<td>Redux: React Todo List Example (Toggling a Todo)</td>
<td><a href="https://egghead.io/lessons/javascript-redux-react-todo-list-example-toggling-a-todo?course=getting-started-with-redux">Video</a></td>
<td><a href="18">Code</a></td>
</tr>
<tr>
<td>19</td>
<td>Redux: React Todo List Example (Filtering Todos)</td>
<td><a href="https://egghead.io/lessons/javascript-redux-react-todo-list-example-filtering-todos?course=getting-started-with-redux">Video</a></td>
<td><a href="19">Code</a></td>
</tr>
<tr>
<td>20</td>
<td>Redux: Extracting Presentational Components (Todo, TodoList)</td>
<td><a href="https://egghead.io/lessons/javascript-redux-extracting-presentational-components-todo-todolist?course=getting-started-with-redux">Video</a></td>
<td><a href="20">Code</a></td>
</tr>
<tr>
<td>21</td>
<td>Redux: Extracting Presentational Components (AddTodo, Footer, FilterLink)</td>
<td><a href="https://egghead.io/lessons/javascript-redux-extracting-presentational-components-addtodo-footer-filterlink?course=getting-started-with-redux">Video</a></td>
<td><a href="21">Code</a></td>
</tr>
<tr>
<td>22</td>
<td>Redux: Extracting Container Components (FilterLink)</td>
<td><a href="https://egghead.io/lessons/javascript-redux-extracting-container-components-filterlink?course=getting-started-with-redux">Video</a></td>
<td><a href="22">Code</a></td>
</tr>
<tr>
<td>23</td>
<td>Redux: Extracting Container Components (VisibleTodoList, AddTodo)</td>
<td><a href="https://egghead.io/lessons/javascript-redux-extracting-container-components-visibletodolist-addtodo?course=getting-started-with-redux">Video</a></td>
<td><a href="23">Code</a></td>
</tr>
<tr>
<td>24</td>
<td>Redux: Passing the Store Down Explicitly via Props</td>
<td><a href="https://egghead.io/lessons/javascript-redux-passing-the-store-down-explicitly-via-props?course=getting-started-with-redux">Video</a></td>
<td><a href="24">Code</a></td>
</tr>
<tr>
<td>25</td>
<td>Redux: Passing the Store Down Implicitly via Context</td>
<td><a href="https://egghead.io/lessons/javascript-redux-passing-the-store-down-implicitly-via-context?course=getting-started-with-redux">Video</a></td>
<td><a href="25">Code</a></td>
</tr>
<tr>
<td>26</td>
<td>Redux: Passing the Store Down with Provider from React Redux</td>
<td><a href="https://egghead.io/lessons/javascript-redux-passing-the-store-down-with-provider-from-react-redux?course=getting-started-with-redux">Video</a></td>
<td><a href="26">Code</a></td>
</tr>
<tr>
<td>27</td>
<td>Redux: Generating Containers with connect() from React Redux (VisibleTodoList)</td>
<td><a href="https://egghead.io/lessons/javascript-redux-generating-containers-with-connect-from-react-redux-visibletodolist?course=getting-started-with-redux">Video</a></td>
<td><a href="27">Code</a></td>
</tr>
<tr>
<td>28</td>
<td>Redux: Generating Containers with connect() from React Redux (AddTodo)</td>
<td><a href="https://egghead.io/lessons/javascript-redux-generating-containers-with-connect-from-react-redux-addtodo?course=getting-started-with-redux">Video</a></td>
<td><a href="28">Code</a></td>
</tr>
<tr>
<td>29</td>
<td>Redux: Generating Containers with connect() from React Redux (FooterLink)</td>
<td><a href="https://egghead.io/lessons/javascript-redux-generating-containers-with-connect-from-react-redux-footerlink?course=getting-started-with-redux">Video</a></td>
<td><a href="29">Code</a></td>
</tr>
<tr>
<td>30</td>
<td>Redux: Extracting Action Creators</td>
<td><a href="https://egghead.io/lessons/javascript-redux-extracting-action-creators?course=getting-started-with-redux">Video</a></td>
<td><a href="30">Code</a></td>
</tr>
</table>
</div>
</body>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js" integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS" crossorigin="anonymous"></script>
<script type="text/babel" src="app.js"></script>
</html>