-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.js
55 lines (49 loc) · 1.22 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
import React, {Component} from 'react';
import {StyleSheet, Text, View, AppState, Button} from 'react-native';
import Timer from './timer.js';
var short = require ('short-uuid');
import _ from 'lodash';
const COUNTDOWN_TIME_MINS = 1;
export default class App extends Component {
state = {
timers: [],
};
constructor (props) {
super (props);
this.timers = [];
}
addTimer () {
const key = short.generate ();
this.setState ({timers: _.concat (this.state.timers, key)});
}
onDeletePress (timer) {
this.setState ({
timers: this.state.timers.filter (key => key !== timer.props.id),
});
}
render () {
return (
<View style={styles.container}>
{this.state.timers.map (timer => {
return (
<Timer
countdownTimeMin={COUNTDOWN_TIME_MINS}
key={timer}
id={timer}
onDeletePress={timer => this.onDeletePress (timer)}
/>
);
})}
<Button title="Add" onPress={this.addTimer.bind (this)} />
</View>
);
}
}
const styles = StyleSheet.create ({
container: {
flex: 1,
backgroundColor: '#fff',
alignItems: 'center',
justifyContent: 'center',
},
});