/** * Copyright (c) 2015-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. */ #import "RCTTVNavigationEventEmitter.h" NSString *const RCTTVNavigationEventNotification = @"RCTTVNavigationEventNotification"; static NSString *const TVNavigationEventName = @"onHWKeyEvent"; @implementation RCTTVNavigationEventEmitter RCT_EXPORT_MODULE() + (BOOL)requiresMainQueueSetup { return NO; } - (instancetype)init { if (self = [super init]) { [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(handleTVNavigationEventNotification:) name:RCTTVNavigationEventNotification object:nil]; } return self; } - (void)dealloc { [[NSNotificationCenter defaultCenter] removeObserver:self]; } - (NSArray *)supportedEvents { return @[TVNavigationEventName]; } - (void)handleTVNavigationEventNotification:(NSNotification *)notif { if (self.bridge) { [self sendEventWithName:TVNavigationEventName body:notif.object]; } } @end