-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcalculate.js
94 lines (81 loc) · 3.17 KB
/
calculate.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
const calculator = document.querySelector('.calculator');
const keys = document.querySelector('.calculator-keys');
const display = document.querySelector('.calculator-display');
let previousKeyType = '';
keys.addEventListener("click", e => {
if (e.target.matches('button')) {
const key = e.target;
const action = key.dataset.action;
const keyContent = key.textContent;
const displayedNum = display.textContent;
// Clear all pressed classes
Array.from(key.parentNode.children).forEach(k => k.classList.remove('pressed'));
// Handling number keys and decimal
if (!action) {
if (displayedNum === '0' || previousKeyType === 'operator' || previousKeyType === 'calculate') {
display.textContent = keyContent;
} else {
display.textContent = displayedNum + keyContent;
}
previousKeyType = 'number';
calculator.dataset.previousKeyType = 'number';
}
// Handling operators
if (
action === 'add' ||
action === 'minus' ||
action === 'divide' ||
action === 'multiply'
) {
key.classList.add('pressed');
calculator.dataset.previousKeyType = 'operator';
previousKeyType = 'operator';
calculator.dataset.firstValue = displayedNum;
calculator.dataset.operator = action;
}
// Handling decimal
if (action === 'decimal') {
if (!displayedNum.includes('.')) {
display.textContent = displayedNum + '.';
} else if (previousKeyType === 'operator' || previousKeyType === 'calculate') {
display.textContent = '0.';
}
calculator.dataset.previousKeyType = 'decimal';
}
// Handling clear key
if (action === 'clear') {
display.textContent = '0';
previousKeyType = 'clear';
calculator.dataset.previousKeyType = 'clear';
calculator.dataset.firstValue = '';
calculator.dataset.operator = '';
}
// Handling equal key
if (action === 'calculate') {
const firstValue = calculator.dataset.firstValue;
const operator = calculator.dataset.operator;
const secondValue = displayedNum;
if (firstValue && operator) {
const calcValue = calculate(firstValue, operator, secondValue);
display.textContent = calcValue;
calculator.dataset.firstValue = calcValue;
}
previousKeyType = 'calculate';
calculator.dataset.previousKeyType = 'calculate';
}
}
});
// Function to perform calculations
const calculate = (n1, operator, n2) => {
let result = '';
if (operator === 'add') {
result = parseFloat(n1) + parseFloat(n2);
} else if (operator === 'minus') {
result = parseFloat(n1) - parseFloat(n2);
} else if (operator === 'multiply') {
result = parseFloat(n1) * parseFloat(n2);
} else if (operator === 'divide') {
result = parseFloat(n1) / parseFloat(n2);
}
return result;
};