This repository was archived by the owner on Aug 12, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathTime.js
83 lines (83 loc) · 2.12 KB
/
Time.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
import PropTypes from 'prop-types';
import React, { Component } from 'react';
import { StyleSheet, Text, View, ViewPropTypes, } from 'react-native';
import moment from 'moment';
import Color from './Color';
import { TIME_FORMAT } from './Constant';
const containerStyle = {
marginLeft: 10,
marginRight: 10,
marginBottom: 5,
};
const textStyle = {
fontSize: 10,
backgroundColor: 'transparent',
textAlign: 'right',
};
const styles = {
left: StyleSheet.create({
container: {
...containerStyle,
},
text: {
color: Color.timeTextColor,
...textStyle,
},
}),
right: StyleSheet.create({
container: {
...containerStyle,
},
text: {
color: Color.white,
...textStyle,
},
}),
};
export default class Time extends Component {
render() {
const { position, containerStyle, currentMessage, timeFormat, timeTextStyle, } = this.props;
if (!!currentMessage) {
return (<View style={[
styles[position].container,
containerStyle && containerStyle[position],
]}>
<Text style={[
styles[position].text,
timeTextStyle && timeTextStyle[position],
]}>
{moment(currentMessage.createdAt)
.locale(this.context.getLocale())
.format(timeFormat)}
</Text>
</View>);
}
return null;
}
}
Time.contextTypes = {
getLocale: PropTypes.func,
};
Time.defaultProps = {
position: 'left',
currentMessage: {
createdAt: null,
},
containerStyle: {},
timeFormat: TIME_FORMAT,
timeTextStyle: {},
};
Time.propTypes = {
position: PropTypes.oneOf(['left', 'right']),
currentMessage: PropTypes.object,
containerStyle: PropTypes.shape({
left: ViewPropTypes.style,
right: ViewPropTypes.style,
}),
timeFormat: PropTypes.string,
timeTextStyle: PropTypes.shape({
left: PropTypes.any,
right: PropTypes.any,
}),
};
//# sourceMappingURL=Time.js.map