-
Notifications
You must be signed in to change notification settings - Fork 125
/
CustomChildComponent.js
79 lines (65 loc) · 1.88 KB
/
CustomChildComponent.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
/**
* Name: MessageBar Test Project
* Description: A Project to test the Message Bar Component
* https://github.com/KBLNY/react-native-message-bar
*/
'use strict';
var MessageBarManager = require('./MessageBarManager.js');
import React, {Component} from 'react'
import {
AppRegistry,
StyleSheet,
Text,
View,
TouchableOpacity,
} from 'react-native';
class CustomChildComponent extends Component {
constructor(props) {
super(props)
}
showAlertMessage() {
// Show the current alert, which is mounted in the Parent's page by calling
// the classic method showCurrentAlert(state) where state is the new state of the message bar alert
// Declare the new state of the parent's message bar alert
MessageBarManager.showAlert({
title: 'Alert triggered from child component',
message: "You can show an alert which is located on its parent's page. You can then declare only one MessageBar. This is useful to fix absolute position in child component",
avatar: null,
alertType: 'success',
});
}
render() {
return (
<View style={styles.container}>
<Text style={styles.welcome}>
This is a child component. Tap the button below to display its parent s alert message bar
</Text>
<TouchableOpacity style={styles.buttonContainer} onPress={this.showAlertMessage}>
<Text style={styles.button}>Show Alert from a Child Component</Text>
</TouchableOpacity>
</View>
);
}
}
module.exports = CustomChildComponent;
const styles = StyleSheet.create({
container: {
justifyContent: 'center',
alignItems: 'center',
borderColor: 'black',
borderWidth: 1,
},
welcome: {
textAlign: 'center',
margin: 10,
},
buttonContainer: {
},
button: {
textAlign: 'center',
backgroundColor: 'lightgray',
color: 'white',
padding: 10,
margin: 10,
}
});