37 lines
1.1 KiB
JavaScript
37 lines
1.1 KiB
JavaScript
|
/**
|
||
|
* 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.
|
||
|
*
|
||
|
* @flow strict-local
|
||
|
* @format
|
||
|
*/
|
||
|
|
||
|
import type {
|
||
|
HostComponent,
|
||
|
HostInstance,
|
||
|
} from '../../Renderer/shims/ReactNativeTypes';
|
||
|
|
||
|
import * as NativeComponentRegistry from '../../NativeComponent/NativeComponentRegistry';
|
||
|
import codegenNativeCommands from '../../Utilities/codegenNativeCommands';
|
||
|
import {type ViewProps as Props} from './ViewPropTypes';
|
||
|
|
||
|
const ViewNativeComponent: HostComponent<Props> =
|
||
|
NativeComponentRegistry.get<Props>('RCTView', () => ({
|
||
|
uiViewClassName: 'RCTView',
|
||
|
}));
|
||
|
|
||
|
interface NativeCommands {
|
||
|
+hotspotUpdate: (viewRef: HostInstance, x: number, y: number) => void;
|
||
|
+setPressed: (viewRef: HostInstance, pressed: boolean) => void;
|
||
|
}
|
||
|
|
||
|
export const Commands: NativeCommands = codegenNativeCommands<NativeCommands>({
|
||
|
supportedCommands: ['hotspotUpdate', 'setPressed'],
|
||
|
});
|
||
|
|
||
|
export default ViewNativeComponent;
|
||
|
|
||
|
export type ViewNativeComponentType = HostComponent<Props>;
|