/* * 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. */ #import "RCTAppState.h" #import #import #import #import #import #import "CoreModulesPlugins.h" static NSString *RCTCurrentAppState() { static NSDictionary *states; static dispatch_once_t onceToken; dispatch_once(&onceToken, ^{ states = @{@(UIApplicationStateActive) : @"active", @(UIApplicationStateBackground) : @"background"}; }); if (RCTRunningInAppExtension()) { return @"extension"; } return states[@(RCTSharedApplication().applicationState)] ?: @"unknown"; } @interface RCTAppState () @end @implementation RCTAppState { NSString *_lastKnownState; } RCT_EXPORT_MODULE() + (BOOL)requiresMainQueueSetup { return YES; } - (dispatch_queue_t)methodQueue { return dispatch_get_main_queue(); } - (facebook::react::ModuleConstants)constantsToExport { return (facebook::react::ModuleConstants)[self getConstants]; } - (facebook::react::ModuleConstants)getConstants { __block facebook::react::ModuleConstants constants; RCTUnsafeExecuteOnMainQueueSync(^{ constants = facebook::react::typedConstants({ .initialAppState = RCTCurrentAppState(), }); }); return constants; } #pragma mark - Lifecycle - (NSArray *)supportedEvents { return @[ @"appStateDidChange", @"memoryWarning" ]; } - (void)startObserving { for (NSString *name in @[ UIApplicationDidBecomeActiveNotification, UIApplicationDidEnterBackgroundNotification, UIApplicationDidFinishLaunchingNotification, UIApplicationWillResignActiveNotification, UIApplicationWillEnterForegroundNotification ]) { [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(handleAppStateDidChange:) name:name object:nil]; } [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(handleMemoryWarning) name:UIApplicationDidReceiveMemoryWarningNotification object:nil]; } - (void)stopObserving { [[NSNotificationCenter defaultCenter] removeObserver:self]; } #pragma mark - App Notification Methods - (void)handleMemoryWarning { if ([self canSendEvents_DEPRECATED]) { [self sendEventWithName:@"memoryWarning" body:nil]; } } - (void)handleAppStateDidChange:(NSNotification *)notification { NSString *newState; if ([notification.name isEqualToString:UIApplicationWillResignActiveNotification]) { newState = @"inactive"; } else if ([notification.name isEqualToString:UIApplicationWillEnterForegroundNotification]) { newState = @"background"; } else { newState = RCTCurrentAppState(); } if (![newState isEqualToString:_lastKnownState]) { _lastKnownState = newState; if ([self canSendEvents_DEPRECATED]) { [self sendEventWithName:@"appStateDidChange" body:@{@"app_state" : _lastKnownState}]; } } } #pragma mark - Public API /** * Get the current background/foreground state of the app */ RCT_EXPORT_METHOD(getCurrentAppState : (RCTResponseSenderBlock)callback error : (__unused RCTResponseSenderBlock)error) { callback(@[ @{@"app_state" : RCTCurrentAppState()} ]); } - (std::shared_ptr)getTurboModule: (const facebook::react::ObjCTurboModule::InitParams &)params { return std::make_shared(params); } @end Class RCTAppStateCls(void) { return RCTAppState.class; }