Skip to content

Instantly share code, notes, and snippets.

@brentvatne
Created May 14, 2015 19:04
Show Gist options
  • Save brentvatne/d426ea4dc117064f5cc8 to your computer and use it in GitHub Desktop.
Save brentvatne/d426ea4dc117064f5cc8 to your computer and use it in GitHub Desktop.
var React = require('react-native');
var _ = require('lodash');
var ProximityManager = require('NativeModules').ProximityManager;
var startAdvertising = function(appUUID, localUserUUID, delayTime, callback) {
var lastFired;
ProximityManager.startAdvertising(appUUID, localUserUUID);
React.DeviceEventEmitter.addListener('nearByUserFound', function(remoteUserUUID) {
if (!lastFired || (lastFired && (new Date) - lastFired > delayTime)) {
callback(remoteUserUUID);
lastFired = new Date;
};
})
};
module.exports.startAdvertising = startAdvertising;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment