Files
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

111 lines
3.1 KiB
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.appendScheme = appendScheme;
exports.getScheme = getScheme;
exports.getSchemesFromPlist = getSchemesFromPlist;
exports.hasScheme = hasScheme;
exports.removeScheme = removeScheme;
exports.setScheme = setScheme;
exports.withScheme = void 0;
function _iosPlugins() {
const data = require("../plugins/ios-plugins");
_iosPlugins = function () {
return data;
};
return data;
}
const withScheme = exports.withScheme = (0, _iosPlugins().createInfoPlistPluginWithPropertyGuard)(setScheme, {
infoPlistProperty: 'CFBundleURLTypes',
expoConfigProperty: 'scheme'
}, 'withScheme');
function getScheme(config) {
if (Array.isArray(config.scheme)) {
const validate = value => {
return typeof value === 'string';
};
return config.scheme.filter(validate);
} else if (typeof config.scheme === 'string') {
return [config.scheme];
}
return [];
}
function setScheme(config, infoPlist) {
const scheme = [...getScheme(config),
// @ts-ignore: TODO: ios.scheme is an unreleased -- harder to add to turtle v1.
...getScheme(config.ios ?? {})];
// Add the bundle identifier to the list of schemes for easier Google auth and parity with Turtle v1.
if (config.ios?.bundleIdentifier) {
scheme.push(config.ios.bundleIdentifier);
}
if (scheme.length === 0) {
return infoPlist;
}
return {
...infoPlist,
CFBundleURLTypes: [{
CFBundleURLSchemes: scheme
}]
};
}
function appendScheme(scheme, infoPlist) {
if (!scheme) {
return infoPlist;
}
const existingSchemes = infoPlist.CFBundleURLTypes ?? [];
if (existingSchemes?.some(({
CFBundleURLSchemes
}) => CFBundleURLSchemes.includes(scheme))) {
return infoPlist;
}
return {
...infoPlist,
CFBundleURLTypes: [...existingSchemes, {
CFBundleURLSchemes: [scheme]
}]
};
}
function removeScheme(scheme, infoPlist) {
if (!scheme) {
return infoPlist;
}
// No need to remove if we don't have any
if (!infoPlist.CFBundleURLTypes) {
return infoPlist;
}
infoPlist.CFBundleURLTypes = infoPlist.CFBundleURLTypes.map(bundleUrlType => {
const index = bundleUrlType.CFBundleURLSchemes.indexOf(scheme);
if (index > -1) {
bundleUrlType.CFBundleURLSchemes.splice(index, 1);
if (bundleUrlType.CFBundleURLSchemes.length === 0) {
return undefined;
}
}
return bundleUrlType;
}).filter(Boolean);
return infoPlist;
}
function hasScheme(scheme, infoPlist) {
const existingSchemes = infoPlist.CFBundleURLTypes;
if (!Array.isArray(existingSchemes)) return false;
return existingSchemes?.some(({
CFBundleURLSchemes: schemes
}) => Array.isArray(schemes) ? schemes.includes(scheme) : false);
}
function getSchemesFromPlist(infoPlist) {
if (Array.isArray(infoPlist.CFBundleURLTypes)) {
return infoPlist.CFBundleURLTypes.reduce((schemes, {
CFBundleURLSchemes
}) => {
if (Array.isArray(CFBundleURLSchemes)) {
return [...schemes, ...CFBundleURLSchemes];
}
return schemes;
}, []);
}
return [];
}
//# sourceMappingURL=Scheme.js.map