-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
101 lines (89 loc) · 3.24 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
const calculatorDisplay = document.querySelector('h1');
const inputBtns = document.querySelectorAll('button');
const clearBtn = document.getElementById('clear-btn');
// Calculate first and second values dependent on operator
const calculate = {
'/' : (firstNumber, secondNumber) => firstNumber / secondNumber,
'*' : (firstNumber, secondNumber) => firstNumber * secondNumber,
'+' : (firstNumber, secondNumber) => firstNumber + secondNumber,
'-' : (firstNumber, secondNumber) => firstNumber - secondNumber,
'=' : (firstNumber, secondNumber) => secondNumber,
};
let firstValue = 0;
let operatorValue = '';
let awaitingNextValue = false;
function sendNumberValue(number){
// Replace current display value if first value is entered
if(awaitingNextValue){
calculatorDisplay.textContent = number;
awaitingNextValue = false;
} else {
// if current display value is 0, replace it, if not add number
const displayValue = calculatorDisplay.textContent;
calculatorDisplay.textContent = displayValue === '0' ? number : displayValue + number;
}
}
// Add Dismal
function addDecimal(){
// if operator pressed, don't add decimal
if(awaitingNextValue) return;
// if no decimal, add one
if(!calculatorDisplay.textContent.includes('.')){
calculatorDisplay.textContent = `${calculatorDisplay.textContent}.`;
}
}
// Use operator
function useOperator(operator){
const currentValue = Number(calculatorDisplay.textContent);
// Prevent multiple operators
// if(operatorValue && awaitingNextValue) {
// operatorValue = operator;
// return;
// };
// Assign firstValue if no value
if(!firstValue){
firstValue = currentValue;
} else {
console.log(firstValue, operatorValue, currentValue);
const calculation = calculate[operatorValue](firstValue, currentValue);
// console.log("Calculation:", calculation);
calculatorDisplay.textContent = calculation;
firstValue = calculation;
}
// Ready for next value, store opretor
awaitingNextValue = true;
operatorValue = operator;
// Indication for what operator is using
operatorIndicator(operator);
}
function operatorIndicator(operator){
inputBtns.forEach(inputBtn => {
if(inputBtn.value === operator){
inputBtn.classList.add('red');
} else {
inputBtn.classList.remove('red');
}
})
}
// Reset all display values
function resetAll(){
inputBtns.forEach(inputBtn => {
inputBtn.classList.remove('red')
});
firstValue = 0;
operatorValue = '';
awaitingNextValue = false;
calculatorDisplay.textContent = '0';
}
// Add Events Listerns for numbers, operators, dicimal buttons
inputBtns.forEach(inputBtn => {
if(inputBtn.classList.length === 0){
inputBtn.addEventListener('click', () => {sendNumberValue(inputBtn.value)})
}else if (inputBtn.classList.contains('operator')){
inputBtn.addEventListener('click', () => {useOperator(inputBtn.value)})
}else if (inputBtn.classList.contains('decimal')){
inputBtn.addEventListener('click', () => addDecimal());
}
});
// Event listener
clearBtn.addEventListener('click', resetAll)