1
1
import { Component } from 'react' ;
2
2
import NumberKey from '../Key/NumberKey/NumberKey' ;
3
3
import ResultKey from '../Key/ResultKey/ResultKey' ;
4
- import OperatorKey from '../Key/OperatorKey/Operator ' ;
4
+ import OperatorKey from '../Key/OperatorKey/OperatorKey ' ;
5
5
import DotKey from '../Key/DotKey/DotKey' ;
6
6
import ClearKey from '../Key/ClearKey/ClearKey' ;
7
7
import Display from '../Display/Display' ;
@@ -14,30 +14,36 @@ class Calculator extends Component {
14
14
input : '' ,
15
15
result : '' ,
16
16
} ;
17
- this . addKeyToInput = this . addKeyToInput . bind ( this ) ;
18
- this . displayResult = this . displayResult . bind ( this ) ;
19
- this . clearInput = this . clearInput . bind ( this ) ;
20
- this . clearDisplay = this . clearDisplay . bind ( this ) ;
17
+ this . setInput = this . setInput . bind ( this ) ;
18
+ this . setResult = this . setResult . bind ( this ) ;
21
19
}
22
20
23
- addKeyToInput ( key ) {
24
- this . setState ( ( { input, result } ) => ( {
25
- input : `${ input } ${ key } ` ,
26
- result : `${ result } ${ key } ` ,
27
- } ) ) ;
21
+ setInput ( input ) {
22
+ this . setState ( ( ) => ( { input } ) ) ;
28
23
}
29
24
30
- displayResult ( result ) {
25
+ setResult ( result ) {
31
26
this . setState ( ( ) => ( { result } ) ) ;
32
27
}
33
28
34
- clearInput ( ) {
35
- this . setState ( ( ) => ( { input : '' } ) ) ;
36
- }
29
+ // addKeyToInput(key) {
30
+ // this.setState(({ input, result }) => ({
31
+ // input: `${input}${key}`,
32
+ // result: `${result}${key}`,
33
+ // }));
34
+ // }
37
35
38
- clearDisplay ( ) {
39
- this . setState ( ( ) => ( { result : '0' } ) ) ;
40
- }
36
+ // displayResult(result) {
37
+ // this.setState(() => ({ result }));
38
+ // }
39
+
40
+ // clearInput() {
41
+ // this.setState(() => ({ input: '' }));
42
+ // }
43
+
44
+ // clearDisplay() {
45
+ // this.setState(() => ({ result: '0' }));
46
+ // }
41
47
42
48
render ( ) {
43
49
const { input, result } = this . state ;
@@ -53,32 +59,35 @@ class Calculator extends Component {
53
59
style : clearStyle ,
54
60
key : { id : clearId , value : clearValue } ,
55
61
} = CLEAR ;
56
-
57
62
const numberKeys = NUMBERS . keys . map ( ( { id, value } ) => (
58
63
< NumberKey
59
64
id = { id }
60
65
value = { value }
61
66
key = { id }
62
67
style = { NUMBERS . style }
63
- addKeyToInput = { this . addKeyToInput }
68
+ input = { input }
69
+ setInput = { this . setInput }
70
+ result = { result }
71
+ setResult = { this . setResult }
64
72
/>
65
73
) ) ;
66
-
67
74
const operatorKeys = OPERATORS . keys . map ( ( { id, value } ) => (
68
75
< OperatorKey
69
76
id = { id }
70
77
value = { value }
71
78
key = { id }
72
79
style = { OPERATORS . style }
73
- addKeyToInput = { this . addKeyToInput }
80
+ input = { input }
81
+ setInput = { this . setInput }
82
+ setResult = { this . setResult }
74
83
/>
75
84
) ) ;
76
85
77
86
return (
78
87
< div >
79
88
< ClearKey
80
- clearInput = { this . clearInput }
81
- clearDisplay = { this . clearDisplay }
89
+ setInput = { this . setInput }
90
+ setResult = { this . setResult }
82
91
id = { clearId }
83
92
value = { clearValue }
84
93
style = { clearStyle }
@@ -87,7 +96,7 @@ class Calculator extends Component {
87
96
{ numberKeys }
88
97
< DotKey
89
98
input = { input }
90
- addKeyToInput = { this . addKeyToInput }
99
+ setInput = { this . setInput }
91
100
id = { dotId }
92
101
value = { dotValue }
93
102
style = { dotStyle }
@@ -96,7 +105,7 @@ class Calculator extends Component {
96
105
{ operatorKeys }
97
106
< ResultKey
98
107
input = { input }
99
- displayResult = { this . displayResult }
108
+ setResult = { this . setResult }
100
109
id = { resultId }
101
110
value = { resultValue }
102
111
style = { resultStyle }
0 commit comments