clean up since the pipe is now handling that

This commit is contained in:
Nicolas Constant 2018-11-01 22:35:07 -04:00
parent 6af023fbbd
commit b876728dbe
No known key found for this signature in database
GPG Key ID: 1E9F677FB01A5688
1 changed files with 15 additions and 15 deletions

View File

@ -80,23 +80,23 @@ export class StatusComponent implements OnInit {
return false;
}
getCompactRelativeTime(d: string): string {
const date = (new Date(d)).getTime();
const now = Date.now();
const timeDelta = (now - date) / (1000);
// getCompactRelativeTime(d: string): string {
// const date = (new Date(d)).getTime();
// const now = Date.now();
// const timeDelta = (now - date) / (1000);
if (timeDelta < 60) {
return `${timeDelta | 0}s`;
} else if (timeDelta < 60 * 60) {
return `${timeDelta / 60 | 0}m`;
} else if (timeDelta < 60 * 60 * 24) {
return `${timeDelta / (60 * 60) | 0}h`;
} else if (timeDelta < 60 * 60 * 24 * 31) {
return `${timeDelta / (60 * 60 * 24) | 0}d`;
}
// if (timeDelta < 60) {
// return `${timeDelta | 0}s`;
// } else if (timeDelta < 60 * 60) {
// return `${timeDelta / 60 | 0}m`;
// } else if (timeDelta < 60 * 60 * 24) {
// return `${timeDelta / (60 * 60) | 0}h`;
// } else if (timeDelta < 60 * 60 * 24 * 31) {
// return `${timeDelta / (60 * 60 * 24) | 0}d`;
// }
return formatDate(date, 'MM/dd', this.locale);
}
// return formatDate(date, 'MM/dd', this.locale);
// }
openReply(): boolean {
this.replyingToStatus = !this.replyingToStatus;