-
Notifications
You must be signed in to change notification settings - Fork 110
/
Copy pathindex.android.js
113 lines (104 loc) · 2.69 KB
/
index.android.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
/**
* Sample React Native App
* https://github.com/facebook/react-native
* @flow
*/
import React, { Component } from "react";
import {
AppRegistry,
TouchableHighlight,
StyleSheet,
Text,
View
} from "react-native";
import BackgroundJob from "react-native-background-job";
const myJobKey = "Hej";
BackgroundJob.register({
jobKey: myJobKey,
job: () => console.log("Background Job fired!")
});
export default class backtest extends Component {
constructor(props) {
super(props);
this.state = { jobs: [] };
}
getAll() {
BackgroundJob.getAll({
callback: jobs => {
this.setState({ jobs });
console.log("Jobs:", jobs);
}
});
}
render() {
return (
<View style={styles.container}>
<Text style={styles.welcome}>
Testing BackgroundJob
</Text>
<Text style={styles.instructions}>
Try connecting the device to the developer console, schedule an event and then quit the app.
</Text>
<Text>
Scheduled jobs:
{this.state.jobs.map(({ jobKey }) => jobKey)}
</Text>
<TouchableHighlight
style={styles.button}
onPress={() => {
BackgroundJob.schedule({
jobKey: myJobKey,
period: 5000,
timeout: 5000,
networkType: BackgroundJob.NETWORK_TYPE_UNMETERED
});
this.getAll();
}}
>
<Text>Schedule</Text>
</TouchableHighlight>
<TouchableHighlight
style={styles.button}
onPress={() => {
BackgroundJob.cancel({ jobKey: myJobKey });
this.getAll();
}}
>
<Text>Cancel</Text>
</TouchableHighlight>
<TouchableHighlight
style={styles.button}
onPress={() => {
BackgroundJob.cancelAll();
this.getAll();
}}
>
<Text>CancelAll</Text>
</TouchableHighlight>
<TouchableHighlight
style={styles.button}
onPress={() => {
BackgroundJob.getAll({ callback: console.log });
}}
>
<Text>GetAll</Text>
</TouchableHighlight>
</View>
);
}
componentDidMount() {
this.getAll();
}
}
const styles = StyleSheet.create({
button: { padding: 20, backgroundColor: "#ccc", marginBottom: 10 },
container: {
flex: 1,
justifyContent: "center",
alignItems: "center",
backgroundColor: "#F5FCFF"
},
welcome: { fontSize: 20, textAlign: "center", margin: 10 },
instructions: { textAlign: "center", color: "#333333", marginBottom: 5 }
});
AppRegistry.registerComponent("backtest", () => backtest);