forked from facebook/react-native
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move Switch native require call to new file
Summary: Moving out the requireNativeComponent call into a new file. We want this long term for all of our view managers to support codegen of the native side and so we can move the viewConfigs into JS. Reviewed By: yungsters Differential Revision: D9191214 fbshipit-source-id: d0bddbb50bb1cf6b5a727d72faf834b007ad9440
- Loading branch information
1 parent
51b12dd
commit 457a74c
Showing
2 changed files
with
64 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
/** | ||
* Copyright (c) 2013-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. | ||
* | ||
* @flow | ||
* @format | ||
*/ | ||
|
||
'use strict'; | ||
|
||
const Platform = require('Platform'); | ||
const ReactNative = require('ReactNative'); | ||
|
||
const requireNativeComponent = require('requireNativeComponent'); | ||
|
||
import type {SwitchChangeEvent} from 'CoreEventTypes'; | ||
import type {ViewProps} from 'ViewPropTypes'; | ||
|
||
// @see ReactSwitchManager.java | ||
export type NativeAndroidProps = $ReadOnly<{| | ||
...ViewProps, | ||
enabled?: ?boolean, | ||
on?: ?boolean, | ||
onChange?: ?(event: SwitchChangeEvent) => mixed, | ||
thumbTintColor?: ?string, | ||
trackTintColor?: ?string, | ||
|}>; | ||
|
||
// @see RCTSwitchManager.m | ||
export type NativeIOSProps = $ReadOnly<{| | ||
...ViewProps, | ||
disabled?: ?boolean, | ||
onChange?: ?(event: SwitchChangeEvent) => mixed, | ||
onTintColor?: ?string, | ||
thumbTintColor?: ?string, | ||
tintColor?: ?string, | ||
value?: ?boolean, | ||
|}>; | ||
|
||
type SwitchNativeComponentType = Class< | ||
ReactNative.NativeComponent< | ||
$ReadOnly<{| | ||
...NativeAndroidProps, | ||
...NativeIOSProps, | ||
|}>, | ||
>, | ||
>; | ||
|
||
const SwitchNativeComponent: SwitchNativeComponentType = | ||
Platform.OS === 'android' | ||
? (requireNativeComponent('AndroidSwitch'): any) | ||
: (requireNativeComponent('RCTSwitch'): any); | ||
|
||
module.exports = SwitchNativeComponent; |