-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
288 lines (232 loc) · 8.48 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
/* ======= Model ======= */
var model = {
currentCat: null,
adminView: false,
cats: [
{
name: "Benjamin",
image: "images/benjamin.jpg",
count: 0
},
{
name: "Leia",
image: "images/leia.jpg",
count: 0
},
{
name: "Agamemnon",
image: "images/agamemnon.jpg",
count: 0
},
{
name: "Franklin",
image: "images/franklin.jpg",
count: 0
},
{
name: "Tom",
image: "images/tom.jpg",
count: 0
}
]
};
/* ======= Octopus ======= */
var octopus = {
init: function() {
// set our current cat to the first one in the list
model.currentCat = model.cats[0];
// tell our views to initialize
catListView.init();
catView.init();
adminView.init();
},
getCurrentCat: function() {
return model.currentCat;
},
getCats: function() {
return model.cats;
},
// set the currently-selected cat to the object passed in
setCurrentCat: function(cat) {
model.currentCat = cat;
},
// increments the counter for the currently-selected cat
incrementCounter: function() {
model.currentCat.count++;
catView.render();
},
// set adminView to true or false
adminVisible: function() {
if (model.adminView === false) {
model.adminView = true;
} else {
model.adminView = false;
}
},
// open admin view
openAdmin: function() {
if (model.adminView == true) {
adminForm.classList.remove('closed');
}
},
// close admin view
closeAdmin: function() {
if (model.adminView == false) {
var adminForm = document.getElementById('adminForm');
adminForm.classList.add('closed');
}
},
// update cat with new values
updateCat: function() {
var form = document.getElementById('updateForm');
var catName = form.elements['catName'];
var catImage = form.elements['catImage'];
var catClicks = form.elements['catClicks'];
if (catName.value != '') {
model.currentCat.name = catName.value;
}
if (catImage.value != '') {
model.currentCat.image = catImage.value;
}
if (catClicks.value != '') {
model.currentCat.count = catClicks.value;
}
catView.render();
catListView.render();
catName.value = '';
catImage.value = '';
catClicks.value = '';
octopus.adminVisible();
octopus.closeAdmin();
}
};
/* ======= View ======= */
var catView = {
init: function() {
// store pointers to our DOM elements for easy access later
this.catElem = document.getElementById('cat');
this.catNameElem = document.getElementById('cat-name');
this.catImageElem = document.getElementById('cat-img');
this.countElem = document.getElementById('cat-count');
// on click, increment the current cat's counter
this.catImageElem.addEventListener('click', function() {
octopus.incrementCounter();
});
// render this view (update the DOC elements with the right values)
this.render();
},
render: function() {
// update the DOM elements with values from the current cat
var currentCat = octopus.getCurrentCat();
this.countElem.textContent = currentCat.count;
this.catNameElem.textContent = currentCat.name;
this.catImageElem.src = currentCat.image;
}
};
var catListView = {
init: function() {
// store the DOM element for easy access later
this.catListElem = document.getElementById('catList');
//render this view (update the DOm elements with the right values)
this.render();
},
render: function() {
var cat, catName, i;
// get the cats we'll be rendering from the octopus
var cats = octopus.getCats();
// empty the cat list
this.catListElem.innerHTML = '';
//loop over the cats
for(i = 0; i < cats.length; i++) {
// this is the cat we're currently looping over
cat = cats[i];
//make a new cat list item and set its text
catName = document.createElement('li');
catName.textContent = cat.name;
// on click, setCurrentCat and render teh catview
// (this uses our closure-in-a-loop trick to connect the value
// of the cat variable to the click event function)
catName.addEventListener('click', (function(catCopy) {
return function() {
octopus.setCurrentCat(catCopy);
catView.render();
var form = document.getElementById('updateForm');
var catFormName = form.elements['catName'];
var catImage = form.elements['catImage'];
var catClicks = form.elements['catClicks'];
catFormName.placeholder = model.currentCat.name;
catImage.placeholder = model.currentCat.image;
catClicks.placeholder = model.currentCat.count;
};
})(cat));
// finally, add the element to the list
this.catListElem.appendChild(catName);
}
}
};
var adminView = {
init: function() {
var adminBtn = document.getElementById('adminBtn');
var saveBtn = document.getElementById('saveBtn');
var cancelLink = document.getElementById('cancelLink');
adminBtn.addEventListener('click', function() {
octopus.adminVisible();
octopus.openAdmin();
octopus.closeAdmin();
});
saveBtn.addEventListener('click', function() {
octopus.updateCat();
octopus.closeAdmin();
});
cancelLink.addEventListener('click', function() {
var form = document.getElementById('updateForm');
catName = form.elements['catName'];
catImage = form.elements['catImage'];
catClicks = form.elements['catClicks'];
catName.value = '';
catImage.value = '';
catClicks.value = '';
octopus.adminVisible();
octopus.closeAdmin();
});
}
};
// make it go!
octopus.init();
// my original code:
// document.body.innerHTML = `<div class="tab">
// <ul id="catList"></ul>
// </div>`;
// // Let's loop over the cats in our array
// for (var i = 0; i < cats.length; i++) {
// // This is the cat we're on...
// var cat = cats[i];
// // We're creating a DOM element for the cat
// var listUl = document.getElementById('catList');
// var catName = document.createElement('li');
// catName.textContent = cat.name;
// var elem = document.createElement('div');
// // ... and when we click, update the view to display the cat name clicked
// catName.addEventListener('click', (function(catCopy) {
// return function() {
// elem.innerHTML = `<div class="row">
// <div class="column">
// <div id="first" class="card">
// <div class="container">
// <h2>${catCopy.name}</h2>
// <p>Number of clicks: ${catCopy.count}</p>
// </div>
// <img src="${catCopy.image}" alt="${catCopy.name}" style="width:100%">
// </div>
// </div>`;
// document.body.appendChild(elem);
// var catPic = document.querySelector('img');
// var catCount = document.querySelector('p');
// catPic.addEventListener('click', function() {
// catCopy.count += 1;
// catCount.innerHTML = "Number of clicks: " + catCopy.count;
// });
// };
// })(cat));
// listUl.appendChild(catName);
// };