You've already forked joplin
mirror of
https://github.com/laurent22/joplin.git
synced 2025-06-24 23:26:50 +02:00
All: Use Lerna to manage monorepo
This commit is contained in:
42
packages/app-mobile/utils/geolocation-react.js
Normal file
42
packages/app-mobile/utils/geolocation-react.js
Normal file
@ -0,0 +1,42 @@
|
||||
import Geolocation from '@react-native-community/geolocation';
|
||||
|
||||
const Setting = require('@joplinapp/lib/models/Setting').default;
|
||||
|
||||
class GeolocationReact {
|
||||
static currentPosition_testResponse() {
|
||||
return {
|
||||
mocked: false,
|
||||
timestamp: new Date().getTime(),
|
||||
coords: {
|
||||
speed: 0,
|
||||
heading: 0,
|
||||
accuracy: 20,
|
||||
longitude: -3.4596633911132812,
|
||||
altitude: 0,
|
||||
latitude: 48.73219093634444,
|
||||
},
|
||||
};
|
||||
}
|
||||
|
||||
static currentPosition(options = null) {
|
||||
if (Setting.value('env') == 'dev') return this.currentPosition_testResponse();
|
||||
|
||||
if (!options) options = {};
|
||||
if (!('enableHighAccuracy' in options)) options.enableHighAccuracy = true;
|
||||
if (!('timeout' in options)) options.timeout = 10000;
|
||||
|
||||
return new Promise((resolve, reject) => {
|
||||
Geolocation.getCurrentPosition(
|
||||
data => {
|
||||
resolve(data);
|
||||
},
|
||||
error => {
|
||||
reject(error);
|
||||
},
|
||||
options
|
||||
);
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
module.exports = { GeolocationReact };
|
Reference in New Issue
Block a user