-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathApp.js
162 lines (143 loc) · 3.59 KB
/
App.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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
import React from 'react';
import { StyleSheet, View, ScrollView, Text, KeyboardAvoidingView } from 'react-native';
import uuidv4 from 'uuid/v4';
import EditableTimer from './components/EditableTimer';
import ToggleableTimerForm from './components/ToggleableTimerForm';
import { newTimer } from './utils/TimerUtils';
export default class App extends React.Component {
state = {
timers: [
// {
// title: 'Mow the lawn',
// project: 'House Chores',
// id: uuidv4(),
// elapsed: 5456099,
// isRunning: true
// },
// {
// title: 'Bake Squash',
// project: 'Kitchen chores',
// id: uuidv4(),
// elapsed: 1273998,
// isRunning: false
// }
]
}
componentDidMount = () => {
const TIME_INTERVAL = 1000;
this.intervalId = setInterval(() => {
const { timers } = this.state;
this.setState({
timers: timers.map(timer => {
const { elapsed, isRunning } = timer;
return {
...timer,
elapsed: isRunning ? elapsed + TIME_INTERVAL : elapsed
}
})
})
}, TIME_INTERVAL)
}
componentWillUnmount = () => {
clearInterval(this.intervalId);
}
handleFormSubmit = attrs => {
const { timers } = this.state;
this.setState({
timers: timers.map(timer => {
if (timer.id === attrs.id) {
const { title, project } = attrs;
return {
...timer,
title,
project,
}
} else {
return timer
}
})
})
}
handleRemovePress = timerId => {
this.setState({
timers: this.state.timers.filter(t => t.id !== timerId)
})
}
handleCreateSubmit = timer => {
const { timers } = this.state;
this.setState({
timers: [newTimer(timer), ...timers]
})
}
toggleTimer = timerId => {
this.setState(prevState => {
const { timers } = this.state;
return {
timers: timers.map(timer => {
const { id, isRunning } = timer;
if (id === timerId) {
return{
...timer,
isRunning: !isRunning,
};
}
return timer;
})
}
})
}
renderEditableTimers = () => (
this.state.timers.map(({ title, project, id, elapsed, isRunning}) => (
<EditableTimer
key={ id }
id={id}
title={title}
project={project}
elapsed={elapsed}
isRunning={isRunning}
onFormSubmit={this.handleFormSubmit}
onRemovePress={this.handleRemovePress}
onStartPress={this.toggleTimer}
onStopPress={this.toggleTimer}
/>
))
);
render() {
const { timers } = this.state;
return(
<View style={styles.appContainer}>
<View style={styles.titleContainer}>
<Text style={styles.title}>Timers</Text>
</View>
<KeyboardAvoidingView behavior="padding" style={styles.timerListContainer}>
<ScrollView style={styles.timerList}>
<ToggleableTimerForm isOpen={false} onFormSubmit={this.handleCreateSubmit}/>
{ this.renderEditableTimers() }
</ScrollView>
</KeyboardAvoidingView>
</View>
)
}
}
const styles = StyleSheet.create({
appContainer: {
flex: 1,
},
titleContainer: {
paddingTop: 35,
paddingBottom: 15,
borderBottomWidth: 1,
borderBottomColor: '#D6D7DA',
},
title: {
fontSize: 18,
fontWeight: 'bold',
textAlign: 'center',
},
timerList: {
paddingBottom: 15,
},
timerListContainer: {
flex: 1,
}
});