mirror of
https://github.com/status-im/react-native.git
synced 2025-01-10 17:45:59 +00:00
a64674375e
Summary: Wanted a "message-only" alert on iOS that doesn't lead to the message being large & bolded via the title field (current state). Before: ![screen shot 2017-08-28 at 9 22 04 pm](https://user-images.githubusercontent.com/1047502/29801514-fc3629d2-8c3d-11e7-86d5-f0a866301814.png) After: ![screen shot 2017-08-28 at 9 26 56 pm](https://user-images.githubusercontent.com/1047502/29801521-071aa1ca-8c3e-11e7-9bd0-0a4682d81979.png) It also aligns iOS with Android's current behaviour. The above screenhots were generated from the `RNTester` example added herein. Allowed for passing an empty string through to `UIAlertController.alertControllerWithTitle` so that the message could be rendered in its expected place on iOS (not as the title). * Ran RNTester & compared example alerts before & after (below default with titles, for example) * Ran end-to-end manual test suite (it's the only one I could get through without unrelated failures) Before ![screen shot 2017-08-28 at 9 21 53 pm](https://user-images.githubusercontent.com/1047502/29801775-6e249ff0-8c3f-11e7-888b-2c4d5177a7d7.png) After ![screen shot 2017-08-28 at 9 26 40 pm](https://user-images.githubusercontent.com/1047502/29801781-7270c4a8-8c3f-11e7-8b9b-59b2649646f2.png) Closes https://github.com/facebook/react-native/pull/15685 Differential Revision: D5729420 Pulled By: hramos fbshipit-source-id: 4866b0b24473ae35e9ebae09f2cee13a49d7717e
160 lines
4.4 KiB
JavaScript
160 lines
4.4 KiB
JavaScript
/**
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
* All rights reserved.
|
|
*
|
|
* This source code is licensed under the BSD-style license found in the
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
*
|
|
* @providesModule AlertExample
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
var React = require('react');
|
|
var ReactNative = require('react-native');
|
|
var {
|
|
Alert,
|
|
StyleSheet,
|
|
Text,
|
|
TouchableHighlight,
|
|
View,
|
|
} = ReactNative;
|
|
|
|
var RNTesterBlock = require('./RNTesterBlock');
|
|
|
|
// corporate ipsum > lorem ipsum
|
|
var alertMessage = 'Credibly reintermediate next-generation potentialities after goal-oriented ' +
|
|
'catalysts for change. Dynamically revolutionize.';
|
|
|
|
/**
|
|
* Simple alert examples.
|
|
*/
|
|
class SimpleAlertExampleBlock extends React.Component {
|
|
render() {
|
|
return (
|
|
<View>
|
|
<TouchableHighlight style={styles.wrapper}
|
|
onPress={() => Alert.alert(
|
|
'Alert Title',
|
|
alertMessage,
|
|
)}>
|
|
<View style={styles.button}>
|
|
<Text>Alert with message and default button</Text>
|
|
</View>
|
|
</TouchableHighlight>
|
|
<TouchableHighlight style={styles.wrapper}
|
|
onPress={() => Alert.alert(
|
|
'Alert Title',
|
|
alertMessage,
|
|
[
|
|
{text: 'OK', onPress: () => console.log('OK Pressed!')},
|
|
]
|
|
)}>
|
|
<View style={styles.button}>
|
|
<Text>Alert with one button</Text>
|
|
</View>
|
|
</TouchableHighlight>
|
|
<TouchableHighlight style={styles.wrapper}
|
|
onPress={() => Alert.alert(
|
|
'Alert Title',
|
|
alertMessage,
|
|
[
|
|
{text: 'Cancel', onPress: () => console.log('Cancel Pressed!')},
|
|
{text: 'OK', onPress: () => console.log('OK Pressed!')},
|
|
]
|
|
)}>
|
|
<View style={styles.button}>
|
|
<Text>Alert with two buttons</Text>
|
|
</View>
|
|
</TouchableHighlight>
|
|
<TouchableHighlight style={styles.wrapper}
|
|
onPress={() => Alert.alert(
|
|
'Alert Title',
|
|
null,
|
|
[
|
|
{text: 'Foo', onPress: () => console.log('Foo Pressed!')},
|
|
{text: 'Bar', onPress: () => console.log('Bar Pressed!')},
|
|
{text: 'Baz', onPress: () => console.log('Baz Pressed!')},
|
|
]
|
|
)}>
|
|
<View style={styles.button}>
|
|
<Text>Alert with three buttons</Text>
|
|
</View>
|
|
</TouchableHighlight>
|
|
<TouchableHighlight style={styles.wrapper}
|
|
onPress={() => Alert.alert(
|
|
'Foo Title',
|
|
alertMessage,
|
|
'..............'.split('').map((dot, index) => ({
|
|
text: 'Button ' + index,
|
|
onPress: () => console.log('Pressed ' + index)
|
|
}))
|
|
)}>
|
|
<View style={styles.button}>
|
|
<Text>Alert with too many buttons</Text>
|
|
</View>
|
|
</TouchableHighlight>
|
|
<TouchableHighlight style={styles.wrapper}
|
|
onPress={() => Alert.alert(
|
|
'Alert Title',
|
|
null,
|
|
[
|
|
{text: 'OK', onPress: () => console.log('OK Pressed!')},
|
|
],
|
|
{
|
|
cancelable: false
|
|
}
|
|
)}>
|
|
<View style={styles.button}>
|
|
<Text>Alert that cannot be dismissed</Text>
|
|
</View>
|
|
</TouchableHighlight>
|
|
<TouchableHighlight style={styles.wrapper}
|
|
onPress={() => Alert.alert(
|
|
'',
|
|
alertMessage,
|
|
[
|
|
{text: 'OK', onPress: () => console.log('OK Pressed!')},
|
|
]
|
|
)}>
|
|
<View style={styles.button}>
|
|
<Text>Alert without title</Text>
|
|
</View>
|
|
</TouchableHighlight>
|
|
</View>
|
|
);
|
|
}
|
|
}
|
|
|
|
class AlertExample extends React.Component {
|
|
static title = 'Alert';
|
|
|
|
static description = 'Alerts display a concise and informative message ' +
|
|
'and prompt the user to make a decision.';
|
|
|
|
render() {
|
|
return (
|
|
<RNTesterBlock title={'Alert'}>
|
|
<SimpleAlertExampleBlock />
|
|
</RNTesterBlock>
|
|
);
|
|
}
|
|
}
|
|
|
|
var styles = StyleSheet.create({
|
|
wrapper: {
|
|
borderRadius: 5,
|
|
marginBottom: 5,
|
|
},
|
|
button: {
|
|
backgroundColor: '#eeeeee',
|
|
padding: 10,
|
|
},
|
|
});
|
|
|
|
module.exports = {
|
|
AlertExample,
|
|
SimpleAlertExampleBlock,
|
|
};
|