-
Notifications
You must be signed in to change notification settings - Fork 78
/
Copy pathDisplay.js
55 lines (48 loc) · 1.7 KB
/
Display.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
class Display {
constructor(displayValorAnterior, displayValorActual) {
this.displayValorActual = displayValorActual;
this.displayValorAnterior = displayValorAnterior;
this.calculador = new Calculadora();
this.tipoOperacion = undefined;
this.valorActual = '';
this.valorAnterior = '';
this.signos = {
sumar: '+',
dividir: '%',
multiplicar: 'x',
restar: '-',
}
}
borrar() {
this.valorActual = this.valorActual.toString().slice(0,-1);
this.imprimirValores();
}
borrarTodo() {
this.valorActual = '';
this.valorAnterior = '';
this.tipoOperacion = undefined;
this.imprimirValores();
}
computar(tipo) {
this.tipoOperacion !== 'igual' && this.calcular();
this.tipoOperacion = tipo;
this.valorAnterior = this.valorActual || this.valorAnterior;
this.valorActual = '';
this.imprimirValores();
}
agregarNumero(numero) {
if(numero === '.' && this.valorActual.includes('.')) return
this.valorActual = this.valorActual.toString() + numero.toString();
this.imprimirValores();
}
imprimirValores() {
this.displayValorActual.textContent = this.valorActual;
this.displayValorAnterior.textContent = `${this.valorAnterior} ${this.signos[this.tipoOperacion] || ''}`;
}
calcular() {
const valorAnterior = parseFloat(this.valorAnterior);
const valorActual = parseFloat(this.valorActual);
if( isNaN(valorActual) || isNaN(valorAnterior) ) return
this.valorActual = this.calculador[this.tipoOperacion](valorAnterior, valorActual);
}
}