-
Notifications
You must be signed in to change notification settings - Fork 5
/
script.js
105 lines (80 loc) · 2.8 KB
/
script.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
const transactions = JSON.parse(localStorage.getItem("transactions")) || [];
const formatter = new Intl.NumberFormat("en-US", {
style: "currency",
currency: "USD",
signDisplay: "always",
});
const list = document.getElementById("transactionList");
const form = document.getElementById("transactionForm");
const status = document.getElementById("status");
const balance = document.getElementById("balance");
const income = document.getElementById("income");
const expense = document.getElementById("expense");
form.addEventListener("submit", addTransaction);
function updateTotal() {
const incomeTotal = transactions
.filter((trx) => trx.type === "income")
.reduce((total, trx) => total + trx.amount, 0);
const expenseTotal = transactions
.filter((trx) => trx.type === "expense")
.reduce((total, trx) => total + trx.amount, 0);
const balanceTotal = incomeTotal - expenseTotal;
balance.textContent = formatter.format(balanceTotal).substring(1);
income.textContent = formatter.format(incomeTotal);
expense.textContent = formatter.format(expenseTotal * -1);
}
function renderList() {
list.innerHTML = "";
status.textContent = "";
if (transactions.length === 0) {
status.textContent = "No transactions.";
return;
}
transactions.forEach(({ id, name, amount, date, type }) => {
const sign = "income" === type ? 1 : -1;
const li = document.createElement("li");
li.innerHTML = `
<div class="name">
<h4>${name}</h4>
<p>${new Date(date).toLocaleDateString()}</p>
</div>
<div class="amount ${type}">
<span>${formatter.format(amount * sign)}</span>
</div>
<div class="action">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" onclick="deleteTransaction(${id})">
<path stroke-linecap="round" stroke-linejoin="round" d="M9.75 9.75l4.5 4.5m0-4.5l-4.5 4.5M21 12a9 9 0 11-18 0 9 9 0 0118 0z" />
</svg>
</div>
`;
list.appendChild(li);
});
}
renderList();
updateTotal();
function deleteTransaction(id) {
const index = transactions.findIndex((trx) => trx.id === id);
transactions.splice(index, 1);
updateTotal();
saveTransactions();
renderList();
}
function addTransaction(e) {
e.preventDefault();
const formData = new FormData(this);
transactions.push({
id: transactions.length + 1,
name: formData.get("name"),
amount: parseFloat(formData.get("amount")),
date: new Date(formData.get("date")),
type: "on" === formData.get("type") ? "income" : "expense",
});
this.reset();
updateTotal();
saveTransactions();
renderList();
}
function saveTransactions() {
transactions.sort((a, b) => new Date(b.date) - new Date(a.date));
localStorage.setItem("transactions", JSON.stringify(transactions));
}