Плагин относительного времени jQuery (например, Twitter, FB и т. Д.) В Safari? - PullRequest
1 голос
/ 07 января 2011

Работает во всех браузерах, кроме Firefox, есть идеи?

(function($){
$.relativetime = function(options) {
    var defaults = {
        time:new Date(),
        suffix:'ago',
        prefix:''
    };

    options = $.extend(true, defaults, options);

    //Fixes NaN in some browsers by removing dashes...
    _dateStandardizer = function(dateString){
        modded_date = options.time.toString().replace(/-/g,' ');
        return new Date(modded_date)
    }

    //Time object with all the times that can be used throughout
    //the plugin and for later extensions.
    time = {
        unmodified:options.time, //the original time put in
        original:_dateStandardizer(options.time).getTime(), //time that was given in UNIX time
        current:new Date().getTime(), //time right now
        displayed:'' //what will be shown
    }
    //The difference in the unix timestamps
    time.diff = time.current-time.original;

    //Here we save a JSON object with all the different measurements
    //of time. "week" is not yet in use.
    time.segments = {
        second:time.diff/1000,
        minute:time.diff/1000/60,
        hour:time.diff/1000/60/60,
        day:time.diff/1000/60/60/24,
        week:time.diff/1000/60/60/24/7,
        month:time.diff/1000/60/60/24/30,
        year:time.diff/1000/60/60/24/365
    }

    //Takes a string and adds the prefix and suffix options around it
    _uffixWrap = function(str){
        return options.prefix+' '+str+' '+options.suffix;
    }

    //Converts the time to a rounded int and adds an "s" if it's plural
    _niceDisplayDate = function(str,date){
        _roundedDate = Math.round(date);
        s='';
        if(_roundedDate !== 1){ s='s'; }
        return _uffixWrap(_roundedDate+' '+str+s)
    }

    //Now we loop through all the times and find out which one is
    //the right one. The time "days", "minutes", etc that gets
    //shown is based on the JSON time.segments object's keys
    for(x in time.segments){
        if(time.segments[x] >= 1){
            time.displayed = _niceDisplayDate(x,time.segments[x])
        }
        else{
            break;
        }
    }

    //If time.displayed is still blank (a bad date, future date, etc)
    //just return the original, unmodified date.
    if(time.displayed == ''){time.displayed = time.unmodified;}

    //Give it to em!
    return time.displayed;

};
})(jQuery);

В Safari этот код возвращает заданную дату, которая совпадает с датой моего плагина в случае сбоя.Это может произойти из-за будущей даты или неверной даты.Однако я не уверен, так как приведенное время является стандартным YY MM DD HH:mm:ss

Демонстрация: http://jsfiddle.net/8azeT/

1 Ответ

0 голосов
/ 15 января 2011

Я думаю, что использованная строка неверна, а затем лишена '-', очень неправильно:

'010111' - истолковано ФФ как 1 января 1911 (ФФ США)

Правильный формат: '01/01/2011' (FF США)

Я бы вообще не использовал этот формат, поскольку в каждой стране есть свой способ отображения / разбора дат. Вероятно, самый безопасный способ разбора строки - использовать:

'January 1, 2011 1:30:11 pm GMT'

но я бы вместо этого использовал объект даты в опциях и пропустил разбор строк, чтобы убедиться, что дата правильная.

http://jsfiddle.net/8azeT/4/

Вопрос о Safari, но содержание FF?

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...