fluffychat/lib/utils/date_time_extension.dart

86 lines
2.8 KiB
Dart
Raw Normal View History

2020-01-09 11:16:34 +00:00
import 'package:flutter/material.dart';
2021-10-26 16:50:34 +00:00
import 'package:flutter_gen/gen_l10n/l10n.dart';
import 'package:intl/intl.dart';
2020-01-09 11:16:34 +00:00
/// Provides extra functionality for formatting the time.
extension DateTimeExtension on DateTime {
2020-05-13 13:58:59 +00:00
bool operator <(DateTime other) {
return millisecondsSinceEpoch < other.millisecondsSinceEpoch;
2020-01-09 11:16:34 +00:00
}
2020-05-13 13:58:59 +00:00
bool operator >(DateTime other) {
return millisecondsSinceEpoch > other.millisecondsSinceEpoch;
2020-01-09 11:16:34 +00:00
}
2020-05-13 13:58:59 +00:00
bool operator >=(DateTime other) {
return millisecondsSinceEpoch >= other.millisecondsSinceEpoch;
2020-01-09 11:16:34 +00:00
}
2020-05-13 13:58:59 +00:00
bool operator <=(DateTime other) {
return millisecondsSinceEpoch <= other.millisecondsSinceEpoch;
2020-01-09 11:16:34 +00:00
}
/// Two message events can belong to the same environment. That means that they
/// don't need to display the time they were sent because they are close
/// enaugh.
static const minutesBetweenEnvironments = 10;
2020-01-09 11:16:34 +00:00
/// Checks if two DateTimes are close enough to belong to the same
/// environment.
bool sameEnvironment(DateTime prevTime) {
return millisecondsSinceEpoch - prevTime.millisecondsSinceEpoch <
1000 * 60 * minutesBetweenEnvironments;
}
/// Returns a simple time String.
2024-06-27 13:26:56 +00:00
String localizedTimeOfDay(BuildContext context) =>
2024-07-04 13:37:28 +00:00
L10n.of(context)!.alwaysUse24HourFormat == 'true'
2024-07-04 08:59:52 +00:00
? DateFormat('HH:mm', L10n.of(context)!.localeName).format(this)
: DateFormat('h:mm a', L10n.of(context)!.localeName).format(this);
2020-01-09 11:16:34 +00:00
/// Returns [localizedTimeOfDay()] if the ChatTime is today, the name of the week
/// day if the ChatTime is this week and a date string else.
String localizedTimeShort(BuildContext context) {
2021-04-14 08:37:15 +00:00
final now = DateTime.now();
2020-01-09 11:16:34 +00:00
2021-04-14 08:37:15 +00:00
final sameYear = now.year == year;
2020-01-09 11:16:34 +00:00
2021-04-14 08:37:15 +00:00
final sameDay = sameYear && now.month == month && now.day == day;
2020-01-09 11:16:34 +00:00
2021-04-14 08:37:15 +00:00
final sameWeek = sameYear &&
2020-01-09 11:16:34 +00:00
!sameDay &&
2020-05-13 13:58:59 +00:00
now.millisecondsSinceEpoch - millisecondsSinceEpoch <
2020-01-09 11:16:34 +00:00
1000 * 60 * 60 * 24 * 7;
if (sameDay) {
return localizedTimeOfDay(context);
2020-01-09 11:16:34 +00:00
} else if (sameWeek) {
return DateFormat.E(Localizations.localeOf(context).languageCode)
.format(this);
2020-01-09 11:16:34 +00:00
} else if (sameYear) {
return DateFormat.MMMd(Localizations.localeOf(context).languageCode)
.format(this);
2020-01-09 11:16:34 +00:00
}
return DateFormat.yMMMd(Localizations.localeOf(context).languageCode)
.format(this);
2020-01-09 11:16:34 +00:00
}
/// If the DateTime is today, this returns [localizedTimeOfDay()], if not it also
/// shows the date.
/// TODO: Add localization
String localizedTime(BuildContext context) {
2021-04-14 08:37:15 +00:00
final now = DateTime.now();
2020-01-09 11:16:34 +00:00
2021-04-14 08:37:15 +00:00
final sameYear = now.year == year;
2020-01-09 11:16:34 +00:00
2021-04-14 08:37:15 +00:00
final sameDay = sameYear && now.month == month && now.day == day;
2020-01-09 11:16:34 +00:00
if (sameDay) return localizedTimeOfDay(context);
return L10n.of(context)!.dateAndTimeOfDay(
localizedTimeShort(context),
localizedTimeOfDay(context),
);
2020-01-09 11:16:34 +00:00
}
}