- 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
82 lines
3.2 KiB
TypeScript
82 lines
3.2 KiB
TypeScript
import { CodeBlock } from '../utils/commonCodeMod';
|
|
interface InsertContentFunctionOptions {
|
|
position: 'head' | 'tail' | 'tailBeforeLastReturn';
|
|
indent?: number;
|
|
}
|
|
/**
|
|
* Add Objective-C import
|
|
* @param source source contents
|
|
* @param imports array of imports, e.g. ['<Foundation/Foundation.h>']
|
|
* @returns updated contents
|
|
*/
|
|
export declare function addObjcImports(source: string, imports: string[]): string;
|
|
/**
|
|
* Find code block of Objective-C interface or implementation
|
|
*
|
|
* @param contents source contents
|
|
* @param declaration interface/implementation, e.g. '@interface Foo'
|
|
* @returns found CodeBlock, or null if not found
|
|
*/
|
|
export declare function findObjcInterfaceCodeBlock(contents: string, declaration: string): CodeBlock | null;
|
|
/**
|
|
* Find code block of Objective-C function without declaration, will return only {} block
|
|
*
|
|
* @param contents source contents
|
|
* @param selector function selector, e.g. 'doSomething:withSomeValue:'
|
|
* @returns found CodeBlock, or null if not found.
|
|
*/
|
|
export declare function findObjcFunctionCodeBlock(contents: string, selector: string): CodeBlock | null;
|
|
/**
|
|
* Insert contents to the Objective-C function block
|
|
*
|
|
* @param srcContents source contents
|
|
* @param selector function selector, e.g. 'doSomething:withSomeValue:'
|
|
* @param insertion code to insert
|
|
* @param options insertion options
|
|
* @returns updated contents
|
|
*/
|
|
export declare function insertContentsInsideObjcFunctionBlock(srcContents: string, selector: string, insertion: string, options: InsertContentFunctionOptions): string;
|
|
/**
|
|
* Insert contents to the Objective-C interface/implementation block
|
|
*
|
|
* @param srcContents source contents
|
|
* @param declaration interface/implementation, e.g. '@interface Foo'
|
|
* @param insertion code to insert
|
|
* @param options insertion options
|
|
* @returns updated contents
|
|
*/
|
|
export declare function insertContentsInsideObjcInterfaceBlock(srcContents: string, declaration: string, insertion: string, options: {
|
|
position: 'head' | 'tail';
|
|
}): string;
|
|
/**
|
|
* Find code block of Swift function without declaration, will return only {} block
|
|
*
|
|
* @param contents source contents
|
|
* @param selector function selector, e.g. 'doSomething(_:withSomeValue:)'
|
|
* @returns found CodeBlock, or null if not found.
|
|
*/
|
|
export declare function findSwiftFunctionCodeBlock(contents: string, selector: string): CodeBlock | null;
|
|
/**
|
|
* Insert contents to the swift class block
|
|
*
|
|
* @param srcContents source contents
|
|
* @param declaration class/extension declaration, e.g. 'class AppDelegate'
|
|
* @param insertion code to append
|
|
* @param options insertion options
|
|
* @returns updated contents
|
|
*/
|
|
export declare function insertContentsInsideSwiftClassBlock(srcContents: string, declaration: string, insertion: string, options: {
|
|
position: 'head' | 'tail';
|
|
}): string;
|
|
/**
|
|
* Insert contents to the Swift function block
|
|
*
|
|
* @param srcContents source contents
|
|
* @param selector function selector, e.g. 'doSomething:withSomeValue:'
|
|
* @param insertion code to insert
|
|
* @param options insertion options
|
|
* @returns updated contents
|
|
*/
|
|
export declare function insertContentsInsideSwiftFunctionBlock(srcContents: string, selector: string, insertion: string, options: InsertContentFunctionOptions): string;
|
|
export {};
|