-
Notifications
You must be signed in to change notification settings - Fork 125
/
AppTest.js
261 lines (220 loc) · 9.46 KB
/
AppTest.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
/**
* Name: MessageBar Test Project
* Description: A Project to test the Message Bar Component
* https://github.com/KBLNY/react-native-message-bar
*/
'use strict';
var MessageBarAlert = require('./MessageBar.js');
var MessageBarManager = require('./MessageBarManager.js');
var CustomChildComponent = require('./CustomChildComponent.js');
import React, {Component} from 'react'
import {
AppRegistry,
StyleSheet,
Text,
View,
TouchableOpacity,
} from 'react-native';
class MessageBar extends Component {
constructor(props) {
super(props)
this.state = {
callbackButton: 'Show Alert with Avatar and Callback (Error Type)',
}
}
componentDidMount() {
// Register the alert located on this master page
MessageBarManager.registerMessageBar(this.refs.alert);
}
componentWillUnmount() {
// Remove the alert located on this master page from te manager
MessageBarManager.unregisterMessageBar();
}
showSimpleAlert() {
// Title or Message is at least Mandatory
// alertType is not Mandatory, but if no alertType provided, 'info' (blue color) will picked for you
// Simple show the alert with the manager
MessageBarManager.showAlert({
message: "This is a simple alert",
alertType: 'success'
});
}
showSimpleAlertMessage() {
// Simple show the alert with the manager
MessageBarManager.showAlert({
message: "This is a simple alert with a message.",
alertType: 'extra',
animationType: 'SlideFromLeft',
position: 'bottom',
});
}
showSimpleAlertWithMessage() {
// Simple show the alert with the manager
MessageBarManager.showAlert({
title: "Caution !",
message: "This is a simple alert with a title and a message",
alertType: 'warning',
});
}
showAlertWithAvatar() {
// Simple show the alert with the manager
MessageBarManager.showAlert({
title: "John Doe",
message: "Hello, how are you?",
avatar: "https://image.freepik.com/free-icon/super-simple-avatar_318-1018.jpg",
alertType: 'info',
});
}
showAlertWithCallback() {
// Simple show the alert with the manager
MessageBarManager.showAlert({
title: "This is an alert with a callback function",
message: "Tap on the alert to execute the callback you passed in parameter",
avatar: "http://www.icon100.com/up/4250/128/83-circle-error.png", // eg. for remote image file, use the following avatar: require('./image.jpg'),
alertType: 'error',
duration: 5000,
onTapped: this.customCallback.bind(this),
});
}
showAlertFromThrowError() {
try {
// Do something risky
throw new Error("This is a custom error message.\rThis message is shown from a throw new Error.\rYou can use this technique to catch any error in try/catch block or in promises.");
} catch(error) {
this.handleError(error);
}
}
handleError(error) {
MessageBarManager.showAlert({
title: "Error",
message: error.message,
alertType: 'error',
messageNumberOfLines: 0,
});
}
customCallback() {
console.log('Alert Tapped. Triggered as a callback');
this.setState({
callbackButton: 'Alert Tapped. Triggered as a callback',
});
}
hideCurrentAlert() {
// Hide the current alert bar
MessageBarManager.hideAlert();
}
alertShow() {
console.log('Alert is shown. Triggered as a callback');
}
alertHide() {
console.log('Alert is now hidden. Triggered as a callback');
}
render() {
return (
<View style={styles.container}>
{
// Otherwise, You can directly declare a MessageBar alert with its properties and display it by using its reference this.refs.alert.showMessageBarAlert()
// <MessageBarAlert ref="alert"
// /* Cusomisation of the alert: Title, Message, Icon URL, Alert Type (error, success, warning, info), Duration for Alert keep shown */
// title={this.state.alertTitle} // Title of the alert
// message={this.state.alertMessage} // Message of the alert
// avatar={this.state.alertIconUrl} // Avatar/Icon URL of the alert
// type={this.state.alertType} // Alert Type: you can select one of 'success', 'error', 'warning', 'error', or 'custom' (use custom if you use a 5th stylesheet, all are customizable). Default is 'info'
// duration={this.state.alertDuration} // Number of ms the alert is displayed. Default is 3000 ms (3 seconds)
//
// /* Hide setters */
// shouldHideAfterDelay={true} // Define if the MessabeBar should hidden after the `duration`. Please refer yourself to the documentation for component behaviour outputs by setting these 2 properties
// shouldHideOnTap={true} // Define if the MessabeBar should be hidden when user tap the alert. Please refer yourself to the documentation for component behaviour outputs by setting these 2 properties
//
// /* Callbacks method on Alert Tapped, on Alert Show, on Alert Hide */
// onTapped={this.state.alertCallback} // This function is executed on alert tap
// onShow={this.alertShow.bind(this)} // This function is executed when alert is shown
// onHide={this.alertHide.bind(this)} // This function is executed when alert is hidden
//
// /* Customize the stylesheets and/or provide an additional one 'extra' */
// stylesheetInfo = {{ backgroundColor : '#007bff', strokeColor : '#006acd' }}// Default are blue colors
// stylesheetSuccess = {{ backgroundColor : 'darkgreen', strokeColor : '#b40000' }} // Default are Green colors
// stylesheetWarning = {{ backgroundColor : '#ff9c00', strokeColor : '#f29400' }} // Default are orange colors
// stylesheetError = {{ backgroundColor : '#ff3232', strokeColor : '#FF0000' }} // Default are red colors
// stylesheetExtra = {{ backgroundColor : 'black', strokeColor : 'gray' }} // Default are blue colors, same as info
//
// /* Customize the duration of the animation */
// durationToShow = {500} // Default is 350
// durationToHide = {300} // Default is 350
//
// /* Offset of the View, useful if you have a navigation bar or if you want the alert be shown below another component instead of the top of the screen */
// viewTopOffset = {0} // Default is 0
// viewLeftOffset = {0} // Default is 0
// viewRightOffset = {0} // Default is 0
//
// /* Inset of the view, useful if you want to apply a padding at your alert content */
// viewTopInset = {15} // Default is 0
// viewLeftInset = {0} // Default is 0
// viewRightInset = {0} // Default is 0
//
// /* Number of Lines for Title and Message */
// titleNumberOfLines={1}
// messageNumberOfLines={0} // Unlimited number of lines
//
// /* Style for the text elements and the avatar */
// titleStyle={{ color: 'white', fontSize: 18, fontWeight: 'bold' }}
// messageStyle={{ color: 'white', fontSize: 16 }}
// avatarStyle={{ height: 40, width: 40, borderRadius: 20 }}
// />
}
<TouchableOpacity style={styles.buttonContainer} onPress={()=>{this.showSimpleAlert()}}>
<Text style={[styles.button, {backgroundColor: 'darkgreen'}]}>Show Simple Alert, title only (Success Type)</Text>
</TouchableOpacity>
<TouchableOpacity style={styles.buttonContainer} onPress={()=>{this.showSimpleAlertMessage()}}>
<Text style={[styles.button, {backgroundColor: 'black'}]}>Show Simple Alert, message only (Extra StyleSheet Type)</Text>
</TouchableOpacity>
<TouchableOpacity style={styles.buttonContainer} onPress={()=>{this.showSimpleAlertWithMessage()}}>
<Text style={[styles.button, {backgroundColor: '#ff9c00'}]}>Show Simple Alert with Message (Warning Type)</Text>
</TouchableOpacity>
<TouchableOpacity style={styles.buttonContainer} onPress={()=>{this.showAlertWithAvatar()}}>
<Text style={[styles.button, {backgroundColor: '#007bff'}]}>Show Alert with Avatar (Info Type)</Text>
</TouchableOpacity>
<TouchableOpacity style={styles.buttonContainer} onPress={()=>{this.showAlertWithCallback()}}>
<Text style={[styles.button, {backgroundColor: '#ff3232'}]}> {this.state.callbackButton} </Text>
</TouchableOpacity>
<TouchableOpacity style={styles.buttonContainer} onPress={()=>{this.showAlertFromThrowError()}}>
<Text style={[styles.button, {backgroundColor: '#ff6666'}]}>Show Alert from throw Error</Text>
</TouchableOpacity>
<CustomChildComponent />
<TouchableOpacity style={styles.buttonContainer} onPress={()=>{this.hideCurrentAlert()}}>
<Text style={[styles.button, {backgroundColor: 'darkgray'}]}>Hide Current Alert</Text>
</TouchableOpacity>
<MessageBarAlert ref="alert" />
</View>
);
}
}
module.exports = MessageBar;
const styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: 'center',
alignItems: 'center',
backgroundColor: '#F5FCFF',
},
welcome: {
fontSize: 20,
textAlign: 'center',
margin: 10,
},
instructions: {
textAlign: 'center',
color: '#333333',
marginBottom: 5,
},
buttonContainer: {
alignSelf:'stretch',
},
button: {
alignSelf: 'stretch',
textAlign: 'center',
backgroundColor: 'blue',
color: 'white',
padding: 10,
margin: 10,
}
});