- 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
44 lines
1.5 KiB
HTML
44 lines
1.5 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head lang="en">
|
|
<meta charset="UTF-8">
|
|
<title>Tests</title>
|
|
<link rel="stylesheet" href="../../node_modules/qunitjs/qunit/qunit.css">
|
|
|
|
<script src="../../node_modules/jquery/dist/jquery.min.js"></script>
|
|
<script src="../../node_modules/lodash-compat/index.js"></script>
|
|
<script src="../../node_modules/qunitjs/qunit/qunit.js"></script>
|
|
<!--[if !IE]> --><script src="../../node_modules/blanket/dist/qunit/blanket.js"></script><!-- <![endif]-->
|
|
<script src="assets/utils.js"></script>
|
|
|
|
<script src="../../node_modules/hammer-simulator/index.js"></script>
|
|
<script>
|
|
Simulator.setType('touch');
|
|
Simulator.events.touch.fakeSupport();
|
|
</script>
|
|
|
|
<script src="../../dist/hammer.js" data-cover></script>
|
|
</head>
|
|
<body>
|
|
<div id="qunit"></div>
|
|
<div id="qunit-fixture"></div>
|
|
|
|
<script src="test_utils.js"></script>
|
|
<script src="test_enable.js"></script>
|
|
<script src="test_hammer.js"></script>
|
|
<script src="test_events.js"></script>
|
|
<script src="test_nested_gesture_recognizers.js"></script>
|
|
<script src="test_simultaneous_recognition.js"></script>
|
|
<script src="test_propagation_bubble.js"></script>
|
|
<script src="test_gestures.js"></script>
|
|
<script src="test_multiple_taps.js"></script>
|
|
<script src="test_require_failure.js"></script>
|
|
|
|
<script src="test_jquery_plugin.js"></script>
|
|
<script src="gestures/test_pan.js"></script>
|
|
<script src="gestures/test_pinch.js"></script>
|
|
<script src="gestures/test_swipe.js"></script>
|
|
|
|
</body>
|
|
</html>
|