-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
298 lines (254 loc) · 8.12 KB
/
index.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
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
/*-----LIBRARY CODE-------------------------------------*/
/* function createStore(reducer) {
let listeners = [];
// state object
let state;
// returns the state
const getState = () => state;
// function that it's passed a function
// that will be called when the state changes
const subscribe = (listener) => {
listeners.push(listener);
return () => {
listeners = listeners.filter((e) => e !== listener);
};
};
// function that is called with an action and
// modifies the state
const dispatch = (action) => {
state = reducer(state, action);
listeners.forEach((listener) => listener());
};
return { getState, subscribe, dispatch };
} */
/*---APP CODE---------------------------------------------*/
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';
/* -------------------------------------------------------- */
// THIS IS THE ROOT REDUCER
// because we have more than one reducer
// and createStore can only have one
// we need to join them in this reducer
/* function app(state = {}, action) {
return {
todos: todos(state.todos, action),
goals: goals(state.goals, action),
};
} */
const checkForYoutube = (store) => (next) => (action) => {
if (
action.type === ADD_TODO &&
action.todo.content.toLowerCase().includes('youtube')
) {
return alert('Nope no youtube allowed');
}
if (
action.type === ADD_GOAL &&
action.goal.content.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 function will excecute every time the state changes
store.subscribe(() => {
console.log('The new state is', store.getState());
const { goals, todos } = store.getState();
// every time that the state changes it will delete all content from the list
document.getElementById('todos').innerHTML = '';
document.getElementById('goals').innerHTML = '';
// and re render here
goals.forEach((goal) => {
addGoalToDOM(goal);
});
todos.forEach((todo) => {
addTodoToDOM(todo);
});
});
// 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, { status: !todo.status })
);
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, { status: !goal.status })
);
default:
return state;
}
}
/* --------------------------------------------------------------------------- */
// Action creators
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,
});
/* ---DOM CODE------------------------------------------------------------------ */
// ID generator
function generateId() {
return (
Math.random().toString(36).substring(2) +
new Date().getTime().toString(36)
);
}
function addTodo() {
// getting the user input for todo
const todoInput = document.getElementById('todoInput');
const content = todoInput.value;
// after getting the value it's going to clear
// the input content
todoInput.value = '';
// dispaching to modify the state
store.dispatch(
addTodoAction({
content,
status: false,
id: generateId(),
})
);
}
function addGoal() {
// getting the user input for goal
const goalInput = document.getElementById('goalInput');
const content = goalInput.value;
// after getting the value it's going to clear
// the input content
goalInput.value = '';
// dispaching to modify the state
store.dispatch(
addGoalAction({
content,
status: false,
id: generateId(),
})
);
}
// if the add button is pressed it will add the value to the store
document.getElementById('addTodoBtn').addEventListener('click', addTodo);
document.getElementById('addGoalBtn').addEventListener('click', addGoal);
// and every time the store changes the subscribe will run
// where the items in store will be rendered with this functions
function addTodoToDOM(todo) {
const liElement = document.createElement('li');
const imgElement = document.createElement('img');
liElement.innerText = todo.content;
imgElement.src = './icons/trash.svg';
imgElement.id = 'deleteGoalBtn';
imgElement.addEventListener('click', () => {
store.dispatch(removeTodoAction(todo.id));
});
liElement.style.textDecoration = todo.status ? 'line-through' : 'none';
liElement.addEventListener('click', () => {
store.dispatch(toggleTodoAction(todo.id));
});
document.getElementById('todos').appendChild(liElement);
document.getElementById('todos').appendChild(imgElement);
}
function addGoalToDOM(goal) {
const liElement = document.createElement('li');
const imgElement = document.createElement('img');
liElement.innerText = goal.content;
imgElement.src = './icons/trash.svg';
imgElement.id = 'deleteGoalBtn';
imgElement.addEventListener('click', () => {
store.dispatch(removeGoalAction(goal.id));
});
liElement.style.textDecoration = goal.status ? 'line-through' : 'none';
liElement.addEventListener('click', () => {
store.dispatch(toggleGoalAction(goal.id));
});
document.getElementById('goals').appendChild(liElement);
document.getElementById('goals').appendChild(imgElement);
}
// this line will modify the state by adding a todo
/* store.dispatch(
addTodoAction({
id: '0',
name: 'Do excersice',
complete: false,
})
); */
/*
-------RULES TO INCREASE PREDICTABILITY--------------------
1.- Only an event can change the state of the store
2.-The function that returns the updated state needs to be a pure function.
-------WHAT IS AN EVENT?-----------------------------------
an event is an object but has to have a type.
it's better practice to pass as little data as possible in each action.
That is, prefer passing the index or ID of a product rather than the entire product object itself.
example:
{
type: "ADD_PRODUCT_TO_CART",
productID: 24
}
------WHAT IS AN ACTION CREATOR?---------------------------
action creators are functions that create/return action objects
example:
const addItem = item => ({
type: ADD_ITEM,
item
});
------WHAT IS A PURE FUNCTION?---------------------------
a pure function always returns the same result if the same arguments are given
they depend soley on the arguments passed into them
and do not produce side effects like api request
example:
const add = (a,b){
return a+b
}
*/