Given a specific DateTime value, how do I display relative time, like
- 2 hours ago
- 3 days ago
- a month ago
etc, etc...?
|
75
|
Given a specific DateTime value, how do I display relative time, like
etc, etc...? |
||||
|
|
|
One minor addition to the top answer is that it will incorrectly calculate "Yesterday". This code will look at the delta and then figure out if the date is the same (meaning today) or off by 1 (meaning yesterday). The problem with the code in the top answer is that a date difference of 8 hours ago should say yesterday if it was posted at night and it is now the next morning. Uses an arbitrary cutoff of 6 hours for the "n hours ago" display. And uses a variable of inputDate for the date to compare:
|
|||
|
|
|
|
Java for client-side gwt usage:
|
|||
|
|