react-native-macos
Version:
[Microsoft Fork] A framework for building native apps using React
65 lines (51 loc) • 1.97 kB
JavaScript
/**
* 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 strict-local
* @format
*/
;
import * as React from 'react';
import type {
WithDefault,
BubblingEventHandler,
} from 'react-native/Libraries/Types/CodegenTypes';
import codegenNativeCommands from 'react-native/Libraries/Utilities/codegenNativeCommands';
import codegenNativeComponent from 'react-native/Libraries/Utilities/codegenNativeComponent';
import type {HostComponent} from 'react-native/Libraries/Renderer/shims/ReactNativeTypes';
import type {ProcessedColorValue} from '../../StyleSheet/processColor'; // TODO(macOS ISS#2323203)
import type {ViewProps} from '../View/ViewPropTypes';
type SwitchChangeEvent = $ReadOnly<{|
value: boolean,
|}>;
type NativeProps = $ReadOnly<{|
...ViewProps,
// Props
disabled?: WithDefault<boolean, false>,
enabled?: WithDefault<boolean, true>,
thumbColor?: ?(string | ProcessedColorValue), // TODO(macOS ISS#2323203)
trackColorForFalse?: ?(string | ProcessedColorValue), // TODO(macOS ISS#2323203)
trackColorForTrue?: ?(string | ProcessedColorValue), // TODO(macOS ISS#2323203)
value?: WithDefault<boolean, false>,
on?: WithDefault<boolean, false>,
thumbTintColor?: ?(string | ProcessedColorValue), // TODO(macOS ISS#2323203)
trackTintColor?: ?(string | ProcessedColorValue), // TODO(macOS ISS#2323203)
// Events
onChange?: BubblingEventHandler<SwitchChangeEvent>,
|}>;
type NativeType = HostComponent<NativeProps>;
interface NativeCommands {
+setNativeValue: (
viewRef: React.ElementRef<NativeType>,
value: boolean,
) => void;
}
export const Commands: NativeCommands = codegenNativeCommands<NativeCommands>({
supportedCommands: ['setNativeValue'],
});
export default (codegenNativeComponent<NativeProps>('AndroidSwitch', {
interfaceOnly: true,
}): NativeType);