-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
110 lines (95 loc) · 2.93 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
class Calculator{
constructor(previusOperandTextElement, currentOperandTextElement){
this.previusOperandTextElement = previusOperandTextElement;
this.currentOperandTextElement = currentOperandTextElement;
this.clear();
}
clear(){
this.currentOperand = '';
this.previusOperand = '';
this.operation = undefined;
}
delete(){
this.currentOperand = this.currentOperand.toString().slice(0, -1)
}
appendNumber(number){
if (number === '.' && this.currentOperand.includes('.')) return
this.currentOperand = this.currentOperand.toString() + number.toString()
}
chooseOperation(operation){
if(this.currentOperand === '')return
if(this.previusOperand !== ''){
this.compute()
}
this.operation = operation
this.previusOperand = this.currentOperand
this.currentOperand = ''
}
compute(){
let computation
const prev = parseFloat(this.previusOperand)
const current = parseFloat(this.currentOperand)
if (isNaN(prev) || isNaN(current)) return
switch (this.operation) {
case '+':
computation = prev + current
break
case '-':
computation = prev - current
break
case '*':
computation = prev * current
break
case '÷':
computation = prev / current
break
default:
return
}
this.currentOperand = computation
this.operation = undefined
this.previusOperand = ''
}
updateDisplay(){
this.currentOperandTextElement.innerHTML = this.currentOperand
if (this.operation != null) {
this.previusOperandTextElement.innerHTML = `${this.previusOperand} ${this.operation}`
}else{
this.previusOperandTextElement.innerHTML = ''
}
}
}
const numberButton = document.querySelectorAll('[data-number]');
const operationButton = document.querySelectorAll('[data-operation]');
const equalbutton = document.querySelector('[data-equal]');
const deletebutton = document.querySelector('[data-delete]');
const allclearbutton = document.querySelector('[data-all-clear]');
const previusOperandTextElement = document.querySelector('[data-previus-operand]');
const currentOperandTextElement = document.querySelector('[data-current-operand]');
const calculator = new Calculator (previusOperandTextElement, currentOperandTextElement)
numberButton.forEach(button =>{
button.addEventListener('click', () =>{
calculator.appendNumber(button.innerHTML)
console.log(button.innerHTML)
calculator.updateDisplay()
})
})
operationButton.forEach(button =>{
button.addEventListener('click', () =>{
calculator.chooseOperation(button.innerHTML)
calculator.updateDisplay()
})
})
equalbutton.addEventListener('click', button =>{
calculator.compute()
calculator.updateDisplay()
console.log(currentOperand)
})
allclearbutton.addEventListener('click', button =>{
calculator.clear()
calculator.updateDisplay()
})
deletebutton.addEventListener('click', button =>{
calculator.delete()
calculator.updateDisplay()
})