I am learning React by writing a countdown like app, everything works fine but I have a problem, whenever I try to navigate to another page without pressing pause, I will get error 'can only update a mount or mounting component, this usually means you called setState() on an Unmount component.' what does it mean and how can I fix it? thank you very much in advance.
import React from 'react';
import SubjectForm from './SubjectForm';
import {connect} from 'react-redux';
import {editSubject, removeSubject} from '../actions/subjectAction';
class StartPage extends React.Component{
constructor(props){
super(props);
this.state={count:this.props.subject.hour*60*60+this.props.subject.minute*60,
name:'run',
alert:''
};
this.timer = null;
this.stateChange=this.state.count
this.originTime = this.props.subject.hour*60*60+this.props.subject.minute*60;
}
setStateCountdown=(num)=>{
this.setState({count:num})
}
setStateAlert=(text)=>{
this.setState({alert:text})
}
setStateButtonChange=(text)=>{
this.setState({name:text})
}
begin=()=>{
clearInterval(this.timer)
this.timer=setInterval(()=>{
this.stateChange--
this.setStateCountdown(this.stateChange)
let timeLeft=this.stateChange
if(this.stateChange<0){
this.setStateAlert('done');
clearInterval(this.timer);
return;
}
let hourleft = Math.floor(timeLeft / (60 * 60));
let minuteleft = Math.floor((timeLeft % (60 * 60)) / 60);
let secondleft = timeLeft % 60;
this.setStateAlert(`you have ${hourleft} hour ${minuteleft} minute and ${secondleft} second until reaching your goal`);
},1000);
}
pause=()=>{
clearInterval(this.timer)
console.log(this.state.count)
if(this.state.count<this.originTime){
this.setStateButtonChange('resume')
}
}
reset=()=>{
const pressConfirm = confirm('are you sure you want to reset?')
if(pressConfirm===true){
console.log(this.state.count)
clearInterval(this.timer)
this.stateChange=this.originTime;
this.callbackFuncCountdown(this.stateChange)
this.callbackFunctionButtonChange('run')
this.callbackFunctionAlert('lets begin your study again')
}
}
render(){
return(
<div>
<SubjectForm subject={this.props.subject}/>
<button onClick = {this.begin}>{this.state.name}</button>
<button onClick = {this.pause}>pause</button>
<button onClick = {this.reset}>reset</button>
<h3>{this.state.alert}</h3>
</div>
);
}
};
const mapStateToProps = (state,props)=>{
return{
subject: state.subjects.find((subject)=>subject.id===props.match.params.id)
};
}
export default connect(mapStateToProps)(StartPage);
I am sorry for the long code.
Navigating to another page unmount your component, but the function in
setInterval()
is still running and trying to update the unmounted component state, you have 2 options depending on the behaviour you need for your app :1 - Use redux to store your timer and dispatch actions to start/pause/stop it anywhere (timer will continue if you navigate)
2 - clearInterval in
componentWillUnmount()
method of your component (reset or stop timer if you navigate)