50 lines
1.6 KiB
Dart
50 lines
1.6 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:jiffy/jiffy.dart';
|
|
|
|
extension IsSameDay on DateTime {
|
|
bool isSameDay(DateTime other) =>
|
|
year == other.year && month == other.month && day == other.day;
|
|
|
|
DateTime nextWeekday(int day) =>
|
|
add(Duration(days: (day - weekday) % DateTime.daysPerWeek));
|
|
|
|
DateTime withTime(TimeOfDay time) =>
|
|
copyWith(hour: time.hour, minute: time.minute);
|
|
|
|
TimeOfDay toTimeOfDay() => TimeOfDay(hour: hour, minute: minute);
|
|
|
|
bool isSameDateTime(DateTime other) {
|
|
var isSameDay = this.isSameDay(other);
|
|
var isSameTimeOfDay = (toTimeOfDay() == other.toTimeOfDay());
|
|
|
|
return isSameDay && isSameTimeOfDay;
|
|
}
|
|
|
|
bool isSameOrAfter(DateTime other) => isSameDateTime(other) || isAfter(other);
|
|
}
|
|
|
|
/// Formatting helpers backed by Jiffy. Centralises the patterns that previously
|
|
/// were repeated as `Jiffy.parseFromDateTime(dt).format(pattern: '...')`.
|
|
extension DateTimeFormatting on DateTime {
|
|
String formatHm() => Jiffy.parseFromDateTime(this).format(pattern: 'HH:mm');
|
|
|
|
String formatDate() =>
|
|
Jiffy.parseFromDateTime(this).format(pattern: 'dd.MM.yyyy');
|
|
|
|
String formatDateTime() =>
|
|
Jiffy.parseFromDateTime(this).format(pattern: 'dd.MM.yyyy HH:mm');
|
|
|
|
String formatDateShort() =>
|
|
Jiffy.parseFromDateTime(this).format(pattern: 'dd.MM.');
|
|
|
|
String formatDateShortHm() =>
|
|
Jiffy.parseFromDateTime(this).format(pattern: 'dd.MM. HH:mm');
|
|
|
|
String formatMonthYear() =>
|
|
Jiffy.parseFromDateTime(this).format(pattern: 'MMMM yyyy');
|
|
|
|
String formatRelative() => Jiffy.parseFromDateTime(this).fromNow();
|
|
|
|
String timeRangeTo(DateTime end) => '${formatHm()} - ${end.formatHm()}';
|
|
}
|