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...? |
||||
|
|
|
Jeff, your code is nice but could be clearer with constants (as suggested in Code Complete). |
|||
|
|
Java for client-side gwt usage:
|
|||
|
|
|
|
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:
|
|||
|
|
|
|
using Fluent DateTime http://fluentdatetime.codeplex.com/
|
|||
|
|
|
|
The same as another answer to this question but as an extension method with a static dictionary. |
|||
|
|
|
|
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"):
|
|||
|
|
|
|
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:
|
|||
|
|
|
|
Here a rewrite from Jeffs Script for PHP:
|
|||
|
|
|
|
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)
|
|||
|
|
|
|
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. |
|||
|
|
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".
|
|||
|
|
|
|
If you expect equal distribution of the different cases then rearranging the conditional tests into a binary tree should be beneficial. |
|||
|
|
|
|
jquery.timeago pluginJeff, Because stackoverflow uses jquery extensively, I recommend this 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. |
||||
|
|
|
http://refactormycode.com/codes/493-twitter-esque-relative-dates |
|||
|
|
Here's a post that discusses this, and has code samples in C# |
|||
|
|
|
|
Surely an easy fix to get rid of the '1 hours ago' problem would be to increase the window that 'an hour ago' is valid for. Change
into
This means that something that occurred 110 minutes ago will read as 'an hour ago' - this may not be perfect, but I'd say it is better than the current situation of '1 hours ago'. |
|||
|
|
|
|
In PHP, I do it this way:
|
|||
|
|
|
|
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. |
|||
|
|
|
|
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(). |
|||
|
|
|
|
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. |
|||
|
|
|
|
@Jeff
Doing a subtraction on DateTime returns a TimeSpan anyway. So you can just do (DateTime.UtcNow - dt).TotalSeconds I'm also surprised to see the constants multiplied-out by hand and then comments added with the multiplications in. Was that some misguided optimisation? |
|||
|
|
|
|
@Wedge : wouldn't it be smoother to be able to break the loop when you've found the right on to use? |
|||
|
|
|
|
@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:
|
|||
|
|
|
|
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 :) |
|||
|
|
|
|
So the basic answer is a Big-Ass switch/if/else statement :) |
|||
|
|
|
|
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 |
|||
|
|
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? |
|||
|
|
|
|
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. :) |
|||
|
|
|
|
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"). |
|||
|
|
|
|
Stack Overflow will write both "answered an hour ago" and "answered 1 hours ago". |
|||