time-ago-pipe
Version:
A really simple, lightweight Angular pipe for converting a date string into a time ago
140 lines (136 loc) • 3.85 kB
JavaScript
import { Pipe, NgZone, ChangeDetectorRef } from '@angular/core';
/**
* @fileoverview added by tsickle
* @suppress {checkTypes} checked by tsc
*/
class TimeAgoPipe {
/**
* @param {?} changeDetectorRef
* @param {?} ngZone
*/
constructor(changeDetectorRef, ngZone) {
this.changeDetectorRef = changeDetectorRef;
this.ngZone = ngZone;
}
/**
* @param {?} value
* @return {?}
*/
transform(value) {
this.removeTimer();
let /** @type {?} */ d = new Date(value);
let /** @type {?} */ now = new Date();
let /** @type {?} */ seconds = Math.round(Math.abs((now.getTime() - d.getTime()) / 1000));
let /** @type {?} */ timeToUpdate = (Number.isNaN(seconds)) ? 1000 : this.getSecondsUntilUpdate(seconds) * 1000;
this.timer = this.ngZone.runOutsideAngular(() => {
if (typeof window !== 'undefined') {
return window.setTimeout(() => {
this.ngZone.run(() => this.changeDetectorRef.markForCheck());
}, timeToUpdate);
}
return null;
});
let /** @type {?} */ minutes = Math.round(Math.abs(seconds / 60));
let /** @type {?} */ hours = Math.round(Math.abs(minutes / 60));
let /** @type {?} */ days = Math.round(Math.abs(hours / 24));
let /** @type {?} */ months = Math.round(Math.abs(days / 30.416));
let /** @type {?} */ years = Math.round(Math.abs(days / 365));
if (Number.isNaN(seconds)) {
return '';
}
else if (seconds <= 45) {
return 'a few seconds ago';
}
else if (seconds <= 90) {
return 'a minute ago';
}
else if (minutes <= 45) {
return minutes + ' minutes ago';
}
else if (minutes <= 90) {
return 'an hour ago';
}
else if (hours <= 22) {
return hours + ' hours ago';
}
else if (hours <= 36) {
return 'a day ago';
}
else if (days <= 25) {
return days + ' days ago';
}
else if (days <= 45) {
return 'a month ago';
}
else if (days <= 345) {
return months + ' months ago';
}
else if (days <= 545) {
return 'a year ago';
}
else {
// (days > 545)
return years + ' years ago';
}
}
/**
* @return {?}
*/
ngOnDestroy() {
this.removeTimer();
}
/**
* @return {?}
*/
removeTimer() {
if (this.timer) {
window.clearTimeout(this.timer);
this.timer = null;
}
}
/**
* @param {?} seconds
* @return {?}
*/
getSecondsUntilUpdate(seconds) {
let /** @type {?} */ min = 60;
let /** @type {?} */ hr = min * 60;
let /** @type {?} */ day = hr * 24;
if (seconds < min) {
// less than 1 min, update every 2 secs
return 2;
}
else if (seconds < hr) {
// less than an hour, update every 30 secs
return 30;
}
else if (seconds < day) {
// less then a day, update every 5 mins
return 300;
}
else {
// update every hour
return 3600;
}
}
}
TimeAgoPipe.decorators = [
{ type: Pipe, args: [{
name: 'timeAgo',
pure: false
},] },
];
/** @nocollapse */
TimeAgoPipe.ctorParameters = () => [
{ type: ChangeDetectorRef, },
{ type: NgZone, },
];
/**
* @fileoverview added by tsickle
* @suppress {checkTypes} checked by tsc
*/
/**
* Generated bundle index. Do not edit.
*/
export { TimeAgoPipe };
//# sourceMappingURL=time-ago-pipe.js.map