- 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
54 lines
1.7 KiB
JavaScript
54 lines
1.7 KiB
JavaScript
import { getPathFromState, NavigationHelpersContext } from '@react-navigation/core';
|
|
import * as React from 'react';
|
|
import LinkingContext from './LinkingContext';
|
|
const getRootStateForNavigate = (navigation, state) => {
|
|
const parent = navigation.getParent();
|
|
if (parent) {
|
|
const parentState = parent.getState();
|
|
return getRootStateForNavigate(parent, {
|
|
index: 0,
|
|
routes: [{
|
|
...parentState.routes[parentState.index],
|
|
state: state
|
|
}]
|
|
});
|
|
}
|
|
return state;
|
|
};
|
|
|
|
/**
|
|
* Build destination link for a navigate action.
|
|
* Useful for showing anchor tags on the web for buttons that perform navigation.
|
|
*/
|
|
export default function useLinkBuilder() {
|
|
const navigation = React.useContext(NavigationHelpersContext);
|
|
const linking = React.useContext(LinkingContext);
|
|
const buildLink = React.useCallback((name, params) => {
|
|
const {
|
|
options
|
|
} = linking;
|
|
if ((options === null || options === void 0 ? void 0 : options.enabled) === false) {
|
|
return undefined;
|
|
}
|
|
const state = navigation ? getRootStateForNavigate(navigation, {
|
|
index: 0,
|
|
routes: [{
|
|
name,
|
|
params
|
|
}]
|
|
}) :
|
|
// If we couldn't find a navigation object in context, we're at root
|
|
// So we'll construct a basic state object to use
|
|
{
|
|
index: 0,
|
|
routes: [{
|
|
name,
|
|
params
|
|
}]
|
|
};
|
|
const path = options !== null && options !== void 0 && options.getPathFromState ? options.getPathFromState(state, options === null || options === void 0 ? void 0 : options.config) : getPathFromState(state, options === null || options === void 0 ? void 0 : options.config);
|
|
return path;
|
|
}, [linking, navigation]);
|
|
return buildLink;
|
|
}
|
|
//# sourceMappingURL=useLinkBuilder.js.map
|