- 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
94 lines
2.4 KiB
C++
94 lines
2.4 KiB
C++
/*
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <react/bridging/AString.h>
|
|
#include <react/bridging/Base.h>
|
|
|
|
#include <map>
|
|
#include <unordered_map>
|
|
|
|
namespace facebook::react {
|
|
|
|
template <>
|
|
struct Bridging<jsi::WeakObject> {
|
|
static jsi::WeakObject fromJs(jsi::Runtime& rt, const jsi::Object& value) {
|
|
return jsi::WeakObject(rt, value);
|
|
}
|
|
|
|
static jsi::Value toJs(jsi::Runtime& rt, jsi::WeakObject& value) {
|
|
return value.lock(rt);
|
|
}
|
|
};
|
|
|
|
template <typename T>
|
|
struct Bridging<
|
|
std::shared_ptr<T>,
|
|
std::enable_if_t<std::is_base_of_v<jsi::HostObject, T>>> {
|
|
static std::shared_ptr<T> fromJs(jsi::Runtime& rt, const jsi::Object& value) {
|
|
return value.getHostObject<T>(rt);
|
|
}
|
|
|
|
static jsi::Object toJs(jsi::Runtime& rt, std::shared_ptr<T> value) {
|
|
return jsi::Object::createFromHostObject(rt, std::move(value));
|
|
}
|
|
};
|
|
|
|
namespace map_detail {
|
|
|
|
template <typename T>
|
|
struct Bridging {
|
|
static T fromJs(
|
|
jsi::Runtime& rt,
|
|
const jsi::Object& value,
|
|
const std::shared_ptr<CallInvoker>& jsInvoker) {
|
|
T result;
|
|
auto propertyNames = value.getPropertyNames(rt);
|
|
auto length = propertyNames.length(rt);
|
|
|
|
for (size_t i = 0; i < length; i++) {
|
|
auto propertyName = propertyNames.getValueAtIndex(rt, i);
|
|
|
|
result.emplace(
|
|
bridging::fromJs<std::string>(rt, propertyName, jsInvoker),
|
|
bridging::fromJs<typename T::mapped_type>(
|
|
rt, value.getProperty(rt, propertyName.asString(rt)), jsInvoker));
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
static jsi::Object toJs(
|
|
jsi::Runtime& rt,
|
|
const T& map,
|
|
const std::shared_ptr<CallInvoker>& jsInvoker) {
|
|
auto resultObject = jsi::Object(rt);
|
|
|
|
for (const auto& [key, value] : map) {
|
|
resultObject.setProperty(
|
|
rt,
|
|
jsi::PropNameID::forUtf8(rt, key),
|
|
bridging::toJs(rt, value, jsInvoker));
|
|
}
|
|
|
|
return resultObject;
|
|
}
|
|
};
|
|
|
|
} // namespace map_detail
|
|
|
|
template <typename... Args>
|
|
struct Bridging<std::map<std::string, Args...>>
|
|
: map_detail::Bridging<std::map<std::string, Args...>> {};
|
|
|
|
template <typename... Args>
|
|
struct Bridging<std::unordered_map<std::string, Args...>>
|
|
: map_detail::Bridging<std::unordered_map<std::string, Args...>> {};
|
|
|
|
} // namespace facebook::react
|