-
Notifications
You must be signed in to change notification settings - Fork 63
Expand file tree
/
Copy pathApp.tsx
More file actions
270 lines (238 loc) · 9.76 KB
/
Copy pathApp.tsx
File metadata and controls
270 lines (238 loc) · 9.76 KB
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
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
import React from 'react';
import { useState, useEffect } from 'react';
import {
View,
Text,
TextInput,
FlatList,
PermissionsAndroid,
Platform,
Pressable,
StyleSheet,
} from 'react-native';
import {
InterfaceType,
StarDeviceDiscoveryManager,
StarDeviceDiscoveryManagerFactory,
StarPrinter
} from 'react-native-star-io10';
export default function App() {
const [lanIsEnabled, setLanIsEnabled] = useState(true);
const [bluetoothIsEnabled, setBluetoothIsEnabled] = useState(true);
const [bluetoothLeIsEnabled, setBluetoothLeIsEnabled] = useState(true);
const [usbIsEnabled, setUsbIsEnabled] = useState(true);
const [printers, setPrinters] = useState<StarPrinter[]>([]);
const [manager, setManager] = useState<StarDeviceDiscoveryManager | undefined>(undefined);
async function _onPressDiscoveryButton() {
// If you are using Android 12 and targetSdkVersion is 31 or later,
// you have to request Bluetooth permission (Nearby devices permission) to use the Bluetooth printer.
// https://developer.android.com/about/versions/12/features/bluetooth-permissions
if (Platform.OS == 'android') {
if (bluetoothIsEnabled) {
var hasPermission = await _confirmBluetoothPermission();
if (!hasPermission) {
console.log(`PERMISSION ERROR: You have to allow Nearby devices to use the Bluetooth printer`);
return;
}
}
if (bluetoothLeIsEnabled) {
var hasPermission = await _confirmBluetoothLEPermission();
if (!hasPermission) {
console.log(`PERMISSION ERROR: You have to allow Nearby devices to use the BluetoothLE printer`);
return;
}
}
}
try {
await manager?.stopDiscovery()
var interfaceTypes: Array<InterfaceType> = []
if (lanIsEnabled) {
interfaceTypes.push(InterfaceType.Lan);
}
if (bluetoothIsEnabled) {
interfaceTypes.push(InterfaceType.Bluetooth);
}
if (bluetoothLeIsEnabled) {
interfaceTypes.push(InterfaceType.BluetoothLE);
}
if (usbIsEnabled) {
interfaceTypes.push(InterfaceType.Usb);
}
console.log(`create manager with ${interfaceTypes}`);
setManager(await StarDeviceDiscoveryManagerFactory.create(interfaceTypes));
}
catch (error) {
console.log(`Error: ${String(error)}`);
}
}
useEffect(() => {
const _startDiscovery = async () => {
setPrinters([]);
if (manager != undefined) {
manager.discoveryTime = 2_000;
if (bluetoothLeIsEnabled) {
manager.discoveryTime = 10_000;
} else if (lanIsEnabled) {
manager.discoveryTime = 5_000;
}
manager.onPrinterFound = async (printer: StarPrinter) => {
setPrinters((printers) => [...printers, printer]);
console.log(`Found printer: ${printer.connectionSettings.interfaceType} ${printer.connectionSettings.identifier}.`);
};
manager.onDiscoveryFinished = () => {
console.log(`Discovery finished.`);
};
try {
console.log(`Discovery start.`);
await manager.startDiscovery();
}
catch (error) {
console.log(`Error: ${String(error)}`);
}
}
}
_startDiscovery();
}, [manager]);
async function _confirmBluetoothPermission(): Promise<boolean> {
var hasPermission = false;
try {
if (Number(Platform.Version) >= 31) {
hasPermission = await PermissionsAndroid.check(PermissionsAndroid.PERMISSIONS.BLUETOOTH_CONNECT);
if (!hasPermission) {
const status = await PermissionsAndroid.request(PermissionsAndroid.PERMISSIONS.BLUETOOTH_CONNECT);
hasPermission = status == PermissionsAndroid.RESULTS.GRANTED;
}
} else {
hasPermission = true;
}
}
catch (err) {
console.warn(err);
}
return hasPermission;
}
async function _confirmBluetoothLEPermission(): Promise<boolean> {
var hasPermission = false;
try {
if (Number(Platform.Version) >= 31) {
const permissions = [
PermissionsAndroid.PERMISSIONS.BLUETOOTH_SCAN,
PermissionsAndroid.PERMISSIONS.BLUETOOTH_CONNECT,
];
const results = await PermissionsAndroid.requestMultiple(permissions);
hasPermission = permissions.every(
(perm) => results[perm] === PermissionsAndroid.RESULTS.GRANTED
);
} else {
const permissions = [
PermissionsAndroid.PERMISSIONS.ACCESS_FINE_LOCATION,
];
const results = await PermissionsAndroid.requestMultiple(permissions);
hasPermission = permissions.every(
(perm) => results[perm] === PermissionsAndroid.RESULTS.GRANTED
);
}
}
catch (err) {
console.warn(err);
}
return hasPermission;
}
function _getFoundPrinterInformation(printer: StarPrinter): string {
const connectionSettings = printer.connectionSettings;
const information = printer.information;
switch (connectionSettings.interfaceType) {
case InterfaceType.Lan:
return `${connectionSettings.interfaceType} : ${connectionSettings.identifier} : ${information?.model} : ${information?.detail.lan.uniqueId ?? ''}`;
case InterfaceType.Bluetooth:
return `${connectionSettings.interfaceType} : ${connectionSettings.identifier} : ${information?.model}`;
case InterfaceType.BluetoothLE:
return `${connectionSettings.interfaceType} : ${connectionSettings.identifier} : ${information?.model} : ${information?.detail.bluetoothLE.deviceName ?? ''}`;
case InterfaceType.Usb:
return `${connectionSettings.interfaceType} : ${connectionSettings.identifier} : ${information?.model}`;
default:
return '';
}
}
const styles = StyleSheet.create({
activeButton: {
margin: 5,
width: 150,
alignItems: 'center',
backgroundColor: '#0026FF',
padding: 10,
},
inactiveButton: {
margin: 5,
width: 150,
alignItems: 'center',
backgroundColor: '#606060',
padding: 10,
},
buttonText: {
color: '#FFFFFF',
}
});
return (
<View style={{ margin: 10, marginTop: 50, marginBottom: 50, flex: 1 }}>
<View style={{ flexDirection: 'row' }}>
<Text style={{ width: 100 }}>Interface</Text>
<View style={{ margin: 10 }}>
<Pressable
style={lanIsEnabled ? styles.activeButton : styles.inactiveButton}
onPress={() =>
setLanIsEnabled(!lanIsEnabled)
}>
<Text style={styles.buttonText}>Lan</Text>
</Pressable>
<Pressable
style={bluetoothIsEnabled ? styles.activeButton : styles.inactiveButton}
onPress={() =>
setBluetoothIsEnabled(!bluetoothIsEnabled)
}>
<Text style={styles.buttonText}>Bluetooth</Text>
</Pressable>
<Pressable
style={bluetoothLeIsEnabled ? styles.activeButton : styles.inactiveButton}
onPress={() =>
setBluetoothLeIsEnabled(!bluetoothLeIsEnabled)
}>
<Text style={styles.buttonText}>BluetoothLE</Text>
</Pressable>
<Pressable
style={usbIsEnabled ? styles.activeButton : styles.inactiveButton}
onPress={() =>
setUsbIsEnabled(!usbIsEnabled)
}>
<Text style={styles.buttonText}>USB</Text>
</Pressable>
</View>
</View>
<View style={{ marginTop: 20 }}>
<Pressable
style={styles.activeButton}
onPress={() => _onPressDiscoveryButton()
}>
<Text style={styles.buttonText}>Discovery</Text>
</Pressable>
</View>
<FlatList
style={{ margin: 10 }}
data={printers}
renderItem={({ item }) => (
Platform.OS === 'ios' ? (
<TextInput
editable={false}
multiline={true}
value={_getFoundPrinterInformation(item)}
/>
) : (
<Text selectable={true}>
{_getFoundPrinterInformation(item)}
</Text>
)
)}
keyExtractor={(item, index) => index.toString()} />
</View >
);
};