-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtracker.js
More file actions
227 lines (191 loc) · 6.24 KB
/
tracker.js
File metadata and controls
227 lines (191 loc) · 6.24 KB
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
'strict mode';
class ExpenseTracker {
constructor() {
// initialise expense array (load from localstorage if available)
this.expenses = JSON.parse(localStorage.getItem('expenses')) || [];
this.filteredExpenses = null;
this._renderExpenses();
this._setupEventListener();
}
// Helper function to generate a unique ID
_generateId() {
const timestamp = Date.now().toString(36); // 36 based timestamp
const randomString = Math.random().toString(36).substring(2, 6); // Random string
return `${timestamp}-${randomString}`;
}
// Generate UUID (this is a crypto API in modern browser that generate random UUID)
// _generateId() {
// return crypto.randomUUID()
// }
_capitalizeWord(description) {
return description.charAt(0).toUpperCase() + description.slice(1);
}
// Date
_getDate() {
const date = new Date();
return {
time: `${date.toLocaleTimeString()}`,
date: `${date.toISOString().split('T')[0]}`,
};
}
// Automatically classify an expense based on description or category
_classifyExpense(description) {
// change all to lower case
const lowerDescription = description.toLowerCase();
// keywords to mapping
const keywords = {
Food: ['food', 'restaurant', 'lunch', 'breakfast', 'dinner'],
Transport: ['transport', 'fuel', 'bus', 'cab'],
Utility: ['electricity', 'water', 'internet', 'utilities', 'data'],
Entertainment: ['movie', 'game', 'netflix', 'entertainment'],
};
// Dynamically matching the keywords
for (const [key, keyword] of Object.entries(keywords)) {
if (keyword.some(words => lowerDescription.includes(words)))
return key;
}
return 'Other';
}
// Add expense
_addExpense(amount, description) {
const category = this._classifyExpense(description);
// Create object for new expense
const newExpense = {
id: this._generateId(),
amount: parseFloat(amount),
category,
date: this._getDate().date,
time: this._getDate().time,
description: this._capitalizeWord(description),
};
// Add and Display expense to localStorage
this.expenses.push(newExpense);
this._saveExpense();
this._renderExpenses();
}
// Render Expense to Page
_renderExpenses() {
const tbody = document.querySelector('#expenseTable tbody');
// swapping either the filteredExpenses to be displayed or the full expenses
this.expensesToRender =
this.filteredExpenses !== null
? this.filteredExpenses
: this.expenses || [];
// clear table
tbody.innerHTML = '';
// Add each expense to the table
this.expensesToRender.forEach(expense => {
const row = document.createElement('tr');
row.innerHTML = `
<td> ${expense.id} </td>
<td> ${expense.date} </td>
<td> ${expense.time} </td>
<td> ${expense.category} </td>
<td> ${expense.amount} </td>
<td> ${expense.description} </td>
<td>
<button class="delete-btn" data-id="${expense.id}">Delete</button>
</td>
`;
tbody.appendChild(row);
});
// Update total Expense
this._updateExpense();
}
// Get total Expense
_updateExpense() {
const totals = this._calcExpenses();
document.getElementById('dailyExpenses').textContent =
totals.daily.toFixed(2);
document.getElementById('monthlyExpenses').textContent =
totals.month.toFixed(2);
document.getElementById('totalExpenses').textContent =
totals.all.toFixed(2);
}
// Delete Expenses
_deleteExpense(id) {
this.expenses = this.expenses.filter(expense => expense.id !== id);
this._saveExpense();
this._renderExpenses();
}
// Save Expense to localStorage
_saveExpense() {
localStorage.setItem('expenses', JSON.stringify(this.expenses));
}
// Calculate Expenses for the day, month and the all total
_calcExpenses() {
const today = new Date().toISOString().split('T')[0];
const currentMonth = new Date().getMonth() + 1;
const currentYear = new Date().getFullYear();
return {
daily: this.expensesToRender
.filter(expense => expense.date === today)
.reduce((sum, expense) => sum + expense.amount, 0),
month: this.expensesToRender
.filter(expense => {
const [year, month] = expense.date.split('-');
return (
parseInt(year) === currentMonth &&
parseInt(month) === currentYear
);
})
.reduce((sum, expense) => sum + expense.amount, 0),
all: this.expensesToRender.reduce(
(sum, expense) => sum + expense.amount,
0
),
};
}
// Filter by category
_filterByCategory(category) {
this.filteredExpenses = this.expenses.filter(
expense => expense.category.toLowerCase() === category.toLowerCase()
);
// incase there's no filtered expense
if (this.filteredExpenses.length === 0) {
alert('No expense found for this category!');
}
this._renderExpenses();
}
_clearFilter() {
this.filteredExpenses = null;
document.getElementById('filterInput').value = '';
this._renderExpenses();
}
// Setup Event Listener
_setupEventListener() {
document.getElementById('expenseForm').addEventListener('submit', e => {
e.preventDefault();
const amount = document.getElementById('amount').value;
const description = document.getElementById('description').value;
this._addExpense(amount, description);
// reset form
e.target.reset();
});
// click to delete expense
document
.querySelector('#expenseTable tbody')
.addEventListener('click', e => {
if (e.target.classList.contains('delete-btn')) {
const id = e.target.dataset.id;
this._deleteExpense(id);
}
});
// filter button
document.getElementById('filterBtn').addEventListener('click', e => {
e.preventDefault();
const category = document.getElementById('filterInput').value;
if (category) {
this._filterByCategory(category);
}
});
// clear filter button click
document.getElementById('clearFilter').addEventListener('click', e => {
e.preventDefault();
this._clearFilter();
});
}
}
// Initialise the ExpenseTracker
const expenseTracker = new ExpenseTracker();
// expenseTracker._addExpense(700, 'Giveaway');