- App.tsx: full navigation (Auth stack + Main tabs with 5 screens) - Auth: LoginScreen, RegisterScreen, ForgotPasswordScreen - HomeScreen: dashboard with IoT metrics, weather widget, alerts, quick actions, sensors - MapScreen: interactive map with layer toggles (6 layers) - MarketplaceScreen: categories (6), products (5), search - ChatScreen: AI chat with quick prompts (4), bot responses - ProfileScreen: user info, stats, menu (9 items), logout - AlertsScreen: alert list with severity, acknowledge - SensorsScreen: sensor list with type filters (6 types), search - ZonesScreen: zone cards with stats - SettingsScreen: language picker (FR/EN/ES/DE), privacy, about - Stores: iotStore (sensors, zones, alerts), notificationStore, uiStore + i18n - Hooks: useSensors, useAlerts, useNotifications, useLocation - Components: Card, Button, LoadingSpinner, ErrorBoundary, Header - Services: iotService, notificationService (with axios API client) - Utils: formatters (temp, AQI, noise, dates), validators (email, password, IBAN) - Theme: colors.ts with full design system (Blue Ocean palette) - Ditto: fixed MongoDB connection, new JWT secrets, official gateway image
62 lines
2.3 KiB
JavaScript
62 lines
2.3 KiB
JavaScript
import { Platform } from 'expo-modules-core';
|
|
import ExpoLocation from './ExpoLocation';
|
|
import { LocationAccuracy } from './Location.types';
|
|
import { LocationSubscriber } from './LocationSubscribers';
|
|
// @needsAudit
|
|
/**
|
|
* Polyfills `navigator.geolocation` for interop with the core React Native and Web API approach to geolocation.
|
|
*/
|
|
export function installWebGeolocationPolyfill() {
|
|
if (Platform.OS !== 'web') {
|
|
// Make sure `window.navigator` is defined in the global scope.
|
|
if (!('window' in global)) {
|
|
global.window = global;
|
|
}
|
|
if (!('navigator' in global.window)) {
|
|
global.window.navigator = {};
|
|
}
|
|
// @ts-ignore
|
|
window.navigator.geolocation = {
|
|
getCurrentPosition,
|
|
watchPosition,
|
|
clearWatch,
|
|
// We don't polyfill stopObserving, this is an internal method that probably should not even exist
|
|
// in react-native docs
|
|
stopObserving: () => { },
|
|
};
|
|
}
|
|
}
|
|
function convertGeolocationOptions(options) {
|
|
return {
|
|
accuracy: options.enableHighAccuracy ? LocationAccuracy.High : LocationAccuracy.Balanced,
|
|
};
|
|
}
|
|
function getCurrentPosition(success, error = () => { }, options = {}) {
|
|
_getCurrentPositionAsyncWrapper(success, error, options);
|
|
}
|
|
// This function exists to let us continue to return undefined from getCurrentPosition, while still
|
|
// using async/await for the internal implementation of it
|
|
async function _getCurrentPositionAsyncWrapper(success, error, options) {
|
|
try {
|
|
await ExpoLocation.requestPermissionsAsync();
|
|
const result = await ExpoLocation.getCurrentPositionAsync(convertGeolocationOptions(options));
|
|
success(result);
|
|
}
|
|
catch (e) {
|
|
error(e);
|
|
}
|
|
}
|
|
// Polyfill: navigator.geolocation.watchPosition
|
|
function watchPosition(success, error, options) {
|
|
const watchId = LocationSubscriber.registerCallback(success);
|
|
ExpoLocation.watchPositionImplAsync(watchId, options).catch((err) => {
|
|
LocationSubscriber.unregisterCallback(watchId);
|
|
error({ watchId, message: err.message, code: err.code });
|
|
});
|
|
return watchId;
|
|
}
|
|
// Polyfill: navigator.geolocation.clearWatch
|
|
function clearWatch(watchId) {
|
|
LocationSubscriber.unregisterCallback(watchId);
|
|
}
|
|
//# sourceMappingURL=GeolocationPolyfill.js.map
|