Given a specific DateTime value, how do I display relative time, like
- 2 hours ago
- 3 days ago
- a month ago
etc, etc...?
feedback
|
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.
|
Jeff, your code is nice but could be clearer with constants (as suggested in Code Complete).
| |||||||||
feedback
|
jquery.timeago pluginJeff, Because Stack Overflow uses jQuery extensively, I recommend the jquery.timeago plugin. Benefits:
Just attach it to your timestamps on DOM ready:
This will turn all abbr elements with a class of timeago and an ISO 8601 timestamp in the title:
into something like this:
which yields: 4 months ago. As time passes, the timestamps will automatically update. Disclaimer: I wrote this plugin, so I'm biased. | |||||||||||||||||||||
feedback
|
|
Well, here's how we do it on Stack Overflow.
Suggestions? Comments? Ways to improve this algorithm? | |||||||||||||||||||||
feedback
|
I prefer this version for its conciseness, and ability to add in new tick points. This could be encapsulated with a Latest() extension to Timespan instead of that long 1 liner, but for the sake of brevity in posting, this will do. This fixes the an hour ago, 1 hours ago, by providing an hour until 2 hours have elapsed | ||||
|
feedback
|
http://refactormycode.com/codes/493-twitter-esque-relative-dates | |||||
feedback
|
|
Here a rewrite from Jeffs Script for PHP:
| ||||
|
feedback
|
|
Here's an implementation I added as an extension method to the DateTime class that handles both future and past dates and provides an approximation option that allows you to specify the level of detail you're looking for ("3 hour ago" vs "3 hours, 23 minutes, 12 seconds ago"):
| ||||
|
feedback
|
|
I would recommend computing this on the client side too. Less work for the server. The following is the version that I use (from Zach Leatherman)
| ||||
|
feedback
|
iPhone obj-c Version
} | ||||
|
feedback
|
|
@jeff IMHO yours seems a little long. However it does seem a little more robust with support for "yesterday" and "years". But in my experience when this is used the person is most likely to view the content in the first 30 days. It is only the really hardcore people that come after that. So that is why I usually elect to keep this short and simple. This is the method I am currently using on one of my websites. This only returns a relative day, hour, time. And then the user has to slap on "ago" in the output. | |||||
feedback
|
|
Jeff, Your years algorithm doesn't take into account Leap Years and such, so it would be a little off in about 40 years. :) However the "months" algorithm might be off much faster considering that you didn't take into account February and all the months with 31. I know it complicates things but, just might be a concern. :) | ||||
|
feedback
|
|
Have +1 to Zack, but to re-iterate there is a condition between 90 and 120 minutes where it displays '1 hours ago' that needs a bit of tweaking - extra clause perhaps? | ||||
|
feedback
|
|
Perhaps if the delta is less than 5 seconds ago, you could return "just now". I've seen that on a few "web2.0!!" sites and I think it's a nice touch. Realistically, for the end user, the difference between "0 seconds ago" and "4 seconds ago" is negligible. | ||||
|
feedback
|
|
Is there an easy way to do this in Java? The java.util.Date class seems rather limited. Here is my quick and dirty Java solution:
| ||||
|
feedback
|
|
A couple of years late to the party, but I had a requirement to do this for both past and future dates, so I combined Jeff's and Vincent's into this. It's a ternarytastic extravaganza! :)
| ||||
|
feedback
|
|
I thought I'd give this a shot using classes and polymorphism. I had a previous iteration which used sub-classing which ended up having way too much overhead. I've switched to a more flexible delegate / public property object model which is significantly better. My code is very slightly more accurate, I wish I could come up with a better way to generate "months ago" that didn't seem too over-engineered. I think I'd still stick with Jeff's if-then cascade because it's less code and it's simpler (it's definitely easier to ensure it'll work as expected). For the below code PrintRelativeTime.GetRelativeTimeMessage(TimeSpan ago) returns the relative time message (e.g. "yesterday"). | ||||
|
feedback
|
|
When you know the viewer's time zone, it might be clearer to use calendar days at the day scale. I'm not familiar with the .NET libraries so I don't know how you'd do that in C#, unfortunately. On consumer sites, you could also be hand-wavier under a minute. "Less than a minute ago" or "just now" could be good enough. | ||||
|
feedback
|
The same as another answer to this question but as an extension method with a static dictionary. | ||||
|
feedback
|
|
You can reduce the server-side load by performing this logic client-side. View source on some Digg pages for reference. They have the server emit an epoch time value that gets processed by Javascript. This way you don't need to manage the end user's time zone. The new server-side code would be something like:
You could even add a NOSCRIPT block there and just perform a ToString(). | ||||
|
feedback
|
|
In PHP, I do it this way:
| ||||
|
feedback
|
|
I went to the UserVoice site to add a bug report, and found that issues with the relative time labels were already mentioned -- sort of. And I just searched for "relative yesterday". But nobody seems to have mentioned that the "yesterday" algorithm is technically wrong. Today is August 20th, around noon. I was just looking at an answer I posted the day before yesterday, on August 18th, in the 6 PM hour (local time), and it was displayed as "yesterday". "the XX [dateparts] ago" patterns all work fine because they're straightforward relative measures. To get roughly the correct time, you take "now" and substract XX [dateparts]. But at 12:00:01 AM, "yesterday" is any time from 1+ seconds ago to 24 hours and 1+ seconds ago. At 11:59:59 PM, "yesterday" is any time from 23:59:59+ ago to 47:59:59+ ago. In short, the relative time "yesterday" can't be determined in a sensible way by using a delta at the seconds' level, only by subtracting the value of the "day" datepart. Note that "one day ago" would be a correct rendering of the same time threshold, even up to 1.999 days, but "yesterday" isn't. EDIT: I didn't notice at first that the times that appeared on the tooltips were in UTC. Considering that the timestamps aren't localized to the user's time zone, I think that even using "yesterday" is probably ill-advised. If using relative times is intended to make the time strings easier to understand without thinking about them, any "yesterday" that would be based on UTC would be counterproductive. | ||||
|
feedback
|
|
If you expect equal distribution of the different cases then rearranging the conditional tests into a binary tree should be beneficial. | ||||
|
feedback
|
|
Here's the algorithm stackoverflow uses but rewritten more concisely in perlish pseudocode with a bug fix (no "one hours ago"). The function takes a (positive) number of seconds ago and returns a human-friendly string like "3 hours ago" or "yesterday".
| ||||
|
feedback
|
|
using Fluent DateTime http://fluentdatetime.codeplex.com/
| ||||
|
feedback
|
|
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:
| ||||
|
feedback
|
|
Java for client-side gwt usage:
| ||||
|
feedback
|
|
Given the world and her husband appear to be posting code samples, here is what I wrote a while ago, based on a couple of these answers. I had a specific need for this code to be localisable. So I have two classes — I've left some XMLdoc in, but removed most (where they'd be obvious) for brevity's sake. I've also not included every class member here:
}
}
and the rounding methods are like this (I've included
I hope people find this useful and/or interesting :o) | ||||
|
feedback
|
|
I created a Rails plugin that does pretty date and time formatting: http://github.com/gcnovus/ruby-tidbits/tree/master It, too, uses a "big-ass switch/if/else statement," though, being Ruby, it's of course a pretty, big-ass switch/if/else statement :) | ||||
|
feedback
|
|
@Jeff, I've been going a bit mad trying to figure out why my code was returning negative values for times in the past and now I've finally cracked it... I'm in the middle of BST! Line 1 now becomes:
| ||||
|
feedback
|