How to use the jpush-react-native.addReceiveNotificationListener function in jpush-react-native

To help you get started, we’ve selected a few jpush-react-native examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github duheng / Mozi / src / AppNavigationState.js View on Github external
componentDidMount() {
    if (Platform.OS === 'android') {
      // 通知 JPushModule 初始化完成,发送缓存事件。
      JPushModule.notifyJSDidLoad(() => {});
    } else {
      JPushModule.initPush();
    }

    // 接收自定义消息
    JPushModule.addReceiveCustomMsgListener(message => {
      // this.setState({ pushMsg: message, });
    });
    // 接收推送通知
    JPushModule.addReceiveNotificationListener(message => {
      // console.log(`receive notification: ${message}`);
    });
    // 打开通知
    JPushModule.addReceiveOpenNotificationListener(() => {
      console.log('Opening notification!');
      !!this.root && this.root._navigation.navigate('Gong');
    });
  }
github ok406lhq / RTCoin / src / root.js View on Github external
componentDidMount() {
        SplashScreen.hide(); // 隐藏启动屏
        // 新版本必需写回调函数
        // JPushModule.notifyJSDidLoad();
        JPushModule.notifyJSDidLoad((resultCode) => {
            if (resultCode === 0) {
            }
        });

        // 接收自定义消息
        JPushModule.addReceiveCustomMsgListener((message) => {
            this.setState({pushMsg: message});
        });
        // 接收推送通知
        JPushModule.addReceiveNotificationListener((message) => {
            console.log("receive notification: " + message);
        });
        // 打开通知
        JPushModule.addReceiveOpenNotificationListener((map) => {
            console.log("Opening notification!");
            console.log("map.extra: " + map.extras);
            // 可执行跳转操作,也可跳转原生页面
            // this.props.navigation.navigate("SecondActivity");
        });
    }
github jpush / jpush-react-native / example / react-native-android / push_activity.js View on Github external
imei: map.myImei,
				package: map.myPackageName,
				deviceId: map.myDeviceId,
				version: map.myVersion
			});
		});
		JPushModule.notifyJSDidLoad((resultCode) => {
			if (resultCode === 0) { }
		});
		JPushModule.addReceiveCustomMsgListener((map) => {
			this.setState({
				pushMsg: map.message
			});
			console.log("extras: " + map.extras);
		});
		JPushModule.addReceiveNotificationListener((map) => {
			console.log("alertContent: " + map.alertContent);
			console.log("extras: " + map.extras);
			// var extra = JSON.parse(map.extras);
			// console.log(extra.key + ": " + extra.value);
		});
		JPushModule.addReceiveOpenNotificationListener((map) => {
			console.log("Opening notification!");
			console.log("map.extra: " + map.extras);
			this.jumpSecondActivity();
			// JPushModule.jumpToPushActivity("SecondActivity");
		});
		JPushModule.addGetRegistrationIdListener((registrationId) => {
			console.log("Device register succeed, registrationId " + registrationId);
		});
		// var notification = {
		// 	buildId: 1,
github jpush / jpush-react-native / example / react-native-iOS / push_activity.js View on Github external
JPushModule.addnetworkDidLoginListener(() => {
          console.log('连接已登录')
          JPushModule.addTags(['dasffas'], (result)=> {
            Alert.alert('addTags success:' + JSON.stringify(result))
          })
        })

        JPushModule.addOpenNotificationLaunchAppListener((result) => {
          Alert.alert('addOpenNotificationLaunchAppListener', 'the notification is :' + JSON.stringify(result))
        })

        JPushModule.addReceiveOpenNotificationListener((result) => {
          Alert.alert('addReceiveOpenNotificationListener',JSON.stringify(result))
        })

        JPushModule.addReceiveNotificationListener((result) => {
          Alert.alert('addReceiveNotificationListener',JSON.stringify(result))
        })

        JPushModule.addConnectionChangeListener((result) => {
          if (result) {
            console.log('网络已连接')
          } else {
          console.log('网络已断开')
          }
        })

        // JPushModule.addReceiveNotificationListener((notification) => {
        //   Alert.alert(JSON.stringify(notification))
        // })
    }
    componentDidMount() {
github jpush / jpush-react-native / react-native-android / push_activity.js View on Github external
componentDidMount() {
    JPushModule.addReceiveCustomMsgListener((message) => {
      this.setState({pushMsg: message});
    });
    JPushModule.addReceiveNotificationListener((map) => {
      console.log("alertContent: " + map.alertContent);
      console.log("extras: " + map.extras);
      // var extra = JSON.parse(map.extras);
      // console.log(extra.key + ": " + extra.value);
    });
    JPushModule.addReceiveOpenNotificationListener((map) => {
      console.log("Opening notification!");
      this.props.navigator.push({name: "pushActivity"});
    })
  }
github jiasongs / cnodeRN / index.ios.js View on Github external
//   Alert.alert('addTags success:' + JSON.stringify(result))
  // })
})
JPushModule.addOpenNotificationLaunchAppListener((result) => {
  // 
  Alert.alert('addOpenNotificationLaunchAppListener', 'the notification is :' + JSON.stringify(result))
})

JPushModule.addReceiveOpenNotificationListener((result) => {
  // 点击通知栏进入
  JPushModule.setBadge(0, (success) => { console.log('setBadge:' + success) });
  console.log('1111')
  Alert.alert('addReceiveOpenNotificationListener', JSON.stringify(result))
})

JPushModule.addReceiveNotificationListener((result) => {
  // 收到远程通知
  Alert.alert('addReceiveNotificationListener', JSON.stringify(result))
})

JPushModule.addConnectionChangeListener((result) => {
  if (result) {
    console.log('网络已连接')
  } else {
    console.log('网络已断开')
  }
})

const store = configureStore();
export default class cnodeRN extends Component {
  render() {
    return (
github mrarronz / react-native-blog-examples / Chapter13-PushNotification / PushNotification / App.js View on Github external
componentDidMount() {
    if (Platform.OS === 'android') {
      JPushModule.initPush();
      // 设置android端监听
      JPushModule.notifyJSDidLoad(resultCode => {
        if (resultCode === 0) {
          console.log("设置监听成功");
        }
        JPushModule.addGetRegistrationIdListener((registrationId) => {
          console.log("设备注册成功,registrationId: " + registrationId);
        });
      });
    }
    JPushModule.addReceiveNotificationListener((map) => {
      console.log("收到推送消息");
      console.log(map);
      // TODO: 处理通知消息
    });
    JPushModule.addReceiveOpenNotificationListener((map) => {
      console.log("监听到点击通知的事件");
      console.log(map);
      // TODO: 跳转界面
    
    });
  }
github jiasongs / cnodeRN / index.android.js View on Github external
warn: () => { },
    debug: () => { },
    error: () => { }
  };
} else {
  console.log("kaifa");
}

JPushModule.notifyJSDidLoad((resultCode) => {
  console.log(resultCode)
  if (resultCode === 0) { console.log('success') }
});
JPushModule.addReceiveCustomMsgListener((map) => {
  console.log("extras: " + map.extras);
});
JPushModule.addReceiveNotificationListener((map) => {
  console.log("alertContent: " + map.alertContent);
  console.log("extras: " + map.extras);
  // var extra = JSON.parse(map.extras);
  // console.log(extra.key + ": " + extra.value);
});
JPushModule.addReceiveOpenNotificationListener((map) => {
  console.log("Opening notification!");
  console.log("map.extra: " + map.extras);
  // JPushModule.jumpToPushActivity("SecondActivity");
});
JPushModule.addGetRegistrationIdListener((registrationId) => {
  console.log("Device register succeed, registrationId " + registrationId);
});

const store = configureStore();
export default class cnodeRN extends Component {