- 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
100 lines
2.8 KiB
Objective-C
100 lines
2.8 KiB
Objective-C
// Copyright 2016-present 650 Industries. All rights reserved.
|
|
|
|
#import <EXLocation/EXBackgroundLocationPermissionRequester.h>
|
|
|
|
#import <objc/message.h>
|
|
#import <CoreLocation/CLLocationManagerDelegate.h>
|
|
|
|
static SEL alwaysAuthorizationSelector;
|
|
|
|
@interface EXBackgroundLocationPermissionRequester ()
|
|
|
|
@property (nonatomic, assign) bool wasAsked;
|
|
|
|
@end
|
|
|
|
@implementation EXBackgroundLocationPermissionRequester
|
|
|
|
- (instancetype)init
|
|
{
|
|
if (self = [super init]) {
|
|
_wasAsked = false;
|
|
}
|
|
return self;
|
|
}
|
|
|
|
+ (NSString *)permissionType
|
|
{
|
|
return @"locationBackground";
|
|
}
|
|
|
|
+ (void)load
|
|
{
|
|
alwaysAuthorizationSelector = NSSelectorFromString([@"request" stringByAppendingString:@"AlwaysAuthorization"]);
|
|
}
|
|
|
|
- (void)requestLocationPermissions
|
|
{
|
|
if ([EXBaseLocationRequester isConfiguredForAlwaysAuthorization] && [self.locationManager respondsToSelector:alwaysAuthorizationSelector]) {
|
|
_wasAsked = true;
|
|
[[NSNotificationCenter defaultCenter] addObserver:self
|
|
selector:@selector(handleAppBecomingActive)
|
|
name:UIApplicationDidBecomeActiveNotification
|
|
object:nil];
|
|
((void (*)(id, SEL))objc_msgSend)(self.locationManager, alwaysAuthorizationSelector);
|
|
} else {
|
|
self.reject(@"ERR_LOCATION_INFO_PLIST", @"One of the `NSLocation*UsageDescription` keys must be present in Info.plist to be able to use geolocation.", nil);
|
|
|
|
self.resolve = nil;
|
|
self.reject = nil;
|
|
}
|
|
}
|
|
|
|
// If user selects "Keep Only While Using" option, the `locationManagerDidChangeAuthorization` won't be called.
|
|
// So we don't know when we should resolve promise.
|
|
// Hovewer, we can check for `UIApplicationDidBecomeActiveNotification` event which is called when permissions modal disappears.
|
|
- (void)handleAppBecomingActive
|
|
{
|
|
[[NSNotificationCenter defaultCenter] removeObserver:self];
|
|
if (self.resolve) {
|
|
self.resolve([self getPermissions]);
|
|
self.resolve = nil;
|
|
self.reject = nil;
|
|
}
|
|
}
|
|
|
|
- (NSDictionary *)parsePermissions:(CLAuthorizationStatus)systemStatus
|
|
{
|
|
EXPermissionStatus status;
|
|
|
|
switch (systemStatus) {
|
|
case kCLAuthorizationStatusAuthorizedAlways: {
|
|
status = EXPermissionStatusGranted;
|
|
break;
|
|
}
|
|
case kCLAuthorizationStatusDenied:
|
|
case kCLAuthorizationStatusRestricted: {
|
|
status = EXPermissionStatusDenied;
|
|
break;
|
|
}
|
|
case kCLAuthorizationStatusAuthorizedWhenInUse: {
|
|
if (_wasAsked) {
|
|
status = EXPermissionStatusDenied;
|
|
} else {
|
|
status = EXPermissionStatusUndetermined;
|
|
}
|
|
break;
|
|
}
|
|
case kCLAuthorizationStatusNotDetermined:
|
|
default: {
|
|
|
|
status = EXPermissionStatusUndetermined;
|
|
break;
|
|
}
|
|
}
|
|
|
|
return @{ @"status": @(status) };
|
|
}
|
|
|
|
@end
|