- 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
15 lines
791 B
TypeScript
15 lines
791 B
TypeScript
export declare function getFilename(url: string): string;
|
|
export declare function getFileExtension(url: string): string;
|
|
/**
|
|
* Returns the base URL from a manifest's URL. For example, given a manifest hosted at
|
|
* https://example.com/app/manifest.json, the base URL would be https://example.com/app/. Query
|
|
* parameters and fragments also are removed.
|
|
*
|
|
* For an Expo-hosted project with a manifest hosted at https://exp.host/@user/project/index.exp, the
|
|
* base URL would be https://exp.host/@user/project.
|
|
*
|
|
* We also normalize the "exp" protocol to "http" to handle internal URLs with the Expo schemes used
|
|
* to tell the OS to open the URLs in the the Expo client.
|
|
*/
|
|
export declare function getManifestBaseUrl(manifestUrl: string): string;
|
|
//# sourceMappingURL=AssetUris.d.ts.map
|