Add spec for TVNavigationEventEmitter (#24898)

Summary:
Part of #24875

## Changelog

[General] [Added] - Add TurboModule spec for TVNavigationEventEmitter
Pull Request resolved: https://github.com/facebook/react-native/pull/24898

Reviewed By: fkgozali

Differential Revision: D15391716

Pulled By: rickhanlonii

fbshipit-source-id: 015120c755894a5c8f75a99c2670a6ac5545b454
This commit is contained in:
Jean Regisser 2019-05-22 03:18:24 -07:00 коммит произвёл Facebook Github Bot
Родитель 6671165f69
Коммит 781c68cb43
2 изменённых файлов: 25 добавлений и 4 удалений

Просмотреть файл

@ -0,0 +1,21 @@
/**
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* @flow
* @format
*/
'use strict';
import type {TurboModule} from 'RCTExport';
import * as TurboModuleRegistry from 'TurboModuleRegistry';
export interface Spec extends TurboModule {
+addListener: (eventName: string) => void;
+removeListeners: (count: number) => void;
}
export default TurboModuleRegistry.get<Spec>('TVNavigationEventEmitter');

Просмотреть файл

@ -11,10 +11,10 @@
'use strict';
const Platform = require('../../Utilities/Platform');
const TVNavigationEventEmitter = require('../../BatchedBridge/NativeModules')
.TVNavigationEventEmitter;
const NativeEventEmitter = require('../../EventEmitter/NativeEventEmitter');
import NativeTVNavigationEventEmitter from './NativeTVNavigationEventEmitter';
function TVEventHandler() {
this.__nativeTVNavigationEventListener = null;
this.__nativeTVNavigationEventEmitter = null;
@ -24,12 +24,12 @@ TVEventHandler.prototype.enable = function(
component: ?any,
callback: Function,
) {
if (Platform.OS === 'ios' && !TVNavigationEventEmitter) {
if (Platform.OS === 'ios' && !NativeTVNavigationEventEmitter) {
return;
}
this.__nativeTVNavigationEventEmitter = new NativeEventEmitter(
TVNavigationEventEmitter,
NativeTVNavigationEventEmitter,
);
this.__nativeTVNavigationEventListener = this.__nativeTVNavigationEventEmitter.addListener(
'onHWKeyEvent',