こんにちは、私は最近、反応を学び始めました。私は単純な反応アプリを作ろうとしている、私が作っているコンポーネントの一つはストップウォッチです。今私は親コンポーネントから私のStopwatchコンポーネントに渡した小道具を使って問題を抱えています。 これは私のアプリのコンポーネントです:リアストップウォッチ
import React, {Component} from 'react';
import { Form,FormControl, Button} from 'react-bootstrap';
// Compoenents
import Clock from './Clock';
import Stopwatch from './Stopwatch';
// CSS
import './css/app.css';
class App extends Component {
constructor(props) {
super(props);
this.state = {
deadline: 'December 31, 2017',
newDeadline: '',
timer: 60,
newTimer: ''
}
}
changeDeadline() {
this.setState({deadline: this.state.newDeadline});
}
checkTimer() {
this.setState({timer: this.state.newTimer});
}
render() {
return (
<div className='app'>
<div className='appTitle'>
Countdown to {this.state.deadline}
</div>
<Clock
deadline={this.state.deadline} // This is how we send props to our child component
/>
<Form inline={true} >
<FormControl
className='deadlineInput'
type="text"
placeholder='Write date to check'
onChange={event => this.setState({newDeadline: event.target.value})}
onKeyPress={event => {
if(event.key === 'Enter') {
event.preventDefault();
this.changeDeadline();;
}
}}
/>
<Button
onClick={() => this.changeDeadline()}
>
Submit
</Button>
</Form>
<div className='stopwatchTitle'>
Use stopwatch to {this.state.timer} seconds
</div>
<Stopwatch
timer={this.state.timer} // This is how we send props to our child component
/>
<Form inline={true} >
<FormControl
className='timerInput'
type="text"
placeholder='Set your timer'
onChange={event => this.setState({newTimer: event.target.value})}
onKeyPress={event => {
if(event.key === 'Enter') {
event.preventDefault();
this.checkTimer();;
}
}}
/>
<Button
onClick={() => this.checkTimer()}
>
Start
</Button>
</Form>
</div>
)
}
}
export default App;
、これは私のストップウォッチコンポーネントです:
import React, {Component} from 'react';
// CSS
import './css/stopwatch.css';
class Stopwatch extends Component {
constructor(props) {
super(props);
this.state = {
stopWatch: 0,
}
this.decrementer = null;
}
// This function runs before component completely renders on the application (otherwise we might create infinite loop)
componentWillMount() {
this.startTimer(this.props.timer);
}
startTimer(timer) {
let stopWatch = timer;
console.log(stopWatch)
this.decrementer = setInterval(() =>
this.setState({
stopWatch: this.state.stopWatch - 1
})
, 1000);
}
render() {
return (
<div>
<div className='myStopwatch'> {this.state.stopWatch} seconds</div>
</div>
)
}
}
export default Stopwatch;
は今のAppは常に0からカウントを開始し、マイナスになります。親から子コンポーネントに渡すタイマーの小道具を使用するにはどうすればよいですか?ストップウォッチの開始時間をタイマーの小道具と同じにしたい。それが0に達するとカウントダウンを止める方法も?
を?この仕事に勝った? - 'if(this.state.stopWatch === 0){//デクリメントしない? } ' – vijayst