- 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
74 lines
3.3 KiB
JavaScript
74 lines
3.3 KiB
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.addCameraImport = void 0;
|
|
const config_plugins_1 = require("@expo/config-plugins");
|
|
const generateCode_1 = require("@expo/config-plugins/build/utils/generateCode");
|
|
const pkg = require('expo-camera/package.json');
|
|
const CAMERA_USAGE = 'Allow $(PRODUCT_NAME) to access your camera';
|
|
const MICROPHONE_USAGE = 'Allow $(PRODUCT_NAME) to access your microphone';
|
|
// Because we need the package to be added AFTER the React and Google maven packages, we create a new allprojects.
|
|
// It's ok to have multiple allprojects.repositories, so we create a new one since it's cheaper than tokenizing
|
|
// the existing block to find the correct place to insert our camera maven.
|
|
const gradleMaven = [
|
|
`def expoCameraMavenPath = new File(["node", "--print", "require.resolve('expo-camera/package.json')"].execute(null, rootDir).text.trim(), "../android/maven")`,
|
|
`allprojects { repositories { maven { url(expoCameraMavenPath) } } }`,
|
|
].join('\n');
|
|
const withAndroidCameraGradle = (config) => {
|
|
return (0, config_plugins_1.withProjectBuildGradle)(config, (config) => {
|
|
if (config.modResults.language === 'groovy') {
|
|
config.modResults.contents = addCameraImport(config.modResults.contents).contents;
|
|
}
|
|
else {
|
|
throw new Error('Cannot add camera maven gradle because the build.gradle is not groovy');
|
|
}
|
|
return config;
|
|
});
|
|
};
|
|
function addCameraImport(src) {
|
|
return appendContents({
|
|
tag: 'expo-camera-import',
|
|
src,
|
|
newSrc: gradleMaven,
|
|
comment: '//',
|
|
});
|
|
}
|
|
exports.addCameraImport = addCameraImport;
|
|
// Fork of config-plugins mergeContents, but appends the contents to the end of the file.
|
|
function appendContents({ src, newSrc, tag, comment, }) {
|
|
const header = (0, generateCode_1.createGeneratedHeaderComment)(newSrc, tag, comment);
|
|
if (!src.includes(header)) {
|
|
// Ensure the old generated contents are removed.
|
|
const sanitizedTarget = (0, generateCode_1.removeGeneratedContents)(src, tag);
|
|
const contentsToAdd = [
|
|
// @something
|
|
header,
|
|
// contents
|
|
newSrc,
|
|
// @end
|
|
`${comment} @generated end ${tag}`,
|
|
].join('\n');
|
|
return {
|
|
contents: sanitizedTarget ?? src + contentsToAdd,
|
|
didMerge: true,
|
|
didClear: !!sanitizedTarget,
|
|
};
|
|
}
|
|
return { contents: src, didClear: false, didMerge: false };
|
|
}
|
|
const withCamera = (config, { cameraPermission, microphonePermission, recordAudioAndroid = true } = {}) => {
|
|
config_plugins_1.IOSConfig.Permissions.createPermissionsPlugin({
|
|
NSCameraUsageDescription: CAMERA_USAGE,
|
|
NSMicrophoneUsageDescription: MICROPHONE_USAGE,
|
|
})(config, {
|
|
NSCameraUsageDescription: cameraPermission,
|
|
NSMicrophoneUsageDescription: microphonePermission,
|
|
});
|
|
config = config_plugins_1.AndroidConfig.Permissions.withPermissions(config, [
|
|
'android.permission.CAMERA',
|
|
// Optional
|
|
recordAudioAndroid && 'android.permission.RECORD_AUDIO',
|
|
].filter(Boolean));
|
|
return withAndroidCameraGradle(config);
|
|
};
|
|
exports.default = (0, config_plugins_1.createRunOncePlugin)(withCamera, pkg.name, pkg.version);
|