Files
smart-city-digital-twin-mar…/smart-app-city/frontend/node_modules/expo-notifications/build/NotificationsEmitter.js
Eric FELIXINE e30ae8ed09 feat(smart-app): implement complete mobile app MVP
- 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
2026-06-01 18:00:35 -04:00

133 lines
6.1 KiB
JavaScript

import { EventEmitter, UnavailabilityError } from 'expo-modules-core';
import NotificationsEmitterModule from './NotificationsEmitterModule';
import { mapNotification, mapNotificationResponse } from './utils/mapNotificationResponse';
// Web uses SyntheticEventEmitter
const emitter = new EventEmitter(NotificationsEmitterModule);
const didReceiveNotificationEventName = 'onDidReceiveNotification';
const didDropNotificationsEventName = 'onNotificationsDeleted';
const didReceiveNotificationResponseEventName = 'onDidReceiveNotificationResponse';
const didClearNotificationResponseEventName = 'onDidClearNotificationResponse';
// @docsMissing
export const DEFAULT_ACTION_IDENTIFIER = 'expo.modules.notifications.actions.DEFAULT';
/**
* Listeners registered by this method will be called whenever a notification is received while the app is running.
* @param listener A function accepting a notification ([`Notification`](#notification)) as an argument.
* @return A [`Subscription`](#subscription) object represents the subscription of the provided listener.
* @example Registering a notification listener using a React hook:
* ```jsx
* import React from 'react';
* import * as Notifications from 'expo-notifications';
*
* export default function App() {
* React.useEffect(() => {
* const subscription = Notifications.addNotificationReceivedListener(notification => {
* console.log(notification);
* });
* return () => subscription.remove();
* }, []);
*
* return (
* // Your app content
* );
* }
* ```
* @header listen
*/
export function addNotificationReceivedListener(listener) {
return emitter.addListener(didReceiveNotificationEventName, (notification) => {
const mappedNotification = mapNotification(notification);
listener(mappedNotification);
});
}
/**
* Listeners registered by this method will be called whenever some notifications have been dropped by the server.
* Applicable only to Firebase Cloud Messaging which we use as a notifications service on Android. It corresponds to `onDeletedMessages()` callback.
* More information can be found in [Firebase docs](https://firebase.google.com/docs/cloud-messaging/android/receive#override-ondeletedmessages).
* @param listener A callback function.
* @return A [`Subscription`](#subscription) object represents the subscription of the provided listener.
* @header listen
*/
export function addNotificationsDroppedListener(listener) {
return emitter.addListener(didDropNotificationsEventName, listener);
}
/**
* Listeners registered by this method will be called whenever a user interacts with a notification (for example, taps on it).
* @param listener A function accepting notification response ([`NotificationResponse`](#notificationresponse)) as an argument.
* @return A [`Subscription`](#subscription) object represents the subscription of the provided listener.
* @example Register a notification responder listener:
* ```jsx
* import React from 'react';
* import { Linking } from 'react-native';
* import * as Notifications from 'expo-notifications';
*
* export default function Container() {
* React.useEffect(() => {
* const subscription = Notifications.addNotificationResponseReceivedListener(response => {
* const url = response.notification.request.content.data.url;
* Linking.openURL(url);
* });
* return () => subscription.remove();
* }, []);
*
* return (
* // Your app content
* );
* }
* ```
* @header listen
*/
export function addNotificationResponseReceivedListener(listener) {
return emitter.addListener(didReceiveNotificationResponseEventName, (response) => {
const mappedResponse = mapNotificationResponse(response);
listener(mappedResponse);
});
}
/**
* Removes a notification subscription returned by an `addNotificationListener` call.
* @param subscription A subscription returned by `addNotificationListener` method.
* @header listen
*/
export function removeNotificationSubscription(subscription) {
emitter.removeSubscription(subscription);
}
/**
* Gets the notification response that was received most recently
* (a notification response designates an interaction with a notification, such as tapping on it).
*
* - `null` - if no notification response has been received yet
* - a [`NotificationResponse`](#notificationresponse) object - if a notification response was received
* - a [`NotificationResponse`](#notificationresponse) object - if a notification response was received.
*/
export async function getLastNotificationResponseAsync() {
if (!NotificationsEmitterModule.getLastNotificationResponseAsync) {
throw new UnavailabilityError('ExpoNotifications', 'getLastNotificationResponseAsync');
}
const response = await NotificationsEmitterModule.getLastNotificationResponseAsync();
const mappedResponse = response ? mapNotificationResponse(response) : response;
return mappedResponse;
}
/* Clears the notification response that was received most recently. May be used
* when an app selects a route based on the notification response, and it is undesirable
* to continue selecting the route after the response has already been handled.
* to continue to select the route after the response has already been handled.
*
* If a component is using the [`useLastNotificationResponse`](#useLastNotificationResponse) hook,
* this call will also clear the value returned by the hook.
*
* @return A promise that resolves if the native call was successful.
*/
export async function clearLastNotificationResponseAsync() {
if (!NotificationsEmitterModule.clearLastNotificationResponseAsync) {
throw new UnavailabilityError('ExpoNotifications', 'getLastNotificationResponseAsync');
}
await NotificationsEmitterModule.clearLastNotificationResponseAsync();
// Emit event to clear any useLastNotificationResponse hooks, after native call succeeds
emitter.emit(didClearNotificationResponseEventName, []);
}
/**
* @hidden
*/
export function addNotificationResponseClearedListener(listener) {
return emitter.addListener(didClearNotificationResponseEventName, listener);
}
//# sourceMappingURL=NotificationsEmitter.js.map