Created
January 26, 2021 22:04
-
-
Save gjorgiev/937fce6cc81bea58e807f5146efee2c6 to your computer and use it in GitHub Desktop.
Calculator Component
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, {Component} from 'react'; | |
import Button from './Button'; | |
import './Calculator.css'; | |
import Display from './Display'; | |
import Keypad from './Keypad'; | |
class Calculator extends Component { | |
constructor() { | |
super(); | |
this.state = { data: ''} | |
} | |
calculate = () => { | |
try { | |
const result = eval(this.state.data); | |
this.setState({data: result}); | |
} catch (e) { | |
this.setState({data: 'error'}) | |
} | |
} | |
handleClick = e => { | |
const value = e.target.getAttribute('data-value'); | |
switch(value) { | |
case 'clear': | |
this.setState({ data: ''}); | |
break; | |
case 'equal': | |
this.calculate(); | |
break; | |
default: | |
this.setState({ data: this.state.data + value}); | |
} | |
} | |
render(){ | |
return( | |
<div className="Calculator"> | |
<Display data={this.state.data}/> | |
<Keypad> | |
<Button onClick={this.handleClick} label="C" value="clear" /> | |
<Button onClick={this.handleClick} label="7" value="7" /> | |
<Button onClick={this.handleClick} label="4" value="4" /> | |
<Button onClick={this.handleClick} label="1" value="1" /> | |
<Button onClick={this.handleClick} label="0" value="0" /> | |
<Button onClick={this.handleClick} label="/" value="/" /> | |
<Button onClick={this.handleClick} label="8" value="8" /> | |
<Button onClick={this.handleClick} label="5" value="5" /> | |
<Button onClick={this.handleClick} label="2" value="2" /> | |
<Button onClick={this.handleClick} label="." value="." /> | |
<Button onClick={this.handleClick} label="x" value="*" /> | |
<Button onClick={this.handleClick} label="9" value="9" /> | |
<Button onClick={this.handleClick} label="6" value="6" /> | |
<Button onClick={this.handleClick} label="3" value="3" /> | |
<Button onClick={this.handleClick} label="" value="null" /> | |
<Button onClick={this.handleClick} label="-" value="-" /> | |
<Button onClick={this.handleClick} label="+" size="2" value="+" /> | |
<Button onClick={this.handleClick} label="=" size="2" value="equal" /> | |
</Keypad> | |
</div> | |
); | |
} | |
} | |
export default Calculator; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment