mirror of
https://github.com/immich-app/immich.git
synced 2024-12-17 12:22:31 +02:00
bffc2cdf60
* refactor: move all extensions to separate package * refactor(mobile): add BuildContext extension * refactor(mobile): use theme getters from context * refactor(mobile): use media query size from context * refactor(mobile): use auto router methods from context * refactor(mobile): use navigator methods from context --------- Co-authored-by: shalong-tanwen <139912620+shalong-tanwen@users.noreply.github.com>
37 lines
1.6 KiB
Dart
37 lines
1.6 KiB
Dart
extension TimeAgoExtension on DateTime {
|
|
String timeAgo({bool numericDates = true}) {
|
|
DateTime date = toLocal();
|
|
final date2 = DateTime.now().toLocal();
|
|
final difference = date2.difference(date);
|
|
|
|
if (difference.inSeconds < 5) {
|
|
return 'Just now';
|
|
} else if (difference.inSeconds < 60) {
|
|
return '${difference.inSeconds} seconds ago';
|
|
} else if (difference.inMinutes <= 1) {
|
|
return (numericDates) ? '1 minute ago' : 'A minute ago';
|
|
} else if (difference.inMinutes < 60) {
|
|
return '${difference.inMinutes} minutes ago';
|
|
} else if (difference.inHours <= 1) {
|
|
return (numericDates) ? '1 hour ago' : 'An hour ago';
|
|
} else if (difference.inHours < 60) {
|
|
return '${difference.inHours} hours ago';
|
|
} else if (difference.inDays <= 1) {
|
|
return (numericDates) ? '1 day ago' : 'Yesterday';
|
|
} else if (difference.inDays < 6) {
|
|
return '${difference.inDays} days ago';
|
|
} else if ((difference.inDays / 7).ceil() <= 1) {
|
|
return (numericDates) ? '1 week ago' : 'Last week';
|
|
} else if ((difference.inDays / 7).ceil() < 4) {
|
|
return '${(difference.inDays / 7).ceil()} weeks ago';
|
|
} else if ((difference.inDays / 30).ceil() <= 1) {
|
|
return (numericDates) ? '1 month ago' : 'Last month';
|
|
} else if ((difference.inDays / 30).ceil() < 30) {
|
|
return '${(difference.inDays / 30).ceil()} months ago';
|
|
} else if ((difference.inDays / 365).ceil() <= 1) {
|
|
return (numericDates) ? '1 year ago' : 'Last year';
|
|
}
|
|
return '${(difference.inDays / 365).floor()} years ago';
|
|
}
|
|
}
|