Files
react-native/packages/rn-tester/js/components/RNTOption.js
Tim Yung 1977dd6596 RN: Sort Pragmas in Headers (#51554)
Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/51554

Sorts pragma directives file headers in React Native.

Changelog:
[Internal]

Reviewed By: SamChou19815

Differential Revision: D75264593

fbshipit-source-id: 9e4b253dd0fc94dc2fc469d7114b93a8aae305f4
2025-05-22 21:18:53 -07:00

88 lines
2.3 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
*/
'use strict';
import type {GestureResponderEvent} from 'react-native';
import type {ViewStyleProp} from 'react-native/Libraries/StyleSheet/StyleSheet';
import {RNTesterThemeContext} from './RNTesterTheme';
import * as React from 'react';
import {useContext, useState} from 'react';
import {Pressable, StyleSheet, Text, View} from 'react-native';
type Props = $ReadOnly<{
testID?: ?string,
label: string,
onPress?: ?(event: GestureResponderEvent) => mixed,
selected?: ?boolean,
multiSelect?: ?boolean,
disabled?: ?boolean,
style?: ViewStyleProp,
}>;
/**
* A reusable toggle button component for RNTester. Highlights when selected.
*/
export default function RNTOption(props: Props): React.Node {
const [pressed, setPressed] = useState(false);
const theme = useContext(RNTesterThemeContext);
return (
<Pressable
accessibilityState={{selected: !!props.selected}}
disabled={
props.disabled === false || props.multiSelect === true
? false
: props.selected
}
hitSlop={4}
onPress={props.disabled === true ? undefined : props.onPress}
onPressIn={() => setPressed(true)}
onPressOut={() => setPressed(false)}
testID={props.testID}>
<View
style={[
{borderColor: theme.BorderColor},
styles.container,
props.selected === true ? styles.selected : null,
pressed && props.selected !== true ? styles.pressed : null,
props.disabled === true
? [
styles.disabled,
{backgroundColor: theme.TertiarySystemFillColor},
]
: null,
props.style,
]}>
<Text style={{color: theme.SecondaryLabelColor}}>{props.label}</Text>
</View>
</Pressable>
);
}
const styles = StyleSheet.create({
pressed: {
backgroundColor: 'rgba(100,215,255,.3)',
},
selected: {
backgroundColor: 'rgba(100,215,255,.3)',
borderColor: 'rgba(100,215,255,.3)',
},
disabled: {borderWidth: 0},
container: {
borderWidth: 1,
borderRadius: 16,
padding: 6,
paddingHorizontal: 10,
alignItems: 'center',
},
});