2015-03-23 20:28:42 +00:00
|
|
|
/**
|
|
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This source code is licensed under the BSD-style license found in the
|
|
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
|
|
*/
|
2015-02-20 04:10:52 +00:00
|
|
|
|
|
|
|
#import "RCTStatusBarManager.h"
|
|
|
|
|
2015-08-19 13:37:53 +00:00
|
|
|
#import "RCTEventDispatcher.h"
|
2015-02-20 04:10:52 +00:00
|
|
|
#import "RCTLog.h"
|
2015-09-22 17:43:56 +00:00
|
|
|
#import "RCTUtils.h"
|
2015-02-20 04:10:52 +00:00
|
|
|
|
2015-06-05 15:46:17 +00:00
|
|
|
@implementation RCTConvert (UIStatusBar)
|
|
|
|
|
|
|
|
RCT_ENUM_CONVERTER(UIStatusBarStyle, (@{
|
|
|
|
@"default": @(UIStatusBarStyleDefault),
|
|
|
|
@"light-content": @(UIStatusBarStyleLightContent),
|
|
|
|
}), UIStatusBarStyleDefault, integerValue);
|
|
|
|
|
|
|
|
RCT_ENUM_CONVERTER(UIStatusBarAnimation, (@{
|
|
|
|
@"none": @(UIStatusBarAnimationNone),
|
|
|
|
@"fade": @(UIStatusBarAnimationFade),
|
|
|
|
@"slide": @(UIStatusBarAnimationSlide),
|
|
|
|
}), UIStatusBarAnimationNone, integerValue);
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
2015-02-20 04:10:52 +00:00
|
|
|
@implementation RCTStatusBarManager
|
|
|
|
|
|
|
|
static BOOL RCTViewControllerBasedStatusBarAppearance()
|
|
|
|
{
|
|
|
|
static BOOL value;
|
|
|
|
static dispatch_once_t onceToken;
|
|
|
|
dispatch_once(&onceToken, ^{
|
2015-06-05 15:46:17 +00:00
|
|
|
value = [[[NSBundle mainBundle] objectForInfoDictionaryKey:
|
|
|
|
@"UIViewControllerBasedStatusBarAppearance"] ?: @YES boolValue];
|
2015-02-20 04:10:52 +00:00
|
|
|
});
|
2015-03-11 02:03:59 +00:00
|
|
|
|
2015-02-20 04:10:52 +00:00
|
|
|
return value;
|
|
|
|
}
|
|
|
|
|
2015-04-08 12:42:43 +00:00
|
|
|
RCT_EXPORT_MODULE()
|
|
|
|
|
2015-08-19 13:37:53 +00:00
|
|
|
@synthesize bridge = _bridge;
|
|
|
|
|
2015-11-25 11:09:00 +00:00
|
|
|
- (void)setBridge:(RCTBridge *)bridge
|
2015-08-19 13:37:53 +00:00
|
|
|
{
|
2015-11-25 11:09:00 +00:00
|
|
|
_bridge = bridge;
|
|
|
|
|
|
|
|
NSNotificationCenter *nc = [NSNotificationCenter defaultCenter];
|
|
|
|
[nc addObserver:self selector:@selector(applicationDidChangeStatusBarFrame:) name:UIApplicationDidChangeStatusBarFrameNotification object:nil];
|
|
|
|
[nc addObserver:self selector:@selector(applicationWillChangeStatusBarFrame:) name:UIApplicationWillChangeStatusBarFrameNotification object:nil];
|
2015-08-19 13:37:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (void)dealloc
|
|
|
|
{
|
|
|
|
[[NSNotificationCenter defaultCenter] removeObserver:self];
|
|
|
|
}
|
|
|
|
|
2015-04-20 19:06:02 +00:00
|
|
|
- (dispatch_queue_t)methodQueue
|
|
|
|
{
|
|
|
|
return dispatch_get_main_queue();
|
|
|
|
}
|
|
|
|
|
2015-08-19 13:37:53 +00:00
|
|
|
- (void)emitEvent:(NSString *)eventName forNotification:(NSNotification *)notification
|
|
|
|
{
|
|
|
|
CGRect frame = [notification.userInfo[UIApplicationStatusBarFrameUserInfoKey] CGRectValue];
|
|
|
|
NSDictionary *event = @{
|
|
|
|
@"frame": @{
|
2015-11-16 11:15:31 +00:00
|
|
|
@"x": @(frame.origin.x),
|
|
|
|
@"y": @(frame.origin.y),
|
|
|
|
@"width": @(frame.size.width),
|
|
|
|
@"height": @(frame.size.height),
|
2015-08-19 13:37:53 +00:00
|
|
|
},
|
|
|
|
};
|
|
|
|
[_bridge.eventDispatcher sendDeviceEventWithName:eventName body:event];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)applicationDidChangeStatusBarFrame:(NSNotification *)notification
|
|
|
|
{
|
|
|
|
[self emitEvent:@"statusBarFrameDidChange" forNotification:notification];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)applicationWillChangeStatusBarFrame:(NSNotification *)notification
|
|
|
|
{
|
|
|
|
[self emitEvent:@"statusBarFrameWillChange" forNotification:notification];
|
|
|
|
}
|
|
|
|
|
2016-01-04 12:30:37 +00:00
|
|
|
RCT_EXPORT_METHOD(getHeight:(RCTResponseSenderBlock)callback)
|
|
|
|
{
|
|
|
|
callback(@[@{
|
|
|
|
@"height": @([UIApplication sharedApplication].statusBarFrame.size.height),
|
|
|
|
}]);
|
|
|
|
}
|
|
|
|
|
2015-04-08 15:52:48 +00:00
|
|
|
RCT_EXPORT_METHOD(setStyle:(UIStatusBarStyle)statusBarStyle
|
|
|
|
animated:(BOOL)animated)
|
2015-02-20 04:10:52 +00:00
|
|
|
{
|
2015-04-18 17:43:20 +00:00
|
|
|
if (RCTViewControllerBasedStatusBarAppearance()) {
|
|
|
|
RCTLogError(@"RCTStatusBarManager module requires that the \
|
|
|
|
UIViewControllerBasedStatusBarAppearance key in the Info.plist is set to NO");
|
|
|
|
} else {
|
2015-09-22 17:43:56 +00:00
|
|
|
[RCTSharedApplication() setStatusBarStyle:statusBarStyle
|
|
|
|
animated:animated];
|
2015-04-18 17:43:20 +00:00
|
|
|
}
|
2015-02-20 04:10:52 +00:00
|
|
|
}
|
|
|
|
|
2015-04-08 15:52:48 +00:00
|
|
|
RCT_EXPORT_METHOD(setHidden:(BOOL)hidden
|
|
|
|
withAnimation:(UIStatusBarAnimation)animation)
|
2015-02-20 04:10:52 +00:00
|
|
|
{
|
2015-04-18 17:43:20 +00:00
|
|
|
if (RCTViewControllerBasedStatusBarAppearance()) {
|
|
|
|
RCTLogError(@"RCTStatusBarManager module requires that the \
|
|
|
|
UIViewControllerBasedStatusBarAppearance key in the Info.plist is set to NO");
|
|
|
|
} else {
|
2015-09-22 17:43:56 +00:00
|
|
|
[RCTSharedApplication() setStatusBarHidden:hidden
|
|
|
|
withAnimation:animation];
|
2015-04-18 17:43:20 +00:00
|
|
|
}
|
2015-02-20 04:10:52 +00:00
|
|
|
}
|
|
|
|
|
2015-07-23 23:19:27 +00:00
|
|
|
RCT_EXPORT_METHOD(setNetworkActivityIndicatorVisible:(BOOL)visible)
|
|
|
|
{
|
2015-09-22 17:43:56 +00:00
|
|
|
RCTSharedApplication().networkActivityIndicatorVisible = visible;
|
2015-07-23 23:19:27 +00:00
|
|
|
}
|
|
|
|
|
2015-02-20 04:10:52 +00:00
|
|
|
@end
|