- Create permissions helper module with comprehensive error handling - Update BLEManager to use new permission system - Add permission state tracking in BLEContext - Improve add-sensor screen with permission error banner - Add "Open Settings" button for permission issues - Handle Android 12+ and older permission models - Provide user-friendly error messages for all states 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
46 lines
1.8 KiB
TypeScript
46 lines
1.8 KiB
TypeScript
// BLE Service entry point
|
|
|
|
import * as Device from 'expo-device';
|
|
import { IBLEManager } from './types';
|
|
|
|
// Determine if BLE is available (real device vs simulator)
|
|
export const isBLEAvailable = Device.isDevice;
|
|
|
|
// Lazy singleton - only create BLEManager when first accessed
|
|
let _bleManager: IBLEManager | null = null;
|
|
|
|
function getBLEManager(): IBLEManager {
|
|
if (!_bleManager) {
|
|
// Dynamic import to prevent crash on Android startup
|
|
if (isBLEAvailable) {
|
|
const { RealBLEManager } = require('./BLEManager');
|
|
_bleManager = new RealBLEManager();
|
|
} else {
|
|
const { MockBLEManager } = require('./MockBLEManager');
|
|
_bleManager = new MockBLEManager();
|
|
}
|
|
}
|
|
return _bleManager!; // Non-null assertion - we just assigned it above
|
|
}
|
|
|
|
// Proxy object that lazily initializes the real manager
|
|
export const bleManager: IBLEManager = {
|
|
scanDevices: () => getBLEManager().scanDevices(),
|
|
stopScan: () => getBLEManager().stopScan(),
|
|
connectDevice: (deviceId: string) => getBLEManager().connectDevice(deviceId),
|
|
disconnectDevice: (deviceId: string) => getBLEManager().disconnectDevice(deviceId),
|
|
isDeviceConnected: (deviceId: string) => getBLEManager().isDeviceConnected(deviceId),
|
|
sendCommand: (deviceId: string, command: string) => getBLEManager().sendCommand(deviceId, command),
|
|
getWiFiList: (deviceId: string) => getBLEManager().getWiFiList(deviceId),
|
|
setWiFi: (deviceId: string, ssid: string, password: string) => getBLEManager().setWiFi(deviceId, ssid, password),
|
|
getCurrentWiFi: (deviceId: string) => getBLEManager().getCurrentWiFi(deviceId),
|
|
rebootDevice: (deviceId: string) => getBLEManager().rebootDevice(deviceId),
|
|
cleanup: () => getBLEManager().cleanup(),
|
|
};
|
|
|
|
// Re-export types
|
|
export * from './types';
|
|
|
|
// Re-export permission utilities
|
|
export * from './permissions';
|