- 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
56 lines
1.7 KiB
JavaScript
56 lines
1.7 KiB
JavaScript
import { Asset } from 'expo-asset';
|
|
import { CodedError } from 'expo-modules-core';
|
|
import ExpoFontLoader from './ExpoFontLoader';
|
|
import { FontDisplay } from './Font.types';
|
|
function uriFromFontSource(asset) {
|
|
if (typeof asset === 'string') {
|
|
return asset || null;
|
|
}
|
|
else if (typeof asset === 'object') {
|
|
return asset.uri || asset.localUri || asset.default || null;
|
|
}
|
|
else if (typeof asset === 'number') {
|
|
return uriFromFontSource(Asset.fromModule(asset));
|
|
}
|
|
return null;
|
|
}
|
|
function displayFromFontSource(asset) {
|
|
return asset.display || FontDisplay.AUTO;
|
|
}
|
|
export function fontFamilyNeedsScoping(name) {
|
|
return false;
|
|
}
|
|
export function getAssetForSource(source) {
|
|
const uri = uriFromFontSource(source);
|
|
const display = displayFromFontSource(source);
|
|
if (!uri || typeof uri !== 'string') {
|
|
throwInvalidSourceError(uri);
|
|
}
|
|
return {
|
|
uri: uri,
|
|
display,
|
|
};
|
|
}
|
|
function throwInvalidSourceError(source) {
|
|
let type = typeof source;
|
|
if (type === 'object')
|
|
type = JSON.stringify(source, null, 2);
|
|
throw new CodedError(`ERR_FONT_SOURCE`, `Expected font asset of type \`string | FontResource | Asset\` instead got: ${type}`);
|
|
}
|
|
// NOTE(EvanBacon): No async keyword!
|
|
export function loadSingleFontAsync(name, input) {
|
|
if (typeof input !== 'object' || typeof input.uri !== 'string' || input.downloadAsync) {
|
|
throwInvalidSourceError(input);
|
|
}
|
|
try {
|
|
return ExpoFontLoader.loadAsync(name, input);
|
|
}
|
|
catch {
|
|
// No-op.
|
|
}
|
|
return Promise.resolve();
|
|
}
|
|
export function getNativeFontName(name) {
|
|
return name;
|
|
}
|
|
//# sourceMappingURL=FontLoader.web.js.map
|