Skip to content

Commit 8959a68

Browse files
committed
Generate documentation.
0 parents  commit 8959a68

File tree

7 files changed

+217
-0
lines changed

7 files changed

+217
-0
lines changed

.babelrc

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"presets": ["module:metro-react-native-babel-preset"]
3+
}

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
node_modules
2+
.DS_STORE
3+
*.log

README.md

+67
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
# react-native-message-dialog
2+
3+
A simple, dialog message component with callback action like Airbnb. Ideal for showing errors, info and warnings.
4+
5+
![](assets/message-view.gif)
6+
7+
8+
## Installation
9+
10+
If using npm:
11+
12+
```
13+
npm i react-native-message-dialog
14+
```
15+
16+
## Usage
17+
18+
```
19+
import Message from 'react-native-message-dialog'
20+
```
21+
22+
Simply place a `<Message />` inside of any compnent.
23+
24+
```
25+
<View style={{ flex: 1 }}>
26+
<Message visible={true} />
27+
</View>
28+
```
29+
30+
### Styling Usage
31+
Message is fully customizable using the `height, textStatus, textCb, textMessage, textStatusStyle and textCbStyle` props.
32+
33+
Example usage to change dots color:
34+
35+
```
36+
const textStatusStyle = {
37+
color: 'red',
38+
};
39+
40+
return (
41+
<View style={{flex: 1}}>
42+
<Message visible={true} textStatusStyle={textStatusStyle} />
43+
</View>
44+
)
45+
```
46+
47+
## Documentation
48+
49+
### EllipsisLoading Component
50+
| Name | Description | Default | Type |
51+
|-----------------|-------------------------------------------------------|-------------------|----------|
52+
| visible | Determinates if message container is visible | false | Boolean |
53+
| onPress | Callback to retry an action | () => ({}) | Function |
54+
| textStatus | Left text of the message container | Error | String |
55+
| textCb | Right text of the message container (Callback action) | Retry | String |
56+
| textMessage | Center text of the message container | Please try again. | String |
57+
| textStatusStyle | Style to apply to textMessage | Object | Object |
58+
| textCbStyle | Style to apply to textCb | Object | Object |
59+
60+
## Contributing
61+
Pull requests are always welcome! Feel free to open a new GitHub issue for any changes that can be made.
62+
63+
## Author
64+
Janid Ham | [https://janidham.com](https://janidham.com)
65+
66+
## License
67+
[MIT](./LICENSE)

assets/message-view.gif

654 KB
Loading

index.js

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
import Message from './src/Message'
2+
3+
export default Message

package.json

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
{
2+
"name": "react-native-message-dialog",
3+
"version": "1.0.0",
4+
"description": "A simple, dialog message component with callback action like Airbnb. Ideal for showing errors, info and warnings.",
5+
"main": "index.js",
6+
"scripts": {
7+
"test": "echo \"Error: no test specified\" && exit 1"
8+
},
9+
"repository": {
10+
"type": "git",
11+
"url": "git+https://github.com/JanidHam/react-native-message-dialog.git"
12+
},
13+
"keywords": [
14+
"react-native",
15+
"react-component",
16+
"react-native-component",
17+
"react",
18+
"react native",
19+
"mobile",
20+
"ios",
21+
"android",
22+
"ui",
23+
"message",
24+
"message-component",
25+
"react-native-message-dialog",
26+
"dialog",
27+
"show message",
28+
"error message",
29+
"info message",
30+
"warning message"
31+
],
32+
"author": "Janid Ham <[email protected]>",
33+
"license": "MIT",
34+
"bugs": {
35+
"url": "https://github.com/JanidHam/react-native-message-dialog/issues"
36+
},
37+
"homepage": "https://github.com/JanidHam/react-native-message-dialog#readme",
38+
"devDependencies": {
39+
"metro-react-native-babel-preset": "^0.56.0"
40+
}
41+
}

src/Message.js

+100
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,100 @@
1+
import React, { useState, useEffect } from 'react'
2+
import {
3+
Animated,
4+
TouchableOpacity,
5+
Text,
6+
View,
7+
StyleSheet,
8+
} from 'react-native'
9+
10+
const COLOR_UNDER_LINE = '#d6d7da'
11+
const COLOR_TEXT_STATUS = '#f37d9e'
12+
const COLOR_TEXT_MESSAGE = '#565354'
13+
const COLOR_CB = '#69cddd'
14+
const DEFAULT_MESSAGE = 'Please try again.'
15+
const DEFAULT_TEXT_STATUS = 'Error'
16+
const DEFAULT_CB_TEXT_STATUS = 'Retry'
17+
const DEFAULT_HEIGHT = 60
18+
19+
const style = StyleSheet.create({
20+
container: {
21+
alignItems: 'center',
22+
position: 'absolute',
23+
bottom: 0,
24+
flexDirection: 'row',
25+
width: '100%',
26+
paddingHorizontal: 15,
27+
shadowOpacity: 0.8,
28+
shadowRadius: 3,
29+
shadowColor: COLOR_UNDER_LINE,
30+
shadowOffset: { height: 0, width: 0 },
31+
elevation: 10,
32+
backgroundColor: 'white',
33+
},
34+
textStatusContainer: {
35+
paddingHorizontal: 10,
36+
paddingVertical: 5,
37+
borderRadius: 50,
38+
},
39+
textStatusStyle: {
40+
color: COLOR_TEXT_STATUS,
41+
fontSize: 14,
42+
fontWeight: '500',
43+
},
44+
textMessageContainer: {
45+
flex: 2,
46+
alignItems: 'flex-start',
47+
},
48+
textMessage: {
49+
color: COLOR_TEXT_MESSAGE,
50+
fontSize: 14,
51+
fontWeight: '500',
52+
},
53+
cbText: {
54+
color: COLOR_CB,
55+
fontSize: 14,
56+
fontWeight: '600',
57+
},
58+
})
59+
60+
const Message = props => {
61+
const [animationState] = useState({
62+
height: new Animated.Value(0),
63+
})
64+
const {
65+
visible = false,
66+
onPress = () => ({}),
67+
textStatus = DEFAULT_TEXT_STATUS,
68+
textCb = DEFAULT_CB_TEXT_STATUS,
69+
textMessage = DEFAULT_MESSAGE,
70+
textStatusStyle,
71+
textCbStyle,
72+
} = props
73+
74+
useEffect(() => {
75+
Animated.timing(animationState.height, {
76+
toValue: visible ? DEFAULT_HEIGHT : 0,
77+
duration: 150,
78+
}).start()
79+
})
80+
81+
return (
82+
<Animated.View style={[{ height: animationState.height }, style.container]}>
83+
<View style={style.textStatusContainer}>
84+
<Text style={[style.textStatusStyle, textStatusStyle]}>
85+
{textStatus}
86+
</Text>
87+
</View>
88+
<View style={style.textMessageContainer}>
89+
<Text style={style.textMessage}>{textMessage}</Text>
90+
</View>
91+
<View>
92+
<TouchableOpacity activeOpacity={0.8} onPress={onPress}>
93+
<Text style={[style.cbText, textCbStyle]}>{textCb}</Text>
94+
</TouchableOpacity>
95+
</View>
96+
</Animated.View>
97+
)
98+
}
99+
100+
export default Message

0 commit comments

Comments
 (0)