Files
react-native/packages/rn-tester/js/examples/Switch/SwitchExample.js
Sam Zhou 6b354155ed Replace $FlowFixMe(Props|State|Empty) with just $FlowFixMe (#53002)
Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/53002

Changelog: [Internal]

Reviewed By: marcoww6

Differential Revision: D79524515

fbshipit-source-id: 18b96538a62c7ae5912b1e89d2b50c1420c7eaf5
2025-08-04 11:43:00 -07:00

333 lines
8.6 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
* @format
*/
'use strict';
import type {RNTesterModuleExample} from '../../types/RNTesterTypes';
import RNTesterText from '../../components/RNTesterText';
import React from 'react';
import {Platform, Switch, View} from 'react-native';
type OnOffIndicatorProps = $ReadOnly<{on: boolean, testID: string}>;
function OnOffIndicator({on, testID}: OnOffIndicatorProps) {
return <RNTesterText testID={testID}>{on ? 'On' : 'Off'}</RNTesterText>;
}
type ExampleRowProps = $ReadOnly<{children: React.Node}>;
function ExampleRow({children}: ExampleRowProps) {
return (
<View
style={{
flexDirection: 'row',
justifyContent: 'space-between',
alignItems: 'center',
marginBottom: 10,
}}>
{children}
</View>
);
}
type SimpleSwitchExampleState = $ReadOnly<{
trueSwitchIsOn: boolean,
falseSwitchIsOn: boolean,
}>;
class BasicSwitchExample extends React.Component<{}, SimpleSwitchExampleState> {
state: SimpleSwitchExampleState = {
trueSwitchIsOn: true,
falseSwitchIsOn: false,
};
render(): React.Node {
return (
<View>
<ExampleRow>
<Switch
testID="on-off-initial-off"
onValueChange={value => this.setState({falseSwitchIsOn: value})}
trackColor={{
true: 'yellow',
false: 'purple',
}}
value={this.state.falseSwitchIsOn}
/>
<OnOffIndicator
on={this.state.falseSwitchIsOn}
testID="on-off-initial-off-indicator"
/>
</ExampleRow>
<ExampleRow>
<Switch
testID="on-off-initial-on"
onValueChange={value => this.setState({trueSwitchIsOn: value})}
value={this.state.trueSwitchIsOn}
/>
<OnOffIndicator
on={this.state.trueSwitchIsOn}
testID="on-off-initial-on-indicator"
/>
</ExampleRow>
</View>
);
}
}
class DisabledSwitchExample extends React.Component<
{},
SimpleSwitchExampleState,
> {
state: SimpleSwitchExampleState = {
trueSwitchIsOn: true,
falseSwitchIsOn: false,
};
render(): React.Node {
return (
<View>
<ExampleRow>
<Switch
testID="disabled-initial-off"
disabled={true}
onValueChange={value => this.setState({falseSwitchIsOn: value})}
value={this.state.falseSwitchIsOn}
/>
<OnOffIndicator
on={this.state.falseSwitchIsOn}
testID="disabled-initial-off-indicator"
/>
</ExampleRow>
<ExampleRow>
<Switch
testID="disabled-initial-on"
disabled={true}
onValueChange={value => this.setState({trueSwitchIsOn: value})}
value={this.state.trueSwitchIsOn}
/>
<OnOffIndicator
on={this.state.trueSwitchIsOn}
testID="disabled-initial-on-indicator"
/>
</ExampleRow>
</View>
);
}
}
class ColorSwitchExample extends React.Component<{...}, $FlowFixMe> {
state: any | {colorFalseSwitchIsOn: boolean, colorTrueSwitchIsOn: boolean} = {
colorTrueSwitchIsOn: true,
colorFalseSwitchIsOn: false,
};
render(): React.Node {
return (
<View>
<Switch
testID="initial-false-switch"
onValueChange={value => this.setState({colorFalseSwitchIsOn: value})}
style={{marginBottom: 10}}
thumbColor="#0000ff"
trackColor={{
false: '#ff0000',
true: '#00ff00',
}}
value={this.state.colorFalseSwitchIsOn}
/>
<Switch
testID="initial-true-switch"
onValueChange={value => this.setState({colorTrueSwitchIsOn: value})}
thumbColor="#0000ff"
trackColor={{
false: '#ff0000',
true: '#00ff00',
}}
value={this.state.colorTrueSwitchIsOn}
/>
</View>
);
}
}
class EventSwitchExample extends React.Component<{...}, $FlowFixMe> {
state: any | {eventSwitchIsOn: boolean, eventSwitchRegressionIsOn: boolean} =
{
eventSwitchIsOn: false,
eventSwitchRegressionIsOn: true,
};
render(): React.Node {
return (
<View style={{flexDirection: 'row', justifyContent: 'space-around'}}>
<View>
<Switch
testID="event-switch-top"
onValueChange={value => this.setState({eventSwitchIsOn: value})}
style={{marginBottom: 10}}
value={this.state.eventSwitchIsOn}
/>
<Switch
testID="event-switch-bottom"
onValueChange={value => this.setState({eventSwitchIsOn: value})}
style={{marginBottom: 10}}
value={this.state.eventSwitchIsOn}
/>
<RNTesterText testID="event-switch-indicator">
{this.state.eventSwitchIsOn ? 'On' : 'Off'}
</RNTesterText>
</View>
<View>
<Switch
testID="event-switch-regression-top"
onValueChange={value =>
this.setState({eventSwitchRegressionIsOn: value})
}
style={{marginBottom: 10}}
value={this.state.eventSwitchRegressionIsOn}
/>
<Switch
testID="event-switch-regression-bottom"
onValueChange={value =>
this.setState({eventSwitchRegressionIsOn: value})
}
style={{marginBottom: 10}}
value={this.state.eventSwitchRegressionIsOn}
/>
<RNTesterText testID="event-switch-regression-indicator">
{this.state.eventSwitchRegressionIsOn ? 'On' : 'Off'}
</RNTesterText>
</View>
</View>
);
}
}
class IOSBackgroundColEx extends React.Component<{...}, $FlowFixMe> {
state: any | {iosBackgroundColor: string} = {
iosBackgroundColor: '#ffa500',
};
render(): React.Node {
return (
<View>
<Switch
disabled
ios_backgroundColor={this.state.iosBackgroundColor}
style={{marginBottom: 20}}
/>
<RNTesterText>
The background color can be seen either when the switch value is false
or when the switch is disabled (and the switch is translucent).{' '}
</RNTesterText>
</View>
);
}
}
class OnChangeExample extends React.Component<{...}, $FlowFixMe> {
render(): React.Node {
return (
<View>
<Switch
onChange={() => {
// eslint-disable-next-line no-alert
alert('OnChange Called');
}}
/>
</View>
);
}
}
class ContainerBackgroundColorStyleExample extends React.Component<
{...},
$FlowFixMe,
> {
render(): React.Node {
return (
<View>
<Switch
style={{backgroundColor: 'blue'}}
thumbColor="white"
value={true}
/>
</View>
);
}
}
exports.title = 'Switch';
exports.documentationURL = 'https://reactnative.dev/docs/switch';
exports.category = 'UI';
exports.displayName = 'SwitchExample';
exports.description = 'Native boolean input';
exports.examples = [
{
title: 'Switches can be set to true or false',
name: 'basic',
render(): React.MixedElement {
return <BasicSwitchExample />;
},
},
{
title: 'Switches can be disabled',
name: 'disabled',
render(): React.MixedElement {
return <DisabledSwitchExample />;
},
},
{
title: 'Change events can be detected',
name: 'events',
render(): React.MixedElement {
return <EventSwitchExample />;
},
},
{
title: 'Switches are controlled components',
name: 'controlled',
render(): React.MixedElement {
return <Switch testID="controlled-switch" />;
},
},
{
title: 'Custom colors can be provided',
name: 'custom-colors',
render(): React.MixedElement {
return <ColorSwitchExample />;
},
},
{
title: 'OnChange receives the change event as an argument',
render(): React.MixedElement {
return <OnChangeExample />;
},
},
{
title: "The container's background color can be set",
render(): React.MixedElement {
return <ContainerBackgroundColorStyleExample />;
},
},
] as Array<RNTesterModuleExample>;
if (Platform.OS === 'ios') {
exports.examples.push({
title: '[iOS Only] Custom background colors can be set',
render(): React.MixedElement {
return <IOSBackgroundColEx />;
},
});
}