react-time-ago
International higly customizable relative date/time formatter for React (both for past and future dates).
Formats a date/timestamp to:
- just now
- 5m
- 15 min
- 25 minutes
- an hour ago
- 1 mo.
- 5 years ago
- … or whatever else
Usage
npm install react-time-ago --save
# (installs "javascript-time-ago" as a dependency)
LastSeen.js
<TimeAgo/>
React component refreshes itself as the time goes by.
Customization
TimeAgo
component accepts a timeStyle
property which can be one of
Tooltip
The default component exported from this library comes prepackaged with a <Tooltip/>
component which displays itself "on mouse over" on desktops and "on touch down" on mobile devices. The behaviour of the tooltip is similar to that of the HTML title
attribute which displays a tooltip "on mouse over". The difference that the custom tooltip also displays itself "on touch down" on mobile devices while the HTML title
attribute doesn't handle mobile users in any way. That was the primary reason for going with the custom <Tooltip/>
component instead of the HTML title
attribute. The other reason is the requirement for custom design.
The tooltip text is a verbose date label. If Intl
is supported (which is the case for all modern web browsers) then Intl.DateTimeFormat
is used for formatting the label ("Thursday, January 11, 2018, 9:53:00 PM"
). Otherwise, it falls back to date.toString()
.
If the prepackaged <Tooltip/>
component doesn't fit the bill then any other custom <Tooltip/>
component may be used (see ./source/WithTooltip.js
).
Finally, one can use bare react-time-ago
without any <Tooltip/>
component:
Future
When given future dates it produces the corresponding output, e.g. "in 5 minutes", "in a year", etc.