This repository has been archived by the owner on Mar 1, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.android.js
211 lines (198 loc) · 7.17 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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
/**
* Sample React Native App to demonstrate the react-native-datawedge-intents module
* https://github.com/darryncampbell/RNDataWedgeIntentDemo
* @flow
*/
import React, { Component } from 'react';
import {
AppRegistry,
StyleSheet,
Text,
View,
TextInput,
ScrollView,
TouchableOpacity
} from 'react-native';
import DataWedgeIntents from 'react-native-datawedge-intents';
import { DeviceEventEmitter } from 'react-native';
class RNDataWedgeIntentDemo extends Component {
constructor(props)
{
super(props);
this.state = {enumeratedScanners: "Scanners will appear here", barcodeLabelType: "", barcodeData: "", barcodeSource: ""};
this.scanHandler = (deviceEvent) =>
{
console.log(deviceEvent);
this.state.barcodeData = deviceEvent.data;
this.state.barcodeLabelType = deviceEvent.labelType;
this.state.barcodeSource = deviceEvent.source;
this.setState(this.state);
};
this.enumerateScannersHandler = (deviceEvent) =>
{
//console.log(deviceEvent);
var scanners = "";
for (var i = 0; i < deviceEvent.Scanners.length; i++)
scanners = scanners + '[' + deviceEvent.Scanners[i] + '] ';
this.state.enumeratedScanners = scanners;
this.setState(this.state);
}
DeviceEventEmitter.addListener('enumerated_scanners', this.enumerateScannersHandler);
DeviceEventEmitter.addListener('barcode_scan', this.scanHandler);
// NOTE: DataWedge must be configured to send intents with this action for the demo to work (do not specify a category)
// Feel free to modify this call to listen for a different action.
DataWedgeIntents.registerReceiver('com.zebra.dwintents.ACTION', '');
}
render() {
let barcodeData = this.state.barcodeData;
let barcodeType = this.state.barcodeLabelType;
let barcodeSource = this.state.barcodeSource;
let enumeratedScanners = this.state.enumeratedScanners;
return (
<ScrollView>
<View style={styles.container}>
<View style={styles.row}>
<Text style={styles.rowText}>
Scanned Data: {barcodeData} - {barcodeType}
</Text>
</View>
<View style={styles.row}>
<Text style={styles.rowText}>
Soft Scan Trigger:
</Text>
<View style={styles.optionsView}>
<TouchableOpacity onPress={()=>{DataWedgeIntents.sendIntent(DataWedgeIntents.ACTION_SOFTSCANTRIGGER,DataWedgeIntents.START_SCANNING)}}>
<Text style={styles.optionsText}>
START_SCANNING
</Text>
</TouchableOpacity>
<TouchableOpacity onPress={()=>{DataWedgeIntents.sendIntent(DataWedgeIntents.ACTION_SOFTSCANTRIGGER,DataWedgeIntents.STOP_SCANNING)}}>
<Text style={styles.optionsText}>
STOP_SCANNING
</Text>
</TouchableOpacity>
<TouchableOpacity onPress={()=>{DataWedgeIntents.sendIntent(DataWedgeIntents.ACTION_SOFTSCANTRIGGER,DataWedgeIntents.TOGGLE_SCANNING)}}>
<Text style={styles.optionsText}>
TOGGLE_SCANNING
</Text>
</TouchableOpacity>
</View>
</View>
<View style={styles.row}>
<Text style={styles.rowText}>
Scanner Input Plugin:
</Text>
<View style={styles.optionsView}>
<TouchableOpacity onPress={()=>{DataWedgeIntents.sendIntent(DataWedgeIntents.ACTION_SCANNERINPUTPLUGIN,DataWedgeIntents.ENABLE_PLUGIN)}}>
<Text style={styles.optionsText}>
ENABLE_SCANNING
</Text>
</TouchableOpacity>
<TouchableOpacity onPress={()=>{DataWedgeIntents.sendIntent(DataWedgeIntents.ACTION_SCANNERINPUTPLUGIN,DataWedgeIntents.DISABLE_PLUGIN)}}>
<Text style={styles.optionsText}>
DISABLE_SCANNING
</Text>
</TouchableOpacity>
</View>
</View>
<View style={styles.row}>
<Text style={styles.rowText}>
Enumerate Scanners:
</Text>
<View style={styles.optionsView}>
<TouchableOpacity onPress={()=>{DataWedgeIntents.sendIntent(DataWedgeIntents.ACTION_ENUMERATESCANNERS)}}>
<Text style={styles.optionsText}>
ENUMERATE
</Text>
</TouchableOpacity>
<Text style={styles.optionsTextNoColor}>
{enumeratedScanners}
</Text>
</View>
</View>
<View style={styles.row}>
<Text style={styles.rowText}>
Set Default Profile:
</Text>
<View style={styles.optionsView}>
<TextInput style={{width:250}} placeholder="Profile Name" onChangeText={(profileText) => this.setState({profileText})} />
<TouchableOpacity onPress={()=>{DataWedgeIntents.sendIntent(DataWedgeIntents.ACTION_SETDEFAULTPROFILE, this.state.profileText)}}>
<Text style={styles.optionsText}>
SET DEFAULT PROFILE
</Text>
</TouchableOpacity>
</View>
</View>
<View style={styles.row}>
<Text style={styles.rowText}>
Reset Default Profile:
</Text>
<View style={styles.optionsView}>
<TouchableOpacity onPress={()=>{DataWedgeIntents.sendIntent(DataWedgeIntents.ACTION_RESETDEFAULTPROFILE)}}>
<Text style={styles.optionsText}>
RESET DEFAULT PROFILE
</Text>
</TouchableOpacity>
</View>
</View>
<View style={styles.row}>
<Text style={styles.rowText}>
Switch to Profile:
</Text>
<View style={styles.optionsView}>
<TextInput style={{width:250}} placeholder="Profile Name" onChangeText={(switchText) => this.setState({switchText})} />
<TouchableOpacity onPress={()=>{DataWedgeIntents.sendIntent(DataWedgeIntents.ACTION_SWITCHTOPROFILE, this.state.switchText)}}>
<Text style={styles.optionsText}>
SWITCH TO PROFILE
</Text>
</TouchableOpacity>
</View>
</View>
</View>
</ScrollView>
);
}
}
const styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: 'space-between',
alignItems: 'flex-start',
backgroundColor: '#F5FCFF',
},
optionsView: {
alignItems: 'flex-start',
flexDirection: 'column',
margin: 5,
},
rowText: {
fontSize: 18,
textAlign: 'left',
color: '#555555',
margin: 2,
},
optionsText: {
fontSize: 14,
textAlign: 'center',
color: '#ffffff',
backgroundColor: '#0077a0',
padding: 10,
margin: 1,
},
optionsTextNoColor: {
fontSize: 14,
textAlign: 'center',
padding: 10,
margin: 1,
},
row: {
margin: 5,
flexDirection: 'column'
},
instructions: {
textAlign: 'center',
color: '#333333',
marginBottom: 5,
},
});
AppRegistry.registerComponent('RNDataWedgeIntentDemo', () => RNDataWedgeIntentDemo);