12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- /**
- * 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 invariant from 'invariant';
- import ReactNative from '../../Renderer/shims/ReactNative';
- import type {
- BlurEvent,
- FocusEvent,
- PressEvent,
- } from '../../Types/CoreEventTypes';
- import Platform from '../../Utilities/Platform';
- import TVEventHandler from '../../Components/AppleTV/TVEventHandler';
- type TVTouchableConfig = $ReadOnly<{|
- getDisabled: () => boolean,
- onBlur: (event: BlurEvent) => mixed,
- onFocus: (event: FocusEvent) => mixed,
- onPress: (event: PressEvent) => mixed,
- |}>;
- export default class TVTouchable {
- _tvEventHandler: TVEventHandler;
- constructor(component: any, config: TVTouchableConfig) {
- invariant(Platform.isTV, 'TVTouchable: Requires `Platform.isTV`.');
- this._tvEventHandler = new TVEventHandler();
- this._tvEventHandler.enable(component, (_, tvData) => {
- tvData.dispatchConfig = {};
- if (ReactNative.findNodeHandle(component) === tvData.tag) {
- if (tvData.eventType === 'focus') {
- config.onFocus(tvData);
- } else if (tvData.eventType === 'blur') {
- config.onBlur(tvData);
- } else if (tvData.eventType === 'select') {
- if (!config.getDisabled()) {
- config.onPress(tvData);
- }
- }
- }
- });
- }
- destroy(): void {
- this._tvEventHandler.disable();
- }
- }
|