$ .fn.fixTime не работает - PullRequest
       3

$ .fn.fixTime не работает

0 голосов
/ 14 февраля 2012

http://jsfiddle.net/AVLzH/14/

Я пытаюсь создать свою первую расширенную функцию jQuery, которая будет принимать формат времени из YYYYMMDDHHMMSS и преобразовывать его в удобочитаемые вещи, такие как Just a moment ago или2 hours ago мой код работал до того, как я превратил его в расширенную функцию.

Боковая панель: да, я знаю, что лучше использовать код на стороне сервера для получения текущего времени,это только для примера

Когда я вызываю функцию, она находится в цепочке, которая захватывает атрибут datetime из всех элементов <time>, переключает текст с возвращенным и устанавливает старый текстна data-tooltip.

Там много кода, так что, вероятно, лучше всего зайти на страницу jsfiddle:

http://jsfiddle.net/AVLzH/14/

jsLint возвращает следующие ошибки:

Error:
Expected an assignment or function call and instead saw an expression.
});

Expected '(end)' and instead saw '}'.
})( jQuery );

Implied global: jQuery 3, console 19,20,22,23,40,50,75

Да, и в принципе я понятия не имею, что с этим делать.

Спасибо за любую помощь заранее!

http://jsfiddle.net/AVLzH/14/

PS - случайно вставил туда старый код .. изменитьd link

Спасибо за всю вашу помощь. jsLint больше не возвращает никаких ошибок, но работает неправильно.

1 Ответ

2 голосов
/ 14 февраля 2012

Неправильная часть после возврата

 return returning;
    };
});

})( jQuery );

, она должна выглядеть следующим образом:

  return returning;
    };
}( jQuery ));

Попробуйте нажать кнопку JSLint в Jsfiddle, чтобы проверить синтаксис.

(function( $ ) {

    jQuery.fn.fixTime = function(activityTime) {



            var currentTime = new Date(),
                month  = currentTime.getMonth() + 1,
                day    = currentTime.getDate(),
                year   = currentTime.getFullYear(),
                hour   = currentTime.getHours(),
                minute = currentTime.getMinutes(),
                second = currentTime.getSeconds(),
                activityTime = new Date(parseInt(this.attr('datetime'), 10)),
                masterTime = (year*10000000000) + (month*100000000) + (day*1000000) + (hour*10000) + (minute*100) + (second * 1),
                timeDifference = masterTime - activityTime,
                returning;

            console.log("Current Time: " + month + "/" + day + "/" + year + " " + hour + ":" + minute + ":" + second);    
            console.log("Current Time: " + year + "/" + month + "/" + day + " " + hour + ":" + minute + ":" + second);

            console.log("Current Time:  " + masterTime);
            console.log("Activity Time: " + activityTime, this);

        console.log(this.attr('datetime'))
            console.log(new Date(20120211103802))
            // Change Time 
            timeDifference = timeDifference + 0;

            // YYYYMMDDHHMMSS

            //             60 - 1 Min
            //           6000 - 1 Hour
            //         240000 - 1 Day
            //        7000000 - 1 Week
            //       30000000 - 1 Month
            //    10000000000 - 1 Year

            // YYYYMMDDHHMMSS

            console.log("Time Difference: " + timeDifference);

            if (0 <= timeDifference && timeDifference < 60) {
                returning = "Just a moment ago";
            } else if (60 <= timeDifference && timeDifference < 120) {
                returning = "A minute ago";
            } else if (120 <= timeDifference && timeDifference < 6000) {
                timeDifference = Math.floor(timeDifference/100);
                returning = timeDifference + " minutes ago";
            } else if (6000 <= timeDifference && timeDifference < 20000) {
                console.log("1 hour ago");
            } else if (20000 <= timeDifference && timeDifference < 240000) {
                timeDifference = Math.floor(timeDifference/10000);
                returning = timeDifference + " hours ago";
            } else if (240000 <= timeDifference && timeDifference < 2000000) {
                returning = "Yesterday";
            } else if (2000000 <= timeDifference && timeDifference < 7000000) {
                timeDifference = Math.floor(timeDifference/1000000);
                returning = timeDifference + " days ago";
            } else if (7000000 <= timeDifference && timeDifference < 14000000) {
                return "A week ago";
            } else if (14000000 <= timeDifference && timeDifference < 30000000) {
                timeDifference = Math.floor(timeDifference/7000000);
                returning = timeDifference + " weeks ago";
            } else if (30000000 <= timeDifference && timeDifference < 200000000) {
                returning = "A month ago";
            } else if (200000000 <= timeDifference && timeDifference < 10000000000) {
                timeDifference = Math.floor(timeDifference/100000000);
                returning = timeDifference + " months ago";
            } else if (10000000000 <= timeDifference && timeDifference < 20000000000) {
                returning = "A year ago";
            } else if (20000000000 <= timeDifference && timeDifference < 1000000000000) {
                timeDifference = Math.floor(timeDifference/10000000000);
                returning = timeDifference + " years ago";
            } else {
                console.error("Error Calculating"); // Only when less than zero or longer than 100 years
                returning = "undefined";
            }

            return returning;
        };

}( jQuery ));

(function() {

    var times = $('time');

    times.each(function() {
        var beforeTime = $(this).text();
   //     var betterTime = new Date($(this).attr('datetime'));

        var betterTime = $(this).fixTime();

        $(this).text(betterTime).attr('data-tooltip', beforeTime);
    });

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