-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
225 lines (182 loc) · 6.07 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
// ****** SELECT ITEMS **********
const alert = document.querySelector('.alert')
const form = document.querySelector('.grocery-form')
const grocery = document.getElementById('grocery')
const submitBtn = document.querySelector('.submit-btn')
const container = document.querySelector('.grocery-container')
const list = document.querySelector('.grocery-list')
const clearBtn = document.querySelector('.clear-btn')
const deleteBtn = document.querySelector('.delete-btn')
// edit option
let editElement;
let editFlag = false;
let editId = '';
// ****** EVENT LISTENERS **********
// submit form
form.addEventListener('submit', addItem);
// clear items
clearBtn.addEventListener('click', clearItems);
// load items
window.addEventListener('DOMContentLoaded', setupItems)
// ****** FUNCTIONS **********
function addItem(e) {
e.preventDefault();
const value = grocery.value
const id = new Date().getTime().toString();
if(value && !editFlag) {
createListItem(id, value)
// display alert
displayAlert('Valor agregado', 'success');
// mostrar lista
container.classList.add('show-container');
// agregar al local storage
addToLocalStorage(id, value);
// set back to default
setBackToDefault();
} else if(value && editFlag) {
editElement.innerHTML = value;
displayAlert('valor cambiado', 'success');
editLocalStorage(editId, value)
setBackToDefault();
} else {
displayAlert('Ingrese Un valor', 'danger');
}
}
// display alert
function displayAlert(text, action) {
alert.textContent = text;
alert.classList.add(`alert-${action}`);
// remove alert
setTimeout(function(){
alert.textContent = '';
alert.classList.remove(`alert-${action}`);
}, 1000)
}
// clear items
function clearItems() {
const items = document.querySelectorAll('.grocery-item');
console.log(items);
if(items.length > 0){
items.forEach(function(item){
list.removeChild(item);
});
}
container.classList.remove('show-container');
displayAlert('lista vacia', 'success');
setBackToDefault();
localStorage.removeItem('list');
}
// delete function
function deleteItem(e){
const elemento = e.currentTarget.parentElement.parentElement;
console.log(elemento);
const id = elemento.dataset.id;
console.log(id);
list.removeChild(elemento);
if(list.children.length === 0){
container.classList.remove('show-container');
}
displayAlert('item removed', 'danger');
setBackToDefault();
// remove from local storage
removeFromLocalStorage(id);
}
// edit function
function editItem(e){
const elemento = e.currentTarget.parentElement.parentElement;
// set edit element
editElement = e.currentTarget.parentElement.previousElementSibling;
// set form value
grocery.value = editElement.innerHTML;
editFlag = true;
editId = elemento.dataset.id;
submitBtn.textContent = 'edit';
}
// set back to default
function setBackToDefault(){
grocery.value = '';
editFlag = false;
editId = '';
submitBtn.textContent = 'submit';
}
// ****** LOCAL STORAGE **********
function addToLocalStorage(id, value){
const grocery = {id, value};
let items = getLocalStorage();
console.log(items);
items.push(grocery);
localStorage.setItem('list', JSON.stringify(items))
}
//
//
function removeFromLocalStorage(id){
let items = getLocalStorage();
items = items.filter(function(item){
if(item.id!== id) {
return item
}
});
localStorage.setItem('list', JSON.stringify(items));
}
//
//
function editLocalStorage(id, value){
let items = getLocalStorage();
items = items.map(function(item){
if(item.id === id) {
item.value = value;
}
return item
})
localStorage.setItem('list', JSON.stringify(items));
}
function getLocalStorage(){
return localStorage.getItem('list')
? JSON.parse(localStorage.getItem('list'))
: [];
}
// localStorage API
// setItem
// getItem
// removeItem
// save as strings
// localStorage.setItem('naranjas', JSON.stringify(['naranjaitem', 'naranjaitem2']))
// const naranjas = JSON.parse(localStorage.getItem('naranjas'))
// console.log(naranjas);
// localStorage.removeItem('naranjas')
// ****** SETUP ITEMS **********
function setupItems(){
let items = getLocalStorage();
if(items.length > 0) {
items.forEach(function(item){
createListItem(item.id, item.value)
})
container.classList.add('show-container')
}
}
function createListItem(id, value) {
const elementoCrear = document.createElement('article');
// agregarle clase al elemento creado
elementoCrear.classList.add('grocery-item');
// crcear y agregar id como atributo en el camino desde js, para dataset
const atributoData = document.createAttribute('data-id');
console.log(atributoData.value);
atributoData.value = id;
elementoCrear.setAttributeNode(atributoData);
elementoCrear.innerHTML = `<p class="title">${value}</p>
<div class="btn-container">
<button type="button" class="edit-btn">
<i class="fas fa-edit"> </i>
</button>
<button type="button" class="delete-btn">
<i class="fas fa-trash"> </i>
</button>
</div>`;
// aprovecho aca que tengo acceso al elemento creado con los edit y delete y los targeteo ahora, para los event listener a disponibilidad luegio de la carga dinamica del elemento
const deleteBtn = elementoCrear.querySelector('.delete-btn');
const editBtn = elementoCrear.querySelector('.edit-btn');
deleteBtn.addEventListener('click', deleteItem);
editBtn.addEventListener('click', editItem);
// appen child ppal
list.appendChild(elementoCrear);
}