-
Notifications
You must be signed in to change notification settings - Fork 15
/
Badge.js
72 lines (68 loc) · 1.64 KB
/
Badge.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
import React, { Component } from 'react';
import {
StyleSheet,
Text,
View,
} from 'react-native';
import PropTypes from 'proptypes';
export default class Badge extends Component {
static propTypes = {
backgroundColor: PropTypes.string,
color: PropTypes.string,
content: PropTypes.oneOfType([
PropTypes.string,
PropTypes.number,
]),
isLeft: PropTypes.bool,
};
static defaultProps = {
backgroundColor: '#FF0000',
color: '#FFFFFF',
}
render() {
return (
<View
style={[
styles.container,
{
width: 10 + (String(this.props.content).length * 5),
backgroundColor: this.props.backgroundColor,
},
this.props.isLeft
? styles.leftBadge
: styles.rightBadge,
]}
>
<Text
style={[
styles.badgeText,
{ color: this.props.color },
]}
>
{this.props.content}
</Text>
</View>
);
}
}
const styles = StyleSheet.create({
container: {
borderRadius: 10,
height: 15,
minWidth: 15,
overflow: 'hidden',
position: 'absolute',
top: 2,
},
badgeText: {
textAlign: 'center',
marginTop: 1,
fontSize: 10,
},
leftBadge: {
left: 2,
},
rightBadge: {
right: 2,
},
});