Given a specific DateTime value, how do I display relative time, like
- 2 hours ago
- 3 days ago
- a month ago
etcetera?
|
Given a specific DateTime value, how do I display relative time, like
etcetera? |
|||||||||||||||||||||
|
|
Jeff, your code is nice but could be clearer with constants (as suggested in Code Complete).
|
|||||||||||||||||||||
|
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
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. |
|||||||||||||||||||||
|
|
Well, here's how we do it on Stack Overflow.
Suggestions? Comments? Ways to improve this algorithm? |
|||||||||||||||||||||
|
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 |
|||||||||
|
|
Here a rewrite from Jeffs Script for PHP:
|
|||||||
|
http://refactormycode.com/codes/493-twitter-esque-relative-dates |
|||||||||||||||
|
|
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"):
|
|||||
|
|
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)
|
|||||||||
|
|
@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. |
|||||
|
iPhone obj-c Version
} |
||||
|
|
|
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! :)
|
|||||||
|
|
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:
|
||||
|
|
|
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 of the XMLdoc in the source, but removed most (where they'd be obvious) for brevity's sake. I've also not included every class member here:
The
One of the key things I wanted to achieve, as well as localisation, was that "today" would only mean "this calendar day", so the
and the rounding methods are like this (I've included
I hope people find this useful and/or interesting :o) |
||||
|
|
|
using Fluent DateTime https://github.com/FluentDateTime
|
||||
|
|
|
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"). |
||||
|
|
The same as another answer to this question but as an extension method with a static dictionary. |
|||||||||
|
|
In PHP, I do it this way:
|
||||
|
|
|
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. |
||||
|
|
|
Java for client-side gwt usage:
|
||||
|
|
|
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(). |
||||
|
|
|
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".
|
||||
|
|
|
This, I got from one of Bill Gates' blog (no lie). I need to find it on my browser history and I'll give you the link. The Javascript code to do the same thing (as requested):
Basically, you work in terms of seconds... |
||||
|
|
|
I would provide some handy extensions methods for this and make the code more readable. First, couple of extension methods for
Then, one for
Now, you can do something like below:
|
||||
|
|
|
@Jeff
Doing a subtraction on So you can just do
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? |
||||
|
|
|
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'. |
||||
|
|
|
I think there is already a number of answers related to this post, but one can use this which is easy to use just like plugin and also easily readable for programmers. Send your specific date, and get its value in string form:
|
||||
|
|
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.