krata/_javascript/utils/timeago.js

88 lines
2.3 KiB
JavaScript
Raw Normal View History

/**
2021-01-23 08:07:18 +01:00
* Calculate the Timeago
*
* Requirement: <https://github.com/iamkun/dayjs>
2019-09-30 14:38:41 +02:00
*/
$(function() {
const attrTimestamp = LocaleHelper.attrTimestamp();
const attrCapitalize = 'data-capitalize';
const $timeago = $(".timeago");
2020-07-23 09:33:42 +02:00
let timeagoTasks = $timeago.length;
let intervalId = void 0;
2019-09-30 14:38:41 +02:00
dayjs.locale(LocaleHelper.locale());
dayjs.extend(window.dayjs_plugin_relativeTime);
dayjs.extend(window.dayjs_plugin_localizedFormat);
2019-09-30 14:38:41 +02:00
function relativetime($elem) {
const now = dayjs();
const past = dayjs.unix(LocaleHelper.getTimestamp($elem));
2019-09-30 14:38:41 +02:00
let diffMonth = now.diff(past, 'month', true);
if (diffMonth > 10) { // year ago range: 11 months to 17months
$elem.removeAttr(attrTimestamp);
return past.format('ll'); // see: https://day.js.org/docs/en/display/format#list-of-localized-formats
2019-09-30 14:38:41 +02:00
}
let diffMinute = now.diff(past, 'minute', true);
if (diffMinute > 44) { // an hour ago range: 45 to 89 minutes
$elem.removeAttr(attrTimestamp);
2019-09-30 14:38:41 +02:00
}
return past.fromNow();
2019-09-30 14:38:41 +02:00
}
function updateTimeago() {
$timeago.each(function() {
if (typeof $(this).attr(attrTimestamp) === 'undefined') {
timeagoTasks -= 1;
return;
2019-09-30 14:38:41 +02:00
}
let relativeTime = relativetime($(this));
const capitalize = $(this).attr(attrCapitalize);
if (typeof capitalize !== 'undefined' && capitalize === 'true') {
relativeTime = relativeTime.replace(/^\w/, (c) => c.toUpperCase());
}
if ($(this).text() !== relativeTime) {
$(this).text(relativeTime);
}
2019-09-30 14:38:41 +02:00
});
if (timeagoTasks === 0 && typeof intervalId !== "undefined") {
2020-08-19 06:26:45 +02:00
clearInterval(intervalId); /* stop interval */
2019-09-30 14:38:41 +02:00
}
return timeagoTasks;
}
function setupTooltips() {
$timeago.each(function() {
const tooltip = $(this).attr('data-toggle');
if (typeof tooltip === 'undefined' || tooltip !== 'tooltip') {
return;
}
const df = $(this).attr('data-tooltip-df');
const ts = LocaleHelper.getTimestamp($(this));
const dateStr = dayjs.unix(ts).format(df);
$(this).attr('data-original-title', dateStr);
$(this).removeAttr('data-tooltip-df');
});
2019-09-30 14:38:41 +02:00
}
if (timeagoTasks === 0) {
2019-09-30 14:38:41 +02:00
return;
}
setupTooltips();
if (updateTimeago()) { /* run immediately */
intervalId = setInterval(updateTimeago, 60 * 1000); /* run every minute */
2019-09-30 14:38:41 +02:00
}
2020-08-19 06:26:45 +02:00
});