2008-07-18 11:34:06 -04:00
/ *
2010-02-28 14:00:58 -05:00
* timeago : a jQuery plugin , version : 0.9 . pre ( 2010 - 02 - 28 )
2009-10-25 20:22:09 -04:00
* @ requires jQuery v1 . 2.3 or later
2008-07-18 11:34:06 -04:00
*
* Timeago is a jQuery plugin that makes it easy to support automatically
* updating fuzzy timestamps ( e . g . "4 minutes ago" or "about 1 day ago" ) .
*
* For usage and examples , visit :
* http : //timeago.yarp.com/
*
* Licensed under the MIT :
* http : //www.opensource.org/licenses/mit-license.php
*
2010-01-04 12:44:04 -05:00
* Copyright ( c ) 2008 - 2010 , Ryan McGeary ( ryanonjavascript - [ at ] - mcgeary [ * dot * ] org )
2008-07-18 11:34:06 -04:00
* /
( function ( $ ) {
$ . timeago = function ( timestamp ) {
2008-07-20 17:08:34 -04:00
if ( timestamp instanceof Date ) return inWords ( timestamp ) ;
else if ( typeof timestamp == "string" ) return inWords ( $ . timeago . parse ( timestamp ) ) ;
2009-08-19 16:32:51 +01:00
else return inWords ( $ . timeago . datetime ( timestamp ) ) ;
2008-07-18 11:34:06 -04:00
} ;
2008-08-19 19:40:43 -04:00
var $t = $ . timeago ;
2008-07-18 11:34:06 -04:00
$ . extend ( $ . timeago , {
settings : {
2008-08-06 07:04:15 -04:00
refreshMillis : 60000 ,
2008-08-19 19:40:43 -04:00
allowFuture : false ,
strings : {
2008-10-13 17:51:52 -04:00
prefixAgo : null ,
prefixFromNow : null ,
2008-10-14 08:45:42 -04:00
suffixAgo : "ago" ,
suffixFromNow : "from now" ,
2008-08-19 19:40:43 -04:00
seconds : "less than a minute" ,
minute : "about a minute" ,
minutes : "%d minutes" ,
hour : "about an hour" ,
hours : "about %d hours" ,
day : "a day" ,
days : "%d days" ,
month : "about a month" ,
months : "%d months" ,
year : "about a year" ,
years : "%d years"
}
2008-07-18 11:34:06 -04:00
} ,
inWords : function ( distanceMillis ) {
2008-08-19 19:40:43 -04:00
var $l = this . settings . strings ;
2008-10-13 17:51:52 -04:00
var prefix = $l . prefixAgo ;
2010-02-28 14:00:58 -05:00
var suffix = $l . suffixAgo ;
2008-08-06 07:04:15 -04:00
if ( this . settings . allowFuture ) {
2008-10-13 17:51:52 -04:00
if ( distanceMillis < 0 ) {
prefix = $l . prefixFromNow ;
2010-02-28 14:00:58 -05:00
suffix = $l . suffixFromNow ;
2008-10-13 17:51:52 -04:00
}
2008-08-06 07:04:15 -04:00
distanceMillis = Math . abs ( distanceMillis ) ;
}
2008-07-18 11:34:06 -04:00
var seconds = distanceMillis / 1000 ;
var minutes = seconds / 60 ;
var hours = minutes / 60 ;
var days = hours / 24 ;
var years = days / 365 ;
2009-02-14 14:09:53 -05:00
var words = seconds < 45 && substitute ( $l . seconds , Math . round ( seconds ) ) ||
2009-02-18 11:24:57 -05:00
seconds < 90 && substitute ( $l . minute , 1 ) ||
2009-02-14 14:09:53 -05:00
minutes < 45 && substitute ( $l . minutes , Math . round ( minutes ) ) ||
2009-02-18 11:24:57 -05:00
minutes < 90 && substitute ( $l . hour , 1 ) ||
2009-02-14 14:09:53 -05:00
hours < 24 && substitute ( $l . hours , Math . round ( hours ) ) ||
2009-02-18 11:24:57 -05:00
hours < 48 && substitute ( $l . day , 1 ) ||
2009-02-14 14:09:53 -05:00
days < 30 && substitute ( $l . days , Math . floor ( days ) ) ||
2009-02-18 11:24:57 -05:00
days < 60 && substitute ( $l . month , 1 ) ||
2009-02-14 14:09:53 -05:00
days < 365 && substitute ( $l . months , Math . floor ( days / 30 ) ) ||
2009-02-18 11:24:57 -05:00
years < 2 && substitute ( $l . year , 1 ) ||
2009-02-14 14:09:53 -05:00
substitute ( $l . years , Math . floor ( years ) ) ;
2008-07-18 11:34:06 -04:00
2008-10-13 17:51:52 -04:00
return $ . trim ( [ prefix , words , suffix ] . join ( " " ) ) ;
2008-07-18 11:34:06 -04:00
} ,
parse : function ( iso8601 ) {
2008-07-30 10:24:08 -04:00
var s = $ . trim ( iso8601 ) ;
2008-07-18 11:34:06 -04:00
s = s . replace ( /-/ , "/" ) . replace ( /-/ , "/" ) ;
s = s . replace ( /T/ , " " ) . replace ( /Z/ , " UTC" ) ;
s = s . replace ( /([\+-]\d\d)\:?(\d\d)/ , " $1$2" ) ; // -04:00 -> -0400
return new Date ( s ) ;
2009-08-19 16:32:51 +01:00
} ,
datetime : function ( elem ) {
2010-01-04 12:43:13 -05:00
// jQuery's `is()` doesn't play well with HTML5 in IE
2010-01-27 17:30:51 -05:00
var isTime = $ ( elem ) . get ( 0 ) . tagName . toLowerCase ( ) == "time" ; // $(elem).is("time");
var iso8601 = isTime ? $ ( elem ) . attr ( "datetime" ) : $ ( elem ) . attr ( "title" ) ;
2009-10-25 20:22:09 -04:00
return $t . parse ( iso8601 ) ;
2008-07-18 11:34:06 -04:00
}
} ) ;
$ . fn . timeago = function ( ) {
var self = this ;
self . each ( refresh ) ;
2008-08-19 19:40:43 -04:00
var $s = $t . settings ;
2008-07-20 16:08:59 -04:00
if ( $s . refreshMillis > 0 ) {
2008-07-20 17:08:34 -04:00
setInterval ( function ( ) { self . each ( refresh ) ; } , $s . refreshMillis ) ;
2008-07-18 11:34:06 -04:00
}
2008-07-20 17:08:34 -04:00
return self ;
2008-07-18 11:34:06 -04:00
} ;
function refresh ( ) {
2009-10-25 20:22:09 -04:00
var data = prepareData ( this ) ;
if ( ! isNaN ( data . datetime ) ) {
$ ( this ) . text ( inWords ( data . datetime ) ) ;
2008-07-19 10:36:59 -04:00
}
2008-07-20 17:08:34 -04:00
return this ;
}
2009-10-25 20:22:09 -04:00
function prepareData ( element ) {
element = $ ( element ) ;
2010-02-16 07:49:41 -05:00
if ( ! element . data ( "timeago" ) ) {
2009-10-25 20:22:09 -04:00
element . data ( "timeago" , { datetime : $t . datetime ( element ) } ) ;
var text = $ . trim ( element . text ( ) ) ;
if ( text . length > 0 ) element . attr ( "title" , text ) ;
}
return element . data ( "timeago" ) ;
}
2008-07-20 17:08:34 -04:00
function inWords ( date ) {
2008-08-19 19:40:43 -04:00
return $t . inWords ( distance ( date ) ) ;
2008-07-18 11:34:06 -04:00
}
function distance ( date ) {
return ( new Date ( ) . getTime ( ) - date . getTime ( ) ) ;
}
2009-02-14 14:09:53 -05:00
function substitute ( stringOrFunction , value ) {
var string = $ . isFunction ( stringOrFunction ) ? stringOrFunction ( value ) : stringOrFunction ;
2008-08-19 19:40:43 -04:00
return string . replace ( /%d/i , value ) ;
}
2008-08-20 22:34:42 -04:00
// fix for IE6 suckage
2010-01-27 17:30:51 -05:00
document . createElement ( "abbr" ) ;
document . createElement ( "time" ) ;
2008-08-19 19:40:43 -04:00
} ) ( jQuery ) ;