1
- import 'dart:io' ;
2
-
3
1
import 'package:dart_helper_utils/dart_helper_utils.dart' ;
4
2
5
3
int get millisecondsSinceEpochNow => DateTime .now ().millisecondsSinceEpoch;
6
4
5
+ const smallWeekdays = {
6
+ 1 : 'Mon' ,
7
+ 2 : 'Tue' ,
8
+ 3 : 'Wed' ,
9
+ 4 : 'Thu' ,
10
+ 5 : 'Fri' ,
11
+ 6 : 'Sat' ,
12
+ 7 : 'Sun' ,
13
+ };
14
+
15
+ const fullWeekdays = {
16
+ 1 : 'Monday' ,
17
+ 2 : 'Tuesday' ,
18
+ 3 : 'Wednesday' ,
19
+ 4 : 'Thursday' ,
20
+ 5 : 'Friday' ,
21
+ 6 : 'Saturday' ,
22
+ 7 : 'Sunday' ,
23
+ };
24
+
25
+ const smallMonthsNames = {
26
+ 1 : 'Jan' ,
27
+ 2 : 'Feb' ,
28
+ 3 : 'Mar' ,
29
+ 4 : 'Apr' ,
30
+ 5 : 'May' ,
31
+ 6 : 'Jun' ,
32
+ 7 : 'Jul' ,
33
+ 8 : 'Aug' ,
34
+ 9 : 'Sep' ,
35
+ 10 : 'Oct' ,
36
+ 11 : 'Nov' ,
37
+ 12 : 'Dec' ,
38
+ };
39
+
40
+ const fullMonthsNames = {
41
+ 1 : 'January' ,
42
+ 2 : 'February' ,
43
+ 3 : 'March' ,
44
+ 4 : 'April' ,
45
+ 5 : 'May' ,
46
+ 6 : 'June' ,
47
+ 7 : 'July' ,
48
+ 8 : 'August' ,
49
+ 9 : 'September' ,
50
+ 10 : 'October' ,
51
+ 11 : 'November' ,
52
+ 12 : 'December' ,
53
+ };
54
+
7
55
extension DHUDateString on String {
8
56
/// Parse string to [DateTime] using null Safety
9
57
DateTime get toDateTime => DateTime .parse (this );
@@ -39,21 +87,8 @@ extension NumberToDateUtils on num {
39
87
/// ```
40
88
/// If the number is outside the range 1-12, it will be clamped within this range.
41
89
String get toFullMonthName {
42
- final monthIndex = this .toInt ().clamp (1 , 12 ) - 1 ;
43
- return [
44
- 'January' ,
45
- 'February' ,
46
- 'March' ,
47
- 'April' ,
48
- 'May' ,
49
- 'June' ,
50
- 'July' ,
51
- 'August' ,
52
- 'September' ,
53
- 'October' ,
54
- 'November' ,
55
- 'December'
56
- ][monthIndex];
90
+ final monthIndex = this .toInt ().clamp (1 , 12 );
91
+ return fullMonthsNames[monthIndex]! ;
57
92
}
58
93
59
94
/// Gets the full day name (e.g., "Monday") corresponding to this number (1-7).
@@ -67,16 +102,8 @@ extension NumberToDateUtils on num {
67
102
/// ```
68
103
/// If the number is outside the range 1-7, it will be normalized within this range using modulo arithmetic.
69
104
String get toFullDayName {
70
- final dayIndex = (this .toInt () - 1 ) % 7 ; // Ensure value is within 0-6
71
- return [
72
- 'Monday' ,
73
- 'Tuesday' ,
74
- 'Wednesday' ,
75
- 'Thursday' ,
76
- 'Friday' ,
77
- 'Saturday' ,
78
- 'Sunday'
79
- ][dayIndex];
105
+ final dayIndex = (this .toInt ()) % 7 ; // Ensure value is within 0-6
106
+ return fullWeekdays[dayIndex]! ;
80
107
}
81
108
82
109
/// Gets the short day name (e.g., "Mon") corresponding to this number (1-7).
@@ -214,7 +241,7 @@ extension DHUNullableDateExtensions on DateTime? {
214
241
return false ;
215
242
}
216
243
217
- return passedDays == 1 ;
244
+ return passedDays == - 1 ;
218
245
}
219
246
220
247
bool get isPresent => isNotNull && this ! .isAfter (DateTime .now ());
@@ -248,19 +275,42 @@ extension DHUNullableDateExtensions on DateTime? {
248
275
isNull ? null : this ! .difference (DateTime .now ());
249
276
250
277
/// Returns the number of days remaining until this DateTime.
251
- int ? get remainingDays => isNull ? null : this ! .daysDifferenceTo () ;
278
+ int ? get remainingDays => isNull ? null : this ! .remainingDays ;
252
279
253
- int ? get passedDays => isNull ? null : DateTime . now (). daysDifferenceTo ( this ) ;
280
+ int ? get passedDays => isNull ? null : this ! .passedDays ;
254
281
}
255
282
256
283
extension DHUDateExtensions on DateTime {
257
284
/// Converts this DateTime to local time.
258
285
DateTime get local => toLocal ();
259
286
287
+ // TODO(ME): Rename this to httpDateFormat.
260
288
/// Format a date to "DAY, DD MON YYYY hh:mm:ss GMT" according to
261
289
/// [RFC-1123] (https://tools.ietf.org/html/rfc1123 "RFC-1123"),
262
290
/// e.g. `Thu, 1 Jan 1970 00:00:00 GMT` .
263
- String get httpFormat => HttpDate .format (this );
291
+ String get httpFormat {
292
+ final weekday = smallWeekdays[this .weekday];
293
+ final month = smallMonthsNames[this .month];
294
+ final d = toUtc ();
295
+ final sb = StringBuffer ()
296
+ ..write (weekday)
297
+ ..write (', ' )
298
+ ..write (d.day <= 9 ? '0' : '' )
299
+ ..write (d.day)
300
+ ..write (' ' )
301
+ ..write (month)
302
+ ..write (' ' )
303
+ ..write (d.year)
304
+ ..write (d.hour <= 9 ? ' 0' : ' ' )
305
+ ..write (d.hour)
306
+ ..write (d.minute <= 9 ? ':0' : ':' )
307
+ ..write (d.minute)
308
+ ..write (d.second <= 9 ? ':0' : ':' )
309
+ ..write (d.second)
310
+ ..write (' GMT' );
311
+
312
+ return sb.toString ();
313
+ }
264
314
265
315
/// Converts this DateTime to UTC and returns an ISO 8601 string.
266
316
String get toUtcIso => toUtc ().toIso;
@@ -300,14 +350,22 @@ extension DHUDateExtensions on DateTime {
300
350
/// Returns the duration that has passed since this DateTime.
301
351
Duration get passedDuration => DateTime .now ().difference (this );
302
352
303
- /// Returns the number of days that have passed since this DateTime.
304
- int get passedDays => DateTime .now ().daysDifferenceTo (this );
353
+ int get passedDays {
354
+ final today = DateTime .now ();
355
+ // If the date is after today, return 0 as no days have passed yet
356
+ // Otherwise, return the positive difference
357
+ return isAfter (today) ? 0 : today.daysDifferenceTo (this );
358
+ }
305
359
306
360
/// Returns the duration remaining until this DateTime.
307
361
Duration get remainingDuration => difference (DateTime .now ());
308
362
309
363
/// Returns the number of days remaining until this DateTime.
310
- int get remainingDays => daysDifferenceTo ();
364
+ int get remainingDays {
365
+ final today = DateTime .now ();
366
+ // If the date is before today, return a negative difference
367
+ return isBefore (today) ? - daysDifferenceTo (today) : daysDifferenceTo (today);
368
+ }
311
369
312
370
/// Checks if this DateTime is in the same year as [other] .
313
371
bool isAtSameYearAs (DateTime other) => year == other.year;
@@ -389,12 +447,12 @@ extension DHUDateExtensions on DateTime {
389
447
/// [startOfWeek] is an optional parameter specifying the weekday that is considered
390
448
/// the start of the week (1 for Monday, 7 for Sunday, etc.). Defaults to Monday.
391
449
DateTime firstDayOfWeek ({int startOfWeek = DateTime .monday}) {
392
- // Normalize the startOfWeek value to be within the range of 1-7
450
+ // Normalize the startOfWeek value to be within the range of 1-7
393
451
final normalizedStartOfWeek =
394
452
((startOfWeek - 1 ) % DateTime .daysPerWeek) + 1 ;
395
453
396
- // Calculate the difference between the current weekday and normalizedStartOfWeek
397
- // and adjust it to be positive and within the range of 0-6
454
+ // Calculate the difference between the current weekday and normalizedStartOfWeek
455
+ // and adjust it to be positive and within the range of 0-6
398
456
final daysToSubtract =
399
457
(weekday - normalizedStartOfWeek + DateTime .daysPerWeek) %
400
458
DateTime .daysPerWeek;
@@ -413,7 +471,7 @@ extension DHUDateExtensions on DateTime {
413
471
(DateTime .daysPerWeek - weekday + normalizedStartOfWeek - 1 ) %
414
472
DateTime .daysPerWeek;
415
473
416
- // Convert to UTC and then back to the original timezone to ensure correct midnight
474
+ // Convert to UTC and then back to the original timezone to ensure correct midnight
417
475
final utcLastDayOfWeek = toUtc ().add (Duration (days: daysToAdd));
418
476
return utcLastDayOfWeek.toLocal ();
419
477
}
@@ -459,7 +517,7 @@ extension DHUDateExtensions on DateTime {
459
517
final newYear = year + years;
460
518
final newMonth = month;
461
519
var newDay = day;
462
- // Adjust the day if it exceeds the number of days in the new month
520
+ // Adjust the day if it exceeds the number of days in the new month
463
521
while (newDay > DateTime (newYear, newMonth + 1 , 0 ).day) {
464
522
newDay-- ;
465
523
}
@@ -472,7 +530,7 @@ extension DHUDateExtensions on DateTime {
472
530
final newYear = year + (totalMonths ~ / 12 );
473
531
final newMonth = totalMonths % 12 == 0 ? 12 : totalMonths % 12 ;
474
532
var newDay = day;
475
- // Adjust the day if it exceeds the number of days in the new month
533
+ // Adjust the day if it exceeds the number of days in the new month
476
534
while (newDay > DateTime (newYear, newMonth + 1 , 0 ).day) {
477
535
newDay-- ;
478
536
}
@@ -519,7 +577,7 @@ extension DHUDateExtensions on DateTime {
519
577
520
578
if (thisNoonUtc.difference (otherNoonUtc).inDays.abs () >= 7 ) return false ;
521
579
522
- // Find the start of the week (Monday) for both dates
580
+ // Find the start of the week (Monday) for both dates
523
581
final startOfWeekThis =
524
582
thisNoonUtc.subtract (Duration (days: thisNoonUtc.weekday - 1 ));
525
583
final startOfWeekOther =
@@ -534,8 +592,13 @@ extension DHUDateExtensions on DateTime {
534
592
int daysDifferenceTo ([DateTime ? other]) {
535
593
final comparisonDate = other ?? DateTime .now ();
536
594
return DateTime (year, month, day)
537
- .difference (DateTime (
538
- comparisonDate.year, comparisonDate.month, comparisonDate.day))
595
+ .difference (
596
+ DateTime (
597
+ comparisonDate.year,
598
+ comparisonDate.month,
599
+ comparisonDate.day,
600
+ ),
601
+ )
539
602
.inDays
540
603
.abs (); // Ensure positive result
541
604
}
@@ -551,7 +614,7 @@ extension DHUDateExtensions on DateTime {
551
614
yield current;
552
615
current = current.add (const Duration (days: 1 ));
553
616
554
- // Adjust for potential time zone changes during iteration
617
+ // Adjust for potential time zone changes during iteration
555
618
final offsetDifference = current.timeZoneOffset - currentOffset;
556
619
if (offsetDifference.inSeconds != 0 ) {
557
620
currentOffset = current.timeZoneOffset; // Update offset
@@ -563,10 +626,10 @@ extension DHUDateExtensions on DateTime {
563
626
}
564
627
565
628
abstract class DatesHelper {
566
- // Whether or not two times are on the same hour.
629
+ // Whether or not two times are on the same hour.
567
630
static bool isSameHour (DateTime a, DateTime b) => a.isSameHourAs (b);
568
631
569
- // Whether or not two times are on the same day.
632
+ // Whether or not two times are on the same day.
570
633
static bool isSameDay (DateTime a, DateTime b) => a.isSameDayAs (b);
571
634
572
635
static bool isSameWeek (DateTime a, DateTime b) => a.isSameWeekAs (b);
0 commit comments