mirror of
https://github.com/mastodon/mastodon.git
synced 2024-08-20 21:08:15 -07:00
1948f9e767
* Remove deprecated features at React v15.5
- [x] React.PropTypes
- [x] react-addons-pure-render-mixin
- [x] react-addons-test-utils
* Uncommented out & Add browserify_rails options
* re-add react-addons-shallow
* Fix syntax error from resolve conflicts
* follow up 59a77923b3
19 lines
586 B
JavaScript
19 lines
586 B
JavaScript
import { injectIntl, FormattedRelative } from 'react-intl';
|
|
import PropTypes from 'prop-types';
|
|
|
|
const RelativeTimestamp = ({ intl, timestamp }) => {
|
|
const date = new Date(timestamp);
|
|
|
|
return (
|
|
<time dateTime={timestamp} title={intl.formatDate(date, { hour12: false, year: 'numeric', month: 'short', day: '2-digit', hour: '2-digit', minute: '2-digit' })}>
|
|
<FormattedRelative value={date} />
|
|
</time>
|
|
);
|
|
};
|
|
|
|
RelativeTimestamp.propTypes = {
|
|
intl: PropTypes.object.isRequired,
|
|
timestamp: PropTypes.string.isRequired
|
|
};
|
|
|
|
export default injectIntl(RelativeTimestamp);
|