React Native-全局事件监听器

时间:2018-09-03 19:24:43

标签: reactjs react-native bluetooth react-native-ble-plx

我在Pairing屏幕上注册了一个侦听器,每当连接的蓝牙设备断开连接时,该侦听器都会调用一个方法

// Pairing.js

const BleManagerModule = NativeModules.BleManager;
const bleManagerEmitter = new NativeEventEmitter(BleManagerModule);

componentDidMount() {
  this.handlerDisconnected = bleManagerEmitter.addListener(
    "BleManagerDisconnectPeripheral",
    this.handlePeripheralDisconnected
  );
}

componentWillUnmount() {
  this.handlerDisconnected.remove();
}

我希望整个应用程序都具有此事件,如何创建一个 global 事件监听器,而不必在每个屏幕上复制粘贴此代码?

p.s如果有帮助,我正在使用react-native-ble-manager和redux + sagas

1 个答案:

答案 0 :(得分:1)

在顶级组件(App.js)中添加侦听器