- 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
28 lines
1.6 KiB
JavaScript
28 lines
1.6 KiB
JavaScript
import Constants, { AppOwnership } from 'expo-constants';
|
|
import { requireOptionalNativeModule } from 'expo-modules-core';
|
|
import { getManifestBaseUrl } from './AssetUris';
|
|
const ExpoUpdates = requireOptionalNativeModule('ExpoUpdates');
|
|
const isRunningInExpoGo = Constants.appOwnership === AppOwnership.Expo;
|
|
// expo-updates (and Expo Go expo-updates override) manages assets from updates and exposes
|
|
// the ExpoUpdates.localAssets constant containing information about the assets.
|
|
const expoUpdatesIsInstalledAndEnabled = !!ExpoUpdates?.isEnabled;
|
|
const expoUpdatesIsUsingEmbeddedAssets = ExpoUpdates?.isUsingEmbeddedAssets;
|
|
// if expo-updates is installed but we're running directly from the embedded bundle, we don't want
|
|
// to override the AssetSourceResolver.
|
|
const shouldUseUpdatesAssetResolution = expoUpdatesIsInstalledAndEnabled && !expoUpdatesIsUsingEmbeddedAssets;
|
|
// Expo Go always uses the updates module for asset resolution (local assets) since it
|
|
// overrides the expo-updates module.
|
|
export const IS_ENV_WITH_LOCAL_ASSETS = isRunningInExpoGo || shouldUseUpdatesAssetResolution;
|
|
// Get the localAssets property from the ExpoUpdates native module so that we do
|
|
// not need to include expo-updates as a dependency of expo-asset
|
|
export function getLocalAssets() {
|
|
return ExpoUpdates?.localAssets ?? {};
|
|
}
|
|
export function getManifest2() {
|
|
return Constants.__unsafeNoWarnManifest2;
|
|
}
|
|
// Compute manifest base URL if available
|
|
export const manifestBaseUrl = Constants.experienceUrl
|
|
? getManifestBaseUrl(Constants.experienceUrl)
|
|
: null;
|
|
//# sourceMappingURL=PlatformUtils.js.map
|