-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtimer.js
81 lines (76 loc) · 2.25 KB
/
timer.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
import React, {Component} from 'react';
import {View, Text, Button, AppState} from 'react-native';
class Timer extends Component {
constructor (props) {
super (props);
this.state = {
appState: AppState.currentState,
countdownTimeMin: props.countdownTimeMin,
currentTime: null,
backgroundTime: null,
};
this.timerRef;
}
componentDidMount () {
this.setTimer (this.state.countdownTimeMin * 60);
AppState.addEventListener ('change', this._handleAppStateChange);
}
_handleAppStateChange = nextAppState => {
if (nextAppState === 'background' || nextAppState === 'inactive') {
this.setState ({appState: nextAppState, backgroundTime: Date.now ()});
}
if (
this.state.appState.match (/inactive|background/) &&
nextAppState === 'active'
) {
console.log ('App has come to the foreground!');
// resume execution
const timeResumed = Date.now ();
const timeInBackground = parseInt (
(timeResumed - this.state.backgroundTime) / 1000
);
if (this.state.currentTime - timeInBackground > 0) {
// timer has not reached 0 yet
this.setState ({
currentTime: this.state.currentTime - timeInBackground,
});
} else {
this.setState ({
currentTime: 0,
});
}
}
};
setTimer (countdownSeconds) {
this.setState ({currentTime: countdownSeconds});
this.timerRef = setInterval (this.updateTimer.bind (this), 200);
}
stopTimer () {
clearInterval (this.timerRef);
}
updateTimer () {
if (this.state.currentTime <= 0) {
this.stopTimer ();
} else {
this.setState ({currentTime: this.state.currentTime - 1});
}
}
componentWillUnmount () {
clearInterval (this.timerRef);
AppState.removeEventListener ('change', this._handleAppStateChange);
}
deleteTimer () {
this.props.onDeletePress (this);
}
render () {
const minutes = parseInt (this.state.currentTime / 60);
const seconds = this.state.currentTime - minutes * 60;
return (
<View style={{flexDirection: 'row'}}>
<Text>{minutes} Mins {seconds} Seconds </Text>
<Button title="Delete" onPress={this.deleteTimer.bind (this)} />
</View>
);
}
}
export default Timer;