react-ago-component
Version:
A multi-lingual component for React that renders the approximate time ago in words from a specific past date using an HTML5 time element
90 lines (70 loc) • 2.06 kB
JavaScript
var PropTypes = require('prop-types');
var createReactClass = require('create-react-class');
var timeAgo = require('damals');
var counterpart = require('counterpart');
var strftime = require('counterpart/strftime');
var assign = require('object-assign');
var DOM = require('react-dom-factories');
var toString = Object.prototype.toString;
function isString(value) {
return toString.call(value) === '[object String]';
}
function isNumber(value) {
return toString.call(value) === '[object Number]';
}
var Ago = createReactClass({
displayName: 'Ago',
ticker: null,
propTypes: {
date: PropTypes.oneOfType([
PropTypes.instanceOf(Date),
PropTypes.string,
PropTypes.number
]),
tooltipFormat: PropTypes.string,
autoUpdate: PropTypes.oneOfType([
PropTypes.bool,
PropTypes.number
])
},
getDefaultProps: function() {
return {
date: new Date(),
tooltipFormat: 'default',
autoUpdate: 0
};
},
componentDidMount: function() {
if (this.props.autoUpdate) {
var delay = isNumber(this.props.autoUpdate) ? this.props.autoUpdate * 1000 : 2600;
this.ticker = setInterval(this.invalidate, delay);
}
counterpart.onLocaleChange(this.invalidate);
},
componentWillUnmount: function() {
if (this.ticker) {
clearInterval(this.ticker);
this.ticker = null;
}
counterpart.offLocaleChange(this.invalidate);
},
invalidate: function() {
this.forceUpdate();
},
render: function() {
var date = this.props.date;
if (isString(date) || isNumber(date)) {
date = new Date(date);
}
var content = timeAgo(date);
var dateTime = strftime(date, '%Y-%m-%dT%H:%M:%S%z');
var title = counterpart.localize(date, { format: this.props.tooltipFormat });
var props = assign({}, this.props, { dateTime: dateTime, title: title });
delete props.date;
delete props.tooltipFormat;
delete props.autoUpdate;
return DOM.time(props, content);
}
});
module.exports = Ago;
;