-
-
Save wilkerlucio/58830 to your computer and use it in GitHub Desktop.
Javascript Date Helper for distance in time
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var DateHelper = { | |
// Takes the format of "Jan 15, 2007 15:45:00 GMT" and converts it to a relative time | |
// Ruby strftime: %b %d, %Y %H:%M:%S GMT | |
time_ago_in_words_with_parsing: function(from) { | |
var date = new Date; | |
date.setTime(Date.parse(from)); | |
return this.time_ago_in_words(date); | |
}, | |
time_ago_in_words: function(from) { | |
return this.distance_of_time_in_words(new Date, from); | |
}, | |
distance_of_time_in_words: function(to, from) { | |
var distance_in_seconds = ((to - from) / 1000); | |
var distance_in_minutes = (distance_in_seconds / 60).floor(); | |
if (distance_in_minutes == 0) { return 'menos de um minuto atrás'; } | |
if (distance_in_minutes == 1) { return 'um minuto atrás'; } | |
if (distance_in_minutes < 45) { return distance_in_minutes + ' minutos atrás'; } | |
if (distance_in_minutes < 90) { return 'aproximadamente 1 hora atrás'; } | |
if (distance_in_minutes < 1440) { return 'aproximadamente ' + (distance_in_minutes / 60).floor() + ' horas atrás'; } | |
if (distance_in_minutes < 2880) { return '1 dia atrás'; } | |
if (distance_in_minutes < 43200) { return (distance_in_minutes / 1440).floor() + ' dias atrás'; } | |
if (distance_in_minutes < 86400) { return 'aproximadamente 1 mês atrás'; } | |
if (distance_in_minutes < 525960) { return (distance_in_minutes / 43200).floor() + ' meses atrás'; } | |
if (distance_in_minutes < 1051199) { return 'aproximadamente 1 ano atrás'; } | |
return 'mais de ' + (distance_in_minutes / 525960).floor() + ' anos atrás'; | |
} | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment