- 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
39 lines
2.9 KiB
JavaScript
39 lines
2.9 KiB
JavaScript
export { default as getDevicePushTokenAsync } from './getDevicePushTokenAsync';
|
|
export { default as unregisterForNotificationsAsync } from './unregisterForNotificationsAsync';
|
|
export { default as getExpoPushTokenAsync } from './getExpoPushTokenAsync';
|
|
export { default as getPresentedNotificationsAsync } from './getPresentedNotificationsAsync';
|
|
export { default as presentNotificationAsync } from './presentNotificationAsync';
|
|
export { default as dismissNotificationAsync } from './dismissNotificationAsync';
|
|
export { default as dismissAllNotificationsAsync } from './dismissAllNotificationsAsync';
|
|
export { default as getNotificationChannelsAsync } from './getNotificationChannelsAsync';
|
|
export { default as getNotificationChannelAsync } from './getNotificationChannelAsync';
|
|
export { default as setNotificationChannelAsync } from './setNotificationChannelAsync';
|
|
export { default as deleteNotificationChannelAsync } from './deleteNotificationChannelAsync';
|
|
export { default as getNotificationChannelGroupsAsync } from './getNotificationChannelGroupsAsync';
|
|
export { default as getNotificationChannelGroupAsync } from './getNotificationChannelGroupAsync';
|
|
export { default as setNotificationChannelGroupAsync } from './setNotificationChannelGroupAsync';
|
|
export { default as deleteNotificationChannelGroupAsync } from './deleteNotificationChannelGroupAsync';
|
|
export { default as getBadgeCountAsync } from './getBadgeCountAsync';
|
|
export { default as setBadgeCountAsync } from './setBadgeCountAsync';
|
|
export { default as getAllScheduledNotificationsAsync } from './getAllScheduledNotificationsAsync';
|
|
export { default as scheduleNotificationAsync } from './scheduleNotificationAsync';
|
|
export { default as cancelScheduledNotificationAsync } from './cancelScheduledNotificationAsync';
|
|
export { default as cancelAllScheduledNotificationsAsync } from './cancelAllScheduledNotificationsAsync';
|
|
export { default as getNotificationCategoriesAsync } from './getNotificationCategoriesAsync';
|
|
export { default as setNotificationCategoryAsync } from './setNotificationCategoryAsync';
|
|
export { default as deleteNotificationCategoryAsync } from './deleteNotificationCategoryAsync';
|
|
export { default as getNextTriggerDateAsync } from './getNextTriggerDateAsync';
|
|
export { default as useLastNotificationResponse } from './useLastNotificationResponse';
|
|
export { setAutoServerRegistrationEnabledAsync } from './DevicePushTokenAutoRegistration.fx';
|
|
export { default as registerTaskAsync } from './registerTaskAsync';
|
|
export { default as unregisterTaskAsync } from './unregisterTaskAsync';
|
|
export * from './TokenEmitter';
|
|
export * from './NotificationsEmitter';
|
|
export * from './NotificationsHandler';
|
|
export * from './NotificationPermissions';
|
|
export * from './NotificationChannelGroupManager.types';
|
|
export * from './NotificationChannelManager.types';
|
|
export * from './NotificationPermissions.types';
|
|
export * from './Notifications.types';
|
|
export * from './Tokens.types';
|
|
//# sourceMappingURL=index.js.map
|