-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
148 lines (125 loc) · 4.23 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
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
let firstOperand = ''
let secondOperand = ''
let CurrentOperation = null
let ShouldResetScreen = false
const NumberButtons = document.querySelectorAll('[data-number')
const OperatorButtons = document.querySelectorAll('[data-operator]')
const EqualsButton = document.getElementById('equalsBtn')
const ClearButton = document.getElementById('clearBtn')
const DeleteButton = document.getElementById('deleteBtn')
const PointButton = document.getElementById('pointBtn')
const LastOperatorScreen = document.getElementById('lastOperationScreen')
const CurrentOperationScreen = document.getElementById('currentOperationScreen')
window.addEventListener('keydown', handleKeyboardInput)
EqualsButton.addEventListener('click', evaluate)
ClearButton.addEventListener('click', clear)
DeleteButton.addEventListener('click', deleteNumber)
PointButton.addEventListener('click', appendPoint)
NumberButtons.forEach((button) =>
button.addEventListener('click', () => appendNumber(button.textContent))
)
OperatorButtons.forEach((button) =>
button.addEventListener('click', () => setOperation(button.textContent))
)
function appendNumber(number) {
if (CurrentOperationScreen.textContent === '0' || ShouldResetScreen)
resetScreen()
CurrentOperationScreen.textContent += number
}
function resetScreen() {
CurrentOperationScreen.textContent = ''
ShouldResetScreen = false
}
function clear() {
CurrentOperationScreen.textContent = '0'
LastOperatorScreen.textContent = ''
firstOperand = ''
secondOperand = ''
CurrentOperation = null
}
function appendPoint() {
if (ShouldResetScreen) resetScreen()
if (CurrentOperationScreen.textContent === '')
CurrentOperationScreen.textContent = '0'
if (CurrentOperationScreen.textContent.includes('.')) return
CurrentOperationScreen.textContent += '.'
}
function deleteNumber() {
CurrentOperationScreen.textContent = CurrentOperationScreen.textContent
.toString()
.slice(0, -1)
}
function setOperation(operator) {
console.log(`Operator selected: ${operator}`)
if (CurrentOperation !== null) evaluate()
firstOperand = CurrentOperationScreen.textContent
CurrentOperation = operator
LastOperatorScreen.textContent = `${firstOperand} ${CurrentOperation}`
ShouldResetScreen = true
}
function evaluate() {
if (CurrentOperation === null || ShouldResetScreen) return
if (CurrentOperation === '/' && CurrentOperationScreen.textContent === '0') {
alert("You can't divide by 0!!!")
return
}
secondOperand = Number(CurrentOperationScreen.textContent)
firstOperand = Number(firstOperand)
let result = operate(CurrentOperation, firstOperand, secondOperand)
if (result !== null && !isNaN(result)) {
CurrentOperationScreen.textContent = roundResult(result)
LastOperatorScreen.textContent = `${firstOperand} ${CurrentOperation} ${secondOperand} =`
} else {
console.log('Invalid result or division by zero')
CurrentOperationScreen.textContent = "Error"
}
CurrentOperation = null
ShouldResetScreen = true
}
function roundResult(number) {
return Math.round(number * 1000) / 1000
}
function handleKeyboardInput(e) {
if (e.key >= 0 && e.key <=9) appendNumber(e.key)
if (e.key === '.') appendPoint()
if (e.key === '=' || e.key === 'Enter') evaluate()
if (e.key === 'Backspace') deleteNumber()
if (e.key === 'Escape') clear()
if (e.key === '+' || e.key === '-' || e.key === '*' || e.key === '/')
setOperation(convertOperator(e.key))
}
function convertOperator(keyboardOperator) {
if (keyboardOperator === '/') return '÷'
if (keyboardOperator === '*') return '×'
if (keyboardOperator === '-') return '-'
if (keyboardOperator === '+') return '+'
}
function add(a, b) {
return a + b
}
function subtract(a, b) {
return a - b
}
function multiply(a, b) {
return a * b
}
function divide(a, b) {
return a / b
}
function operate(operator, a, b) {
a = Number(a)
b = Number(b)
switch (operator) {
case '+':
return add(a, b)
case '-':
return subtract(a, b)
case '*':
return multiply(a, b)
case '/':
if (b === 0) return null
else return divide(a, b)
default:
return null
}
}