- 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
34 lines
917 B
Plaintext
34 lines
917 B
Plaintext
/**
|
|
* Copyright (c) 2013-present, Facebook, Inc.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @providesModule isInternationalPhoneNumber
|
|
*
|
|
* Simple client-side validation of international phone numbers
|
|
*/
|
|
const US_NUMBER_RE = /^1\(?\d{3}\)?\d{7}$/;
|
|
const NORWAY_NUMBER_RE = /^47\d{8}$/;
|
|
const INTL_NUMBER_RE = /^\d{1,4}\(?\d{2,3}\)?\d{4,}$/;
|
|
|
|
function isInternationalPhoneNumber(number) {
|
|
number = number.replace(/[\-\s]+/g, '') // strip all spaces and hyphens
|
|
.replace(/^\+?0{0,2}/, ''); // strip up to 2 leading 0s and +
|
|
|
|
if (number.startsWith('0')) {
|
|
return false;
|
|
}
|
|
|
|
if (number.startsWith('1')) {
|
|
return US_NUMBER_RE.test(number);
|
|
}
|
|
|
|
if (number.startsWith('47')) {
|
|
return NORWAY_NUMBER_RE.test(number);
|
|
}
|
|
|
|
return INTL_NUMBER_RE.test(number);
|
|
}
|
|
|
|
module.exports = isInternationalPhoneNumber; |