-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.android.js
152 lines (141 loc) · 4.27 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
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
'use strict';
var React = require('react-native');
var {
AppRegistry,
StyleSheet,
Text,
View,
NativeModules,
TouchableHighlight,
ListView
} = React;
var cordova = require('react-native-cordova-plugin');
window.cordova = cordova;
window.react = React;
var EasyTest = React.createClass({
log: function(status) {
return function(res) {
this.setState({
status: status,
result: res
})
}
},
getInitialState: function() {
return {
result: '',
status: 'Initialized'
};
},
getPlugins: function() {
var self = this;
var logDevice = function(status) {
return function(res) {
self.setState({
status: status,
result: res.model
})
}
}
var log = function(status) {
return function(res) {
self.setState({
status: status,
result: res
})
}
}
var ds = new ListView.DataSource({
rowHasChanged: (r1, r2) => r1 !== r2
});
//return ds.cloneWithRows(['row 1', 'row 2']);
return ds.cloneWithRows([{
name: 'Device (cordova-plugin-device)',
fn: function() {
cordova.device.getInfo(logDevice('success'), logDevice('fail'));
}
}, {
name: 'Network Info (cordova-plugin-network-info)',
fn: function() {
cordova.navigator.connection.getInfo(log('success'), log('fail'));
}
}, {
name: 'Pick Contact (cordova-plugin-contact)',
fn: function() {
cordova.navigator.contacts.pickContact(log('success'), log('fail'));
}
}, {
name: 'Take Picture (cordova-plugin-camera)',
fn: function() {
cordova.navigator.camera.getPicture(log('success'), log('fail'), {
saveToPhotoAlbum: true,
});
}
}, {
name: 'Barcode Scanner (phonegap-plugin-barcodescanner)',
fn: function() {
cordova.cordova.plugins.barcodeScanner.scan(log('success'), log('fail'));
}
}, {
name: 'Show Dialogs (cordova-plugins-dialog)',
fn: function() {
cordova.navigator.notification.alert('This message was created by the cordova-plugin-dialog', function() {
log('success')('Alert dialog closed successuflly');
}, 'React Native + Cordova Plugins', 'Close this dialog')
}
}, {
name: 'Get Direction (cordova-plugin-device-orientation)',
fn: function() {
cordova.navigator.compass.getCurrentHeading(log('success'), log('fail'));
}
}, {
name: 'Get Preferred Language (cordova-plugin-globalization)',
fn: function() {
cordova.navigator.globalization.getPreferredLanguage(log('success'), log('fail'));
}
}])
},
renderRow: function(plugin) {
return (
<TouchableHighlight style={styles.button} onPress={plugin.fn}>
<Text>{plugin.name}</Text>
</TouchableHighlight>
)
},
render: function() {
return (
<View><Text style={styles.heading}></Text>
<ListView dataSource={this.getPlugins()} renderRow={this.renderRow}/>
<Text style={styles.status}>{this.state.status}</Text>
<Text style={styles.result}>{this.state.result}</Text>
</View>
)
},
});
var styles = {
heading: {
fontSize: 20,
margin: 10,
textAlign: 'center'
},
button: {
borderWidth: 1,
borderColor: '#ccc',
margin: 5,
padding: 5
},
status: {
marginTop: 30,
textAlign: 'center'
},
result: {
backgroundColor: '#000000',
color: '#FFFFFF',
fontFamily: 'courier',
fontSize: 16,
fontWeight: 'bold',
margin: 10,
padding: 20
}
}
AppRegistry.registerComponent('EasyTest', () => EasyTest);