Skip to content

Instantly share code, notes, and snippets.

@mahdiyazdani
Last active September 25, 2018 21:50
Show Gist options
  • Save mahdiyazdani/9a5fd3dbec7181e7d07319ad12ac85ee to your computer and use it in GitHub Desktop.
Save mahdiyazdani/9a5fd3dbec7181e7d07319ad12ac85ee to your computer and use it in GitHub Desktop.
componentWillReceiveProps
import React from 'react';
import ReactDOM from 'react-dom';
import { TopNumber } from './TopNumber';
import { Display } from './Display';
import { Target } from './Target';
import { random, clone } from './helpers';
const fieldStyle = {
position: 'absolute',
width: 250,
bottom: 60,
left: 10,
height: '60%',
};
class App extends React.Component {
constructor(props) {
super(props);
this.state = {
game: false,
targets: {},
latestClick: 0
};
this.intervals = null;
this.hitTarget = this.hitTarget.bind(this);
this.startGame = this.startGame.bind(this);
this.endGame = this.endGame.bind(this);
}
createTarget(key, ms) {
ms = ms || random(500, 2000);
this.intervals.push(setInterval(function(){
let targets = clone(this.state.targets);
let num = random(1, 1000*1000);
targets[key] = targets[key] != 0 ? 0 : num;
this.setState({ targets: targets });
}.bind(this), ms));
}
hitTarget(e) {
if (e.target.className != 'target') return;
let num = parseInt(e.target.innerText);
for (let target in this.state.targets) {
let key = Math.random().toFixed(4);
this.createTarget(key);
}
this.setState({ latestClick: num });
}
startGame() {
this.createTarget('first', 750);
this.setState({
game: true
});
}
endGame() {
this.intervals.forEach((int) => {
clearInterval(int);
});
this.intervals = [];
this.setState({
game: false,
targets: {},
latestClick: 0
});
}
componentWillMount() {
this.intervals = [];
}
render() {
let buttonStyle = {
display: this.state.game ? 'none' : 'inline-block'
};
let targets = [];
for (let key in this.state.targets) {
targets.push(
<Target
number={this.state.targets[key]}
key={key} />
);
}
return (
<div>
<TopNumber number={this.state.latestClick} game={this.state.game} />
<Display number={this.state.latestClick} />
<button onClick={this.startGame} style={buttonStyle}>
New Game
</button>
<div style={fieldStyle} onClick={this.hitTarget}>
{targets}
</div>
</div>
);
}
}
ReactDOM.render(
<App />,
document.getElementById('app')
);
import React from 'react';
import ReactDOM from 'react-dom';
const yellow = 'rgb(255, 215, 18)';
export class TopNumber extends React.Component {
constructor(props) {
super(props);
this.state = { 'highest': 0 };
}
componentWillReceiveProps(nextProps) {
if (nextProps.number > this.state.highest) {
// nextProps.number is the new highest number so far!
// Display it!
this.setState({ 'highest': nextProps.number });
}
}
render() {
return (
<h1>
Top Number: {this.state.highest}
</h1>
);
}
}
TopNumber.propTypes = {
number: React.PropTypes.number,
game: React.PropTypes.bool
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment