-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.js
166 lines (130 loc) · 4.58 KB
/
main.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
const db = new Dexie('ShoppingApp')
db.version(1).stores({ items: '++id,name,price,isPurchased' })
const itemForm = document.getElementById('itemForm')
const itemsDiv = document.getElementById('itemsDiv')
const totalPriceDiv = document.getElementById('totalPriceDiv')
const updateForm = document.getElementById('updateForm')
const addItemView = document.getElementById('itemAddDiv')
const updateItemView = document.getElementById('itemUpdateDiv')
//toggle add/update views
const defaultView = (v) =>{
if(v == true){
addItemView.style.display="block";
updateItemView.style.display="none";
}else if(v == false){
addItemView.style.display="none";
updateItemView.style.display="block";
}
}
// Items
const populateItemsDiv = async () => {
const allItems = await db.items.reverse().toArray()
itemsDiv.innerHTML = allItems.map(item => `
<div class="item ${item.isPurchased && 'purchased'}">
<input
type="checkbox"
class="checkbox"
onchange="toggleItemStatus(event, ${item.id})"
${item.isPurchased && 'checked'}
/>
<div class="itemInfo">
<p>${item.name}</p>
<p>$${item.price} x ${item.quantity}</p>
</div>
${!item.isPurchased ? `<div class="itemChange">
<button class="editButton" onClick="editItemTrigger(${item.id})"><img src="https://img.icons8.com/color/50/000000/edit--v3.png"/></button>
<button onclick="removeItem(${item.id})" class="deleteButton">
<img src="https://img.icons8.com/ios/50/000000/cancel.png"/>
</button>
</div>`: `<p class="itemChange">purchased✔ </p>`}
</div>
`).join('')
const arrayOfPrices = allItems.map(item => item.price * item.quantity)
const totalPrice = arrayOfPrices.reduce((a, b) => a + b, 0)
totalPriceDiv.innerText = 'Cart Total: $' + totalPrice
}
window.onload = populateItemsDiv
//add item
itemForm.onsubmit = async (event) => {
event.preventDefault()
const name = document.getElementById('nameInput').value
const quantity = document.getElementById('quantityInput').value
const price = document.getElementById('priceInput').value
await db.items.add({ name, quantity, price})
await populateItemsDiv()
itemForm.reset()
}
//update Item
const updateItem = async (event, id) => {
event.preventDefault()
const name = document.getElementById('updatednameInput').value
const quantity = document.getElementById('updatedquantityInput').value
const price = document.getElementById('updatedpriceInput').value
await db.items.update(id, { name, quantity, price })
await populateItemsDiv()
setTimeout( defaultView(true), 2000)
}
//purchased or not
const toggleItemStatus = async (event, id) => {
await db.items.update(id, { isPurchased: !!event.target.checked })
await populateItemsDiv()
}
//delete item
const removeItem = async id => {
await db.items.delete(id)
await populateItemsDiv()
defaultView(true)
}
//update item view
const populateUpdateForm = async id =>{
const allItems = await db.items.reverse().toArray()
const currentItem = allItems.find(i=> i.id===id)
const con = document.getElementById('itemUpdateDiv')
const content =`<form id="updateForm" onsubmit="updateItem(event, ${currentItem.id})">
<label>
Name of Item:
<input type="text" id="updatednameInput" value=${currentItem.name} required>
</label>
<label>
Quantity:
<input type="number" id="updatedquantityInput" value=${currentItem.quantity}>
</label>
<label>
Price:
<input type="number" id="updatedpriceInput" value=${currentItem.price}>
</label>
<button type="submit" id="editItemButton">Update item</button>
</form>`
con.innerHTML = content;
}
//on edit an item
const editItemTrigger = async id => {
defaultView(false)
await populateUpdateForm(id)
}
//delete all items
const clearAllItems = () => {
db.items.clear()
populateItemsDiv()
defaultView(true)
}
// Get the modal
var modal = document.getElementById('myModal');
// Get the button that opens the modal
var btn = document.getElementById("myBtn");
// Get the <span> element that closes the modal
var span = document.getElementsByClassName("close")[0];
// When the user clicks on the button, open the modal
btn.onclick = function () {
modal.style.display = "block";
}
// When the user clicks on <span> (x), close the modal
span.onclick = function () {
modal.style.display = "none";
}
// When the user clicks anywhere outside of the modal, close it
window.onclick = function (event) {
if (event.target == modal) {
modal.style.display = "none";
}
}