-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreact.js
283 lines (258 loc) · 7.43 KB
/
react.js
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
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
const ADD_TODO = 'ADD_TODO';
const REMOVE_TODO = 'REMOVE_TODO';
const TOGGLE_TODO = 'TOGGLE_TODO';
const ADD_GOAL = 'ADD_GOAL';
const REMOVE_GOAL = 'REMOVE_GOAL';
const TOGGLE_GOAL = 'TOGGLE_GOAL';
const RECEIVE_DATA = 'RECEIVE_DATA';
const checkForYoutube = (store) => (next) => (action) => {
if (
action.type === ADD_TODO &&
action.todo.name.toLowerCase().includes('youtube')
) {
return alert('Nope no youtube allowed');
}
if (
action.type === ADD_GOAL &&
action.goal.name.toLowerCase().includes('youtube')
) {
return alert('Nope no youtube allowed');
}
return next(action);
};
// the store that has dispatch subscribe and getState methods
const store = Redux.createStore(
Redux.combineReducers({ todos, goals }),
Redux.applyMiddleware(checkForYoutube)
);
// THIS IS A REDUCER FUNCTION
// it takes the state and an action
// this one is for TODOs
function todos(state = [] /*es6 sytax to array if undefined*/, action) {
switch (action.type) {
case ADD_TODO:
return state.concat([action.todo]);
case REMOVE_TODO:
return state.filter((todo) => todo.id !== action.id);
case TOGGLE_TODO:
return state.map((todo) =>
todo.id !== action.id
? todo
: Object.assign({}, todo, { complete: !todo.complete })
);
case RECEIVE_DATA:
return action.todos;
default:
return state;
}
}
// THIS IS A REDUCER FUNCTION
// it takes the state and an action
//and this one is for GOALS
function goals(state = [] /*es6 sytax to array if undefined*/, action) {
switch (action.type) {
case ADD_GOAL:
return state.concat([action.goal]);
case REMOVE_GOAL:
return state.filter((goal) => goal.id !== action.id);
case TOGGLE_GOAL:
return state.map((goal) =>
goal.id !== action.id
? goal
: Object.assign({}, goal, { complete: !goal.complete })
);
case RECEIVE_DATA:
return action.goals;
default:
return state;
}
}
// Action creators
function receiveDataAction(todos, goals) {
return {
type: RECEIVE_DATA,
todos,
goals,
};
}
const addTodoAction = (todo) => ({
type: ADD_TODO,
todo,
});
const removeTodoAction = (id) => ({
type: REMOVE_TODO,
id,
});
const toggleTodoAction = (id) => ({
type: TOGGLE_TODO,
id,
});
const addGoalAction = (goal) => ({
type: ADD_GOAL,
goal,
});
const removeGoalAction = (id) => ({
type: REMOVE_GOAL,
id,
});
const toggleGoalAction = (id) => ({
type: TOGGLE_GOAL,
id,
});
// ID generator
function generateId() {
return (
Math.random().toString(36).substring(2) +
new Date().getTime().toString(36)
);
}
class App extends React.Component {
componentDidMount() {
const { store } = this.props;
Promise.all([API.fetchTodos(), API.fetchGoals()]).then(
([todos, goals]) => {
store.dispatch(receiveDataAction(todos, goals));
}
);
store.subscribe(() => {
this.forceUpdate();
});
}
render() {
const { store } = this.props;
const { todos, goals } = store.getState();
return (
<div id="container">
<Todos todos={todos} store={this.props.store} />
<div id="line"></div>
<Goals goals={goals} store={this.props.store} />
</div>
);
}
}
function List(props) {
return (
<ul id={props.id}>
{props.items.map((e) => (
<React.Fragment key={e.name}>
<li
key={e.id}
onClick={() => props.toggle(e)}
style={{
textDecoration: e.complete
? 'line-through'
: 'none',
}}
>
{e.name}
</li>
<img
key={e.id + 1}
id="deleteGoalBtn"
src="./icons/trash.svg"
onClick={() => props.remove(e)}
></img>
</React.Fragment>
))}
</ul>
);
}
class Todos extends React.Component {
addItem = (e) => {
e.preventDefault();
const name = this.input.value;
this.input.value = '';
this.props.store.dispatch(
addTodoAction({
id: generateId(),
name,
})
);
};
removeItem = (todo) => {
this.props.store.dispatch(removeTodoAction(todo.id));
};
toggle = (todo) => {
this.props.store.dispatch(toggleTodoAction(todo.id));
};
render() {
return (
<div id="todoCard">
<h1>TODO LIST</h1>
<div>
<input
type="text"
placeholder="Add todo"
id="todoInput"
ref={(input) => (this.input = input)}
/>
<button id="addTodoBtn" onClick={this.addItem}>
<img
src="./icons/add.svg"
alt="addbutton"
id="addBtn"
width="25px"
height="25px"
/>
</button>
</div>
<List
id="todos"
items={this.props.todos}
remove={this.removeItem}
toggle={this.toggle}
/>
</div>
);
}
}
class Goals extends React.Component {
addItem = (e) => {
e.preventDefault();
const name = this.input.value;
this.input.value = '';
this.props.store.dispatch(
addGoalAction({
id: generateId(),
name,
})
);
};
removeItem = (goal) => {
this.props.store.dispatch(removeGoalAction(goal.id));
};
toggle = (goal) => {
this.props.store.dispatch(toggleGoalAction(goal.id));
};
render() {
return (
<div id="todoCard">
<h1>GOALS</h1>
<div>
<input
type="text"
placeholder="Add Goal"
id="goalInput"
ref={(input) => (this.input = input)}
/>
<button id="addGoalBtn" onClick={this.addItem}>
<img
src="./icons/add.svg"
alt="addbutton"
id="addBtn"
width="25px"
height="25px"
/>
</button>
</div>
<List
id="goals"
items={this.props.goals}
remove={this.removeItem}
toggle={this.toggle}
/>
</div>
);
}
}
ReactDOM.render(<App store={store} />, document.getElementById('root'));