-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.js
301 lines (278 loc) · 10.1 KB
/
app.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
299
300
301
// Storage controller
const StorageCtrl = (function() {
// public
return {
storeState: function() {
const state = ItemCtrl.getState();
localStorage.setItem('state', JSON.stringify(state));
},
retrieveState: function() {
const storedState = JSON.parse(localStorage.getItem('state'));
ItemCtrl.setState(storedState);
}
}
})();
// Item controller
const ItemCtrl = (function() {
const Item = function(id, name, calories) {
[this.id, this.name, this.calories] = [id, name, calories];
}
// Contains application's state
const state = {
items: [
],
currentItem: null,
totalCalories: 0
}
// Public
return {
// return whole state object
getState: function() {
return state;
},
setState: function(newState) {
[state.items, state.currentItem, state.totalCalories] = [newState.items, newState.currentItem, newState.totalCalories];
},
// return currentItem
getCurrentItem: function() {
return state.currentItem;
},
// return all items in the state
getItems: function() {
return state.items;
},
// return totalCalories value
getTotalCalories: function() {
return state.totalCalories;
},
// add new calories to the total count
addCalories: function(newCalories) {
state.totalCalories += newCalories;
},
// add new entry to state.items array
addItem: function(name, calories) {
calories = parseInt(calories);
const ID = state.items.length;
const newItem = new Item(ID, name, calories);
state.items.push(newItem);
return newItem;
},
// set currentItem state
setCurrentItem: function(itemId) {
state.items.forEach((item) => {
if (item.id === itemId) {
state.currentItem = item;
}
});
},
// Clear currentItem
clearCurrentItem: function() {
state.currentItem = null;
},
// update existing item
updateItem: function(newData) {
let calorieDiff = state.currentItem.calories;
[state.currentItem.name, state.currentItem.calories] = [newData.name, (parseInt(newData.calories))];
calorieDiff -= state.currentItem.calories;
state.totalCalories -= calorieDiff;
},
// Delete currentItem from items array
deleteItem: function() {
const ids = state.items.map((item) => {
return item.id;
});
const index = ids.indexOf(state.currentItem.id);
state.totalCalories -= state.currentItem.calories;
state.items.splice(index, 1);
},
// Clear items array, remove current item and set totalCalories to 0
purgeItems: function() {
state.items = [];
ItemCtrl.clearCurrentItem();
state.totalCalories = 0;
}
}
})();
// UI controller
const UICtrl = (function() {
// UI selectors for performance and readability
const UISelectors = {
itemList: document.querySelector('#item-list'),
addBtn: document.querySelector('.add-btn'),
deleteBtn: document.querySelector('.delete-btn'),
updateBtn: document.querySelector('.update-btn'),
backBtn: document.querySelector('.back-btn'),
clearBtn: document.querySelector('.clear-btn'),
itemNameInput: document.querySelector('#item-name'),
itemCaloriesInput: document.querySelector('#item-calories'),
totalCaloriesDisplay: document.querySelector('.total-calories')
}
// Expose functions
return {
// Read all items from state and display them
populateItemList: function() {
const items = ItemCtrl.getItems();
let html = '';
items.forEach((item) => {
html += `
<li class="collection-item" id="item-${item.id}">
<strong>${item.name}: </strong><em>${item.calories} Calories</em>
<a href="#" class="secondary-content"><i class="edit-item material-icons">create</i></a>
</li>`;
});
// Update itemList with new HTML
UISelectors.itemList.innerHTML = html;
},
// Get form values
getItemInput: function() {
return {
name: UISelectors.itemNameInput.value,
calories: UISelectors.itemCaloriesInput.value
}
},
// Add item to the UI
addListItem: function(item) {
UICtrl.showList();
ItemCtrl.addCalories(item.calories);
UICtrl.refreshTotalCalories();
const li = document.createElement('li');
li.className = 'collection-item';
li.id = `item-${item.id}`;
li.innerHTML += `
<strong>${item.name}: </strong><em>${item.calories} Calories</em>
<a href="#" class="secondary-content"><i class="edit-item material-icons">create</i></a>`;
UISelectors.itemList.insertAdjacentElement('beforeend', li);
},
// Clear all inputs
clearInput: function() {
UISelectors.itemNameInput.value = '';
UISelectors.itemCaloriesInput.value = '';
},
// Hides the ul element
hideList: function() {
UISelectors.itemList.style.display = 'none';
},
// Show the ul element
showList: function() {
UISelectors.itemList.style.display = 'block';
},
// Refresh the UI based on the current state
refreshTotalCalories() {
UISelectors.totalCaloriesDisplay.textContent = ItemCtrl.getTotalCalories();
},
// Resets UI controls
setInitialState: function() {
UICtrl.clearInput();
UISelectors.updateBtn.style.display = 'none';
UISelectors.deleteBtn.style.display = 'none';
UISelectors.backBtn.style.display = 'none';
UISelectors.addBtn.style.display = 'inline-block';
},
// Shows item modification state
showEditState: function() {
UISelectors.updateBtn.style.display = 'inline-block';
UISelectors.deleteBtn.style.display = 'inline-block';
UISelectors.backBtn.style.display = 'inline-block';
UISelectors.addBtn.style.display = 'none';
},
// Make selectors public
getSelectors: function() {
return UISelectors;
},
// Populate input elements with currentItem values
populateForm: function() {
const currentItem = ItemCtrl.getCurrentItem();
[UISelectors.itemNameInput.value, UISelectors.itemCaloriesInput.value] = [currentItem.name, currentItem.calories];
UICtrl.showEditState();
},
// Redraw the whole state in the UI
redrawState: function() {
UICtrl.populateItemList();
UICtrl.setInitialState();
UICtrl.refreshTotalCalories();
}
}
})();
// App controller
const AppCtrl = (function() {
// Add all event listeners
const loadEventListeners = function() {
const UISelectors = UICtrl.getSelectors();
UISelectors.addBtn.addEventListener('click', itemAddSubmit);
UISelectors.itemList.addEventListener('click', itemEditClick);
UISelectors.updateBtn.addEventListener('click', itemUpdateSubmit);
UISelectors.deleteBtn.addEventListener('click', itemDeleteSubmit);
UISelectors.clearBtn.addEventListener('click', clearAllItems);
UISelectors.backBtn.addEventListener('click', UICtrl.setInitialState);
document.addEventListener('keypress', function(e) {
if (e.keyCode === 13 || e.which === 13) {
e.preventDefault();
return false;
}
})
};
// Fires when the add button is clicked
const itemAddSubmit = function(e) {
const input = UICtrl.getItemInput();
if (input.name !== '' && input.calories !== '') {
const newItem = ItemCtrl.addItem(input.name, input.calories);
UICtrl.addListItem(newItem);
// Clear input
UICtrl.clearInput();
StorageCtrl.storeState();
}
e.preventDefault();
};
// Fires when the edit button is clicked
const itemEditClick = function(e) {
if (e.target.classList.contains('edit-item')) {
const itemId = parseInt((e.target.parentNode.parentNode.id.split('-'))[1]);
ItemCtrl.setCurrentItem(itemId);
UICtrl.populateForm();
}
e.preventDefault();
};
// Fires then the update button is clicked
const itemUpdateSubmit = function(e) {
const input = UICtrl.getItemInput();
ItemCtrl.updateItem(input);
ItemCtrl.clearCurrentItem();
UICtrl.redrawState();
StorageCtrl.storeState();
e.preventDefault();
}
// Fires when the delete button is clicked
const itemDeleteSubmit = function(e) {
ItemCtrl.deleteItem();
ItemCtrl.clearCurrentItem();
UICtrl.redrawState();
StorageCtrl.storeState();
e.preventDefault();
};
// Fires when the clear all button is clicked
const clearAllItems = function(e) {
ItemCtrl.purgeItems();
UICtrl.redrawState();
UICtrl.hideList();
StorageCtrl.storeState();
e.preventDefault();
}
// Expose init function
return {
init: function() {
UICtrl.setInitialState();
StorageCtrl.retrieveState();
const items = ItemCtrl.getItems();
// Check if items array is empty
if (items.length === 0) {
UICtrl.hideList();
} else {
UICtrl.showList();
UICtrl.populateItemList();
UICtrl.refreshTotalCalories();
}
loadEventListeners();
},
};
})();
AppCtrl.init();