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

101 lines
4.4 KiB
JavaScript

"use strict";
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.formatXcodeBuildPipeProcessAsync = formatXcodeBuildPipeProcessAsync;
exports.createXcodeBuildHooks = createXcodeBuildHooks;
exports.writeBuildLogs = writeBuildLogs;
exports.getErrorLogFilePath = getErrorLogFilePath;
const chalk_1 = __importDefault(require("chalk"));
const fs_1 = __importDefault(require("fs"));
const os_1 = __importDefault(require("os"));
const path_1 = __importDefault(require("path"));
const ExpoRunFormatter_1 = require("./ExpoRunFormatter");
function formatXcodeBuildPipeProcessAsync(projectRoot, { xcodeProjectName } = {}) {
return new Promise(async (resolve, reject) => {
const hooks = createXcodeBuildHooks(projectRoot, { xcodeProjectName, resolve, reject });
process.stdin.on('data', hooks.onData);
process.stdin.on('end', () => {
hooks.onEnd(0);
});
});
}
function createXcodeBuildHooks(projectRoot, { xcodeProjectName, resolve, reject, }) {
const formatter = ExpoRunFormatter_1.ExpoRunFormatter.create(projectRoot, {
xcodeProject: xcodeProjectName ? { name: xcodeProjectName } : undefined,
isDebug: isTruthy(process.env.EXPO_DEBUG),
});
let buildOutput = '';
let errorOutput = '';
let currentBuffer = '';
// Data can be sent in chunks that would have no relevance to our regex
// this can cause massive slowdowns, so we need to ensure the data is complete before attempting to parse it.
function flushBuffer() {
if (!currentBuffer) {
return;
}
const data = currentBuffer;
currentBuffer = '';
const lines = formatter.pipe(data);
for (const line of lines) {
console.log(line);
}
}
const onData = (data) => {
const stringData = data.toString();
buildOutput += stringData;
currentBuffer += stringData;
if (currentBuffer.endsWith(os_1.default.EOL)) {
flushBuffer();
}
};
const onErr = (data) => {
flushBuffer();
const stringData = data instanceof Buffer ? data.toString() : data;
errorOutput += stringData;
};
const onEnd = (code) => {
flushBuffer();
console.log(formatter.getBuildSummary());
const logFilePath = writeBuildLogs(projectRoot, buildOutput, errorOutput);
if (code !== 0) {
// Determine if the logger found any errors;
const wasErrorPresented = !!formatter.errors.length;
const errorTitle = `Failed to build iOS project. "xcodebuild" exited with error code ${code}.`;
if (wasErrorPresented) {
// This has a flaw, if the user is missing a file, and there is a script error, only the missing file error will be shown.
// They will only see the script error if they fix the missing file and rerun.
// The flaw can be fixed by catching script errors in the custom logger.
reject(new Error(errorTitle));
return;
}
// Show all the log info because often times the error is coming from a shell script,
// that invoked a node script, that started metro, which threw an error.
reject(new Error(`${errorTitle}\nTo view more error logs, try building the app with Xcode directly, by opening ${'unknown'}.\n\n` +
buildOutput +
'\n\n' +
errorOutput +
`Build logs written to ${chalk_1.default.underline(logFilePath)}`));
return;
}
resolve(buildOutput);
};
return { onData, onErr, onEnd };
}
function writeBuildLogs(projectRoot, buildOutput, errorOutput) {
const [logFilePath, errorFilePath] = getErrorLogFilePath(projectRoot);
fs_1.default.writeFileSync(logFilePath, buildOutput);
fs_1.default.writeFileSync(errorFilePath, errorOutput);
return logFilePath;
}
function getErrorLogFilePath(projectRoot) {
const folder = path_1.default.join(projectRoot, '.expo');
fs_1.default.mkdirSync(folder, { recursive: true });
return [path_1.default.join(folder, 'xcodebuild.log'), path_1.default.join(folder, 'xcodebuild-error.log')];
}
function isTruthy(value) {
const str = String(value).toLowerCase();
return str === 'true' || str === '1';
}
//# sourceMappingURL=Runner.js.map