mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/28058 I'm taking the first step towards supporting iOS 13 UIScene APIs and modernizing React Native not to assume an app only has a single window. See discussion here: https://github.com/facebook/react-native/issues/25181#issuecomment-505612941 The approach I'm taking is to take advantage of `RootTagContext` and passing it to NativeModules so that they can identify correctly which window they refer to. Here I'm just laying groundwork. - [x] `Alert` and `ActionSheetIOS` take an optional `rootTag` argument that will cause them to appear on the correct window - [x] `StatusBar` methods also have `rootTag` argument added, but it's not fully hooked up on the native side — this turns out to require some more work, see: https://github.com/facebook/react-native/issues/25181#issuecomment-506690818 - [x] `setNetworkActivityIndicatorVisible` is deprecated in iOS 13 - [x] `RCTPerfMonitor`, `RCTProfile` no longer assume `UIApplicationDelegate` has a `window` property (no longer the best practice) — they now just render on the key window Next steps: Add VC-based status bar management (if I get the OK on https://github.com/facebook/react-native/issues/25181#issuecomment-506690818 ), add multiple window demo to RNTester, deprecate Dimensions in favor of a layout context, consider adding hook-based APIs for native modules such as Alert that automatically know which rootTag to pass ## Changelog [Internal] [Changed] - Modernize Modal to use RootTagContext [iOS] [Changed] - `Alert`, `ActionSheetIOS`, `StatusBar` methods now take an optional `surface` argument (for future iPadOS 13 support) [iOS] [Changed] - RCTPresentedViewController now takes a nullable `window` arg [Internal] [Changed] - Do not assume `UIApplicationDelegate` has a `window` property Pull Request resolved: https://github.com/facebook/react-native/pull/25425 Test Plan: - Open RNTester and: - go to Modal and check if it still works - Alert → see if works - ACtionSheetIOS → see if it works - StatusBar → see if it works - Share → see if it works Reviewed By: PeteTheHeat Differential Revision: D16957751 Pulled By: hramos fbshipit-source-id: ae2a4478e2e7f8d2be3022c9c4861561ec244a26
545 lines
14 KiB
JavaScript
545 lines
14 KiB
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.
|
|
*
|
|
* @format
|
|
* @flow strict-local
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
const React = require('react');
|
|
const {
|
|
StatusBar,
|
|
StyleSheet,
|
|
Text,
|
|
TouchableHighlight,
|
|
View,
|
|
Modal,
|
|
} = require('react-native');
|
|
|
|
const colors = ['#ff0000', '#00ff00', '#0000ff', 'rgba(0, 0, 0, 0.4)'];
|
|
|
|
const barStyles = ['default', 'light-content'];
|
|
|
|
const showHideTransitions = ['fade', 'slide'];
|
|
|
|
function getValue<T>(values: Array<T>, index: number): T {
|
|
return values[index % values.length];
|
|
}
|
|
|
|
class StatusBarHiddenExample extends React.Component<{...}, $FlowFixMeState> {
|
|
state = {
|
|
animated: true,
|
|
hidden: false,
|
|
showHideTransition: getValue(showHideTransitions, 0),
|
|
};
|
|
|
|
_showHideTransitionIndex = 0;
|
|
|
|
_onChangeAnimated = () => {
|
|
this.setState({animated: !this.state.animated});
|
|
};
|
|
|
|
_onChangeHidden = () => {
|
|
this.setState({hidden: !this.state.hidden});
|
|
};
|
|
|
|
_onChangeTransition = () => {
|
|
this._showHideTransitionIndex++;
|
|
this.setState({
|
|
showHideTransition: getValue(
|
|
showHideTransitions,
|
|
this._showHideTransitionIndex,
|
|
),
|
|
});
|
|
};
|
|
|
|
render() {
|
|
return (
|
|
<View>
|
|
<StatusBar
|
|
hidden={this.state.hidden}
|
|
showHideTransition={this.state.showHideTransition}
|
|
animated={this.state.animated}
|
|
/>
|
|
<TouchableHighlight
|
|
style={styles.wrapper}
|
|
onPress={this._onChangeHidden}>
|
|
<View style={styles.button}>
|
|
<Text>hidden: {this.state.hidden ? 'true' : 'false'}</Text>
|
|
</View>
|
|
</TouchableHighlight>
|
|
<TouchableHighlight
|
|
style={styles.wrapper}
|
|
onPress={this._onChangeAnimated}>
|
|
<View style={styles.button}>
|
|
<Text>
|
|
animated (ios only): {this.state.animated ? 'true' : 'false'}
|
|
</Text>
|
|
</View>
|
|
</TouchableHighlight>
|
|
<TouchableHighlight
|
|
style={styles.wrapper}
|
|
onPress={this._onChangeTransition}>
|
|
<View style={styles.button}>
|
|
<Text>
|
|
showHideTransition (ios only): '
|
|
{getValue(showHideTransitions, this._showHideTransitionIndex)}'
|
|
</Text>
|
|
</View>
|
|
</TouchableHighlight>
|
|
<ModalExample />
|
|
</View>
|
|
);
|
|
}
|
|
}
|
|
|
|
class StatusBarStyleExample extends React.Component<{...}, $FlowFixMeState> {
|
|
_barStyleIndex = 0;
|
|
|
|
_onChangeBarStyle = () => {
|
|
this._barStyleIndex++;
|
|
this.setState({barStyle: getValue(barStyles, this._barStyleIndex)});
|
|
};
|
|
|
|
_onChangeAnimated = () => {
|
|
this.setState({animated: !this.state.animated});
|
|
};
|
|
|
|
state = {
|
|
animated: true,
|
|
barStyle: getValue(barStyles, this._barStyleIndex),
|
|
};
|
|
|
|
render() {
|
|
return (
|
|
<View>
|
|
<StatusBar
|
|
animated={this.state.animated}
|
|
barStyle={this.state.barStyle}
|
|
/>
|
|
<TouchableHighlight
|
|
style={styles.wrapper}
|
|
onPress={this._onChangeBarStyle}>
|
|
<View style={styles.button}>
|
|
<Text>style: '{getValue(barStyles, this._barStyleIndex)}'</Text>
|
|
</View>
|
|
</TouchableHighlight>
|
|
<TouchableHighlight
|
|
style={styles.wrapper}
|
|
onPress={this._onChangeAnimated}>
|
|
<View style={styles.button}>
|
|
<Text>animated: {this.state.animated ? 'true' : 'false'}</Text>
|
|
</View>
|
|
</TouchableHighlight>
|
|
</View>
|
|
);
|
|
}
|
|
}
|
|
|
|
class StatusBarNetworkActivityExample extends React.Component<
|
|
{...},
|
|
$FlowFixMeState,
|
|
> {
|
|
state = {
|
|
networkActivityIndicatorVisible: false,
|
|
};
|
|
|
|
_onChangeNetworkIndicatorVisible = () => {
|
|
this.setState({
|
|
networkActivityIndicatorVisible: !this.state
|
|
.networkActivityIndicatorVisible,
|
|
});
|
|
};
|
|
|
|
render() {
|
|
return (
|
|
<View>
|
|
<StatusBar
|
|
networkActivityIndicatorVisible={
|
|
this.state.networkActivityIndicatorVisible
|
|
}
|
|
/>
|
|
<TouchableHighlight
|
|
style={styles.wrapper}
|
|
onPress={this._onChangeNetworkIndicatorVisible}>
|
|
<View style={styles.button}>
|
|
<Text>
|
|
networkActivityIndicatorVisible:
|
|
{this.state.networkActivityIndicatorVisible ? 'true' : 'false'}
|
|
</Text>
|
|
</View>
|
|
</TouchableHighlight>
|
|
</View>
|
|
);
|
|
}
|
|
}
|
|
|
|
class StatusBarBackgroundColorExample extends React.Component<
|
|
{...},
|
|
$FlowFixMeState,
|
|
> {
|
|
state = {
|
|
animated: true,
|
|
backgroundColor: getValue(colors, 0),
|
|
};
|
|
|
|
_colorIndex = 0;
|
|
|
|
_onChangeBackgroundColor = () => {
|
|
this._colorIndex++;
|
|
this.setState({backgroundColor: getValue(colors, this._colorIndex)});
|
|
};
|
|
|
|
_onChangeAnimated = () => {
|
|
this.setState({animated: !this.state.animated});
|
|
};
|
|
|
|
render() {
|
|
return (
|
|
<View>
|
|
<StatusBar
|
|
backgroundColor={this.state.backgroundColor}
|
|
animated={this.state.animated}
|
|
/>
|
|
<TouchableHighlight
|
|
style={styles.wrapper}
|
|
onPress={this._onChangeBackgroundColor}>
|
|
<View style={styles.button}>
|
|
<Text>backgroundColor: '{getValue(colors, this._colorIndex)}'</Text>
|
|
</View>
|
|
</TouchableHighlight>
|
|
<TouchableHighlight
|
|
style={styles.wrapper}
|
|
onPress={this._onChangeAnimated}>
|
|
<View style={styles.button}>
|
|
<Text>animated: {this.state.animated ? 'true' : 'false'}</Text>
|
|
</View>
|
|
</TouchableHighlight>
|
|
</View>
|
|
);
|
|
}
|
|
}
|
|
|
|
class StatusBarTranslucentExample extends React.Component<
|
|
{...},
|
|
$FlowFixMeState,
|
|
> {
|
|
state = {
|
|
translucent: false,
|
|
};
|
|
|
|
_onChangeTranslucent = () => {
|
|
this.setState({
|
|
translucent: !this.state.translucent,
|
|
});
|
|
};
|
|
|
|
render() {
|
|
return (
|
|
<View>
|
|
<StatusBar translucent={this.state.translucent} />
|
|
<TouchableHighlight
|
|
style={styles.wrapper}
|
|
onPress={this._onChangeTranslucent}>
|
|
<View style={styles.button}>
|
|
<Text>
|
|
translucent: {this.state.translucent ? 'true' : 'false'}
|
|
</Text>
|
|
</View>
|
|
</TouchableHighlight>
|
|
</View>
|
|
);
|
|
}
|
|
}
|
|
|
|
class StatusBarStaticIOSExample extends React.Component<{...}> {
|
|
// $FlowFixMe
|
|
viewRef: React.MutableRefObject<React.ElementRef<
|
|
typeof View,
|
|
> | void> = React.createRef();
|
|
|
|
render() {
|
|
return (
|
|
<View ref={this.viewRef}>
|
|
<TouchableHighlight
|
|
style={styles.wrapper}
|
|
onPress={() => {
|
|
StatusBar.setHidden(true, 'slide');
|
|
}}>
|
|
<View style={styles.button}>
|
|
<Text>setHidden(true, 'slide')</Text>
|
|
</View>
|
|
</TouchableHighlight>
|
|
<TouchableHighlight
|
|
style={styles.wrapper}
|
|
onPress={() => {
|
|
StatusBar.setHidden(false, 'fade');
|
|
}}>
|
|
<View style={styles.button}>
|
|
<Text>setHidden(false, 'fade')</Text>
|
|
</View>
|
|
</TouchableHighlight>
|
|
<TouchableHighlight
|
|
style={styles.wrapper}
|
|
onPress={() => {
|
|
StatusBar.setHidden(true, 'fade', this.viewRef.current);
|
|
}}>
|
|
<View style={styles.button}>
|
|
<Text>setHidden(true, 'fade', componentRef)</Text>
|
|
</View>
|
|
</TouchableHighlight>
|
|
<TouchableHighlight
|
|
style={styles.wrapper}
|
|
onPress={() => {
|
|
StatusBar.setBarStyle('default', true);
|
|
}}>
|
|
<View style={styles.button}>
|
|
<Text>setBarStyle('default', true)</Text>
|
|
</View>
|
|
</TouchableHighlight>
|
|
<TouchableHighlight
|
|
style={styles.wrapper}
|
|
onPress={() => {
|
|
StatusBar.setBarStyle('light-content', true);
|
|
}}>
|
|
<View style={styles.button}>
|
|
<Text>setBarStyle('light-content', true)</Text>
|
|
</View>
|
|
</TouchableHighlight>
|
|
<TouchableHighlight
|
|
style={styles.wrapper}
|
|
onPress={() => {
|
|
StatusBar.setBarStyle('default', false, this.viewRef.current);
|
|
}}>
|
|
<View style={styles.button}>
|
|
<Text>setBarStyle('default', false, componentRef)</Text>
|
|
</View>
|
|
</TouchableHighlight>
|
|
<TouchableHighlight
|
|
style={styles.wrapper}
|
|
onPress={() => {
|
|
StatusBar.setNetworkActivityIndicatorVisible(true);
|
|
}}>
|
|
<View style={styles.button}>
|
|
<Text>setNetworkActivityIndicatorVisible(true)</Text>
|
|
</View>
|
|
</TouchableHighlight>
|
|
<TouchableHighlight
|
|
style={styles.wrapper}
|
|
onPress={() => {
|
|
StatusBar.setNetworkActivityIndicatorVisible(false);
|
|
}}>
|
|
<View style={styles.button}>
|
|
<Text>setNetworkActivityIndicatorVisible(false)</Text>
|
|
</View>
|
|
</TouchableHighlight>
|
|
</View>
|
|
);
|
|
}
|
|
}
|
|
|
|
class StatusBarStaticAndroidExample extends React.Component<{...}> {
|
|
render() {
|
|
return (
|
|
<View>
|
|
<TouchableHighlight
|
|
style={styles.wrapper}
|
|
onPress={() => {
|
|
StatusBar.setHidden(true);
|
|
}}>
|
|
<View style={styles.button}>
|
|
<Text>setHidden(true)</Text>
|
|
</View>
|
|
</TouchableHighlight>
|
|
<TouchableHighlight
|
|
style={styles.wrapper}
|
|
onPress={() => {
|
|
StatusBar.setHidden(false);
|
|
}}>
|
|
<View style={styles.button}>
|
|
<Text>setHidden(false)</Text>
|
|
</View>
|
|
</TouchableHighlight>
|
|
<TouchableHighlight
|
|
style={styles.wrapper}
|
|
onPress={() => {
|
|
StatusBar.setBackgroundColor('#ff00ff', true);
|
|
}}>
|
|
<View style={styles.button}>
|
|
<Text>setBackgroundColor('#ff00ff', true)</Text>
|
|
</View>
|
|
</TouchableHighlight>
|
|
<TouchableHighlight
|
|
style={styles.wrapper}
|
|
onPress={() => {
|
|
StatusBar.setBackgroundColor('#00ff00', true);
|
|
}}>
|
|
<View style={styles.button}>
|
|
<Text>setBackgroundColor('#00ff00', true)</Text>
|
|
</View>
|
|
</TouchableHighlight>
|
|
<TouchableHighlight
|
|
style={styles.wrapper}
|
|
onPress={() => {
|
|
StatusBar.setTranslucent(true);
|
|
StatusBar.setBackgroundColor('rgba(0, 0, 0, 0.4)', true);
|
|
}}>
|
|
<View style={styles.button}>
|
|
<Text>
|
|
setTranslucent(true) and setBackgroundColor('rgba(0, 0, 0, 0.4)',
|
|
true)
|
|
</Text>
|
|
</View>
|
|
</TouchableHighlight>
|
|
<TouchableHighlight
|
|
style={styles.wrapper}
|
|
onPress={() => {
|
|
StatusBar.setTranslucent(false);
|
|
StatusBar.setBackgroundColor('black', true);
|
|
}}>
|
|
<View style={styles.button}>
|
|
<Text>
|
|
setTranslucent(false) and setBackgroundColor('black', true)
|
|
</Text>
|
|
</View>
|
|
</TouchableHighlight>
|
|
</View>
|
|
);
|
|
}
|
|
}
|
|
|
|
class ModalExample extends React.Component<{...}, $FlowFixMeState> {
|
|
state = {
|
|
modalVisible: false,
|
|
};
|
|
|
|
_onChangeModalVisible = () => {
|
|
this.setState({modalVisible: !this.state.modalVisible});
|
|
};
|
|
|
|
render() {
|
|
return (
|
|
<View>
|
|
<TouchableHighlight
|
|
style={styles.wrapper}
|
|
onPress={this._onChangeModalVisible}>
|
|
<View style={styles.button}>
|
|
<Text>modal visible: {this.state.hidden ? 'true' : 'false'}</Text>
|
|
</View>
|
|
</TouchableHighlight>
|
|
<Modal
|
|
visible={this.state.modalVisible}
|
|
transparent={true}
|
|
onRequestClose={this._onChangeModalVisible}>
|
|
<View style={[styles.container]}>
|
|
<View style={[styles.innerContainer]}>
|
|
<Text>This modal was presented!</Text>
|
|
<TouchableHighlight
|
|
onPress={this._onChangeModalVisible}
|
|
style={styles.modalButton}>
|
|
<View style={styles.button}>
|
|
<Text>Close</Text>
|
|
</View>
|
|
</TouchableHighlight>
|
|
</View>
|
|
</View>
|
|
</Modal>
|
|
</View>
|
|
);
|
|
}
|
|
}
|
|
|
|
exports.framework = 'React';
|
|
exports.title = '<StatusBar>';
|
|
exports.description = 'Component for controlling the status bar';
|
|
exports.examples = [
|
|
{
|
|
title: 'StatusBar hidden',
|
|
render(): React.Node {
|
|
return <StatusBarHiddenExample />;
|
|
},
|
|
},
|
|
{
|
|
title: 'StatusBar style',
|
|
render(): React.Node {
|
|
return <StatusBarStyleExample />;
|
|
},
|
|
platform: 'ios',
|
|
},
|
|
{
|
|
title: 'StatusBar network activity indicator',
|
|
render(): React.Node {
|
|
return <StatusBarNetworkActivityExample />;
|
|
},
|
|
platform: 'ios',
|
|
},
|
|
{
|
|
title: 'StatusBar background color',
|
|
render(): React.Node {
|
|
return <StatusBarBackgroundColorExample />;
|
|
},
|
|
platform: 'android',
|
|
},
|
|
{
|
|
title: 'StatusBar translucent',
|
|
render(): React.Node {
|
|
return <StatusBarTranslucentExample />;
|
|
},
|
|
platform: 'android',
|
|
},
|
|
{
|
|
title: 'StatusBar static API',
|
|
render(): React.Node {
|
|
return <StatusBarStaticIOSExample />;
|
|
},
|
|
platform: 'ios',
|
|
},
|
|
{
|
|
title: 'StatusBar static API',
|
|
render(): React.Node {
|
|
return <StatusBarStaticAndroidExample />;
|
|
},
|
|
platform: 'android',
|
|
},
|
|
{
|
|
title: 'StatusBar dimensions',
|
|
render(): React.Node {
|
|
return (
|
|
<View>
|
|
<Text>Height (Android only): {StatusBar.currentHeight} pts</Text>
|
|
</View>
|
|
);
|
|
},
|
|
platform: 'android',
|
|
},
|
|
];
|
|
|
|
const styles = StyleSheet.create({
|
|
container: {
|
|
flex: 1,
|
|
justifyContent: 'center',
|
|
padding: 20,
|
|
backgroundColor: '#f5fcff',
|
|
},
|
|
innerContainer: {
|
|
borderRadius: 10,
|
|
alignItems: 'center',
|
|
},
|
|
wrapper: {
|
|
borderRadius: 5,
|
|
marginBottom: 5,
|
|
},
|
|
button: {
|
|
borderRadius: 5,
|
|
backgroundColor: '#eeeeee',
|
|
padding: 10,
|
|
},
|
|
modalButton: {
|
|
marginTop: 10,
|
|
},
|
|
});
|