- 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
94 lines
3.5 KiB
JavaScript
94 lines
3.5 KiB
JavaScript
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.default = exports.accessibilityProps = void 0;
|
|
var React = _interopRequireWildcard(require("react"));
|
|
var _reactNative = require("react-native");
|
|
var _colors = require("../styles/themes/v2/colors");
|
|
function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function (e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != typeof e && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (const t in e) "default" !== t && {}.hasOwnProperty.call(e, t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, t)) && (i.get || i.set) ? o(f, t, i) : f[t] = e[t]); return f; })(e, t); }
|
|
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
|
|
const accessibilityProps = exports.accessibilityProps = _reactNative.Platform.OS === 'web' ? {
|
|
role: 'img',
|
|
focusable: false
|
|
} : {
|
|
accessibilityElementsHidden: true,
|
|
importantForAccessibility: 'no-hide-descendants'
|
|
};
|
|
|
|
/**
|
|
* Loads the appropriate icon module based on available dependencies
|
|
*/
|
|
const loadIconModule = () => {
|
|
try {
|
|
return require('@react-native-vector-icons/material-design-icons').default;
|
|
} catch (e) {
|
|
try {
|
|
return require('@expo/vector-icons/MaterialCommunityIcons').default;
|
|
} catch (e) {
|
|
try {
|
|
return require('react-native-vector-icons/MaterialCommunityIcons').default;
|
|
} catch (e) {
|
|
return null;
|
|
}
|
|
}
|
|
}
|
|
};
|
|
const IconModule = loadIconModule();
|
|
|
|
/**
|
|
* Fallback component displayed when no icon library is available
|
|
*/
|
|
const FallbackIcon = ({
|
|
name,
|
|
color,
|
|
size,
|
|
...rest
|
|
}) => {
|
|
console.warn(`Tried to use the icon '${name}' in a component from 'react-native-paper', but none of the required icon libraries are installed.`, `To fix this, please install one of the following:\n` + `- @expo/vector-icons\n` + `- @react-native-vector-icons/material-design-icons\n` + `- react-native-vector-icons\n\n` + `You can also use another method to specify icon: https://callstack.github.io/react-native-paper/docs/guides/icons`);
|
|
return /*#__PURE__*/React.createElement(_reactNative.Text, _extends({}, rest, {
|
|
style: [styles.icon, {
|
|
color,
|
|
fontSize: size
|
|
}],
|
|
selectable: false
|
|
}), "\u25A1");
|
|
};
|
|
const MaterialCommunityIcons = IconModule || FallbackIcon;
|
|
|
|
/**
|
|
* Default icon component that handles icon rendering with proper styling and accessibility
|
|
*/
|
|
const DefaultIcon = ({
|
|
name,
|
|
color = _colors.black,
|
|
size,
|
|
direction,
|
|
allowFontScaling,
|
|
testID
|
|
}) => {
|
|
return /*#__PURE__*/React.createElement(MaterialCommunityIcons, _extends({
|
|
allowFontScaling: allowFontScaling,
|
|
name: name,
|
|
color: color,
|
|
size: size,
|
|
style: [{
|
|
transform: [{
|
|
scaleX: direction === 'rtl' ? -1 : 1
|
|
}],
|
|
lineHeight: size
|
|
}, styles.icon],
|
|
pointerEvents: "none",
|
|
selectable: false,
|
|
testID: testID
|
|
}, accessibilityProps));
|
|
};
|
|
const styles = _reactNative.StyleSheet.create({
|
|
// eslint-disable-next-line react-native/no-color-literals
|
|
icon: {
|
|
backgroundColor: 'transparent'
|
|
}
|
|
});
|
|
var _default = exports.default = DefaultIcon;
|
|
//# sourceMappingURL=MaterialCommunityIcon.js.map
|