-
Notifications
You must be signed in to change notification settings - Fork 965
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support for humanizing DateTimeOffset #399
Changes from all commits
647e382
2c09e49
eb78493
134d1cd
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -263,22 +263,25 @@ By default both methods throw a `NoMatchFoundException` when they cannot match t | |
In the non-generic method you can also ask the method to return null by setting the second optional parameter to `NoMatch.ReturnsNull`. | ||
|
||
###<a id="humanize-datetime">Humanize DateTime</a> | ||
You can `Humanize` an instance of `DateTime` and get back a string telling how far back or forward in time that is: | ||
You can `Humanize` an instance of `DateTime` or `DateTimeOffset` and get back a string telling how far back or forward in time that is: | ||
|
||
```C# | ||
DateTime.UtcNow.AddHours(-30).Humanize() => "yesterday" | ||
DateTime.UtcNow.AddHours(-2).Humanize() => "2 hours ago" | ||
|
||
DateTime.UtcNow.AddHours(30).Humanize() => "tomorrow" | ||
DateTime.UtcNow.AddHours(2).Humanize() => "2 hours from now" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please add an example for |
||
|
||
DateTimeOffset.AddHours(1).Humanize() => "an hour from now" | ||
``` | ||
|
||
Humanizer supports local as well as UTC dates. You could also provide the date you want the input date to be compared against. If null, it will use the current date as comparison base. | ||
Humanizer supports both local and UTC dates as well as dates with offset (`DateTimeOffset`). You could also provide the date you want the input date to be compared against. If null, it will use the current date as comparison base. | ||
Also, culture to use can be specified explicitly. If it is not, current thread's current UI culture is used. | ||
Here is the API signature: | ||
|
||
```C# | ||
public static string Humanize(this DateTime input, bool utcDate = true, DateTime? dateToCompareAgainst = null, CultureInfo culture = null) | ||
public static string Humanize(this DateTimeOffset input, DateTimeOffset? dateToCompareAgainst = null, CultureInfo culture = null) | ||
``` | ||
|
||
Many localizations are available for this method. Here is a few examples: | ||
|
@@ -302,7 +305,10 @@ DateTime.UtcNow.AddMinutes(-40).Humanize() => "40 минут назад" | |
There are two strategies for `DateTime.Humanize`: the default one as seen above and a precision based one. | ||
To use the precision based strategy you need to configure it: | ||
|
||
`Configurator.DateTimeHumanizeStrategy = new PrecisionDateTimeHumanizeStrategy(precision = .75)`. | ||
```C# | ||
Configurator.DateTimeHumanizeStrategy = new PrecisionDateTimeHumanizeStrategy(precision = .75); | ||
Configurator.DateTimeOffsetHumanizeStrategy = new PrecisionDateTimeOffsetHumanizeStrategy(precision = .75); // configure when humanizing DateTimeOffset | ||
``` | ||
|
||
The default precision is set to .75 but you can pass your desired precision too. With precision set to 0.75: | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -125,6 +125,7 @@ public class Configurator | |
{ | ||
public Humanizer.Configuration.LocaliserRegistry<Humanizer.Localisation.CollectionFormatters.ICollectionFormatter> CollectionFormatters { get; } | ||
public Humanizer.DateTimeHumanizeStrategy.IDateTimeHumanizeStrategy DateTimeHumanizeStrategy { get; set; } | ||
public Humanizer.DateTimeHumanizeStrategy.IDateTimeOffsetHumanizeStrategy DateTimeOffsetHumanizeStrategy { get; set; } | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. FYI the Approver text is a very clean approach to make sure we're not introducing breaking changes. That's all. Thanks for updating it. |
||
public System.Func<System.Reflection.PropertyInfo, bool> EnumDescriptionPropertyLocator { get; set; } | ||
public Humanizer.Configuration.LocaliserRegistry<Humanizer.Localisation.Formatters.IFormatter> Formatters { get; } | ||
public Humanizer.Configuration.LocaliserRegistry<Humanizer.Localisation.NumberToWords.INumberToWordsConverter> NumberToWordsConverters { get; } | ||
|
@@ -144,6 +145,7 @@ public class LocaliserRegistry`1 | |
public class DateHumanizeExtensions | ||
{ | ||
public string Humanize(System.DateTime input, bool utcDate, System.Nullable<System.DateTime> dateToCompareAgainst, System.Globalization.CultureInfo culture) { } | ||
public string Humanize(System.DateTimeOffset input, System.Nullable<System.DateTimeOffset> dateToCompareAgainst, System.Globalization.CultureInfo culture) { } | ||
} | ||
|
||
public class DefaultDateTimeHumanizeStrategy | ||
|
@@ -152,17 +154,34 @@ public class DefaultDateTimeHumanizeStrategy | |
public string Humanize(System.DateTime input, System.DateTime comparisonBase, System.Globalization.CultureInfo culture) { } | ||
} | ||
|
||
public class DefaultDateTimeOffsetHumanizeStrategy | ||
{ | ||
public DefaultDateTimeOffsetHumanizeStrategy() { } | ||
public string Humanize(System.DateTimeOffset input, System.DateTimeOffset comparisonBase, System.Globalization.CultureInfo culture) { } | ||
} | ||
|
||
public interface IDateTimeHumanizeStrategy | ||
{ | ||
string Humanize(System.DateTime input, System.DateTime comparisonBase, System.Globalization.CultureInfo culture); | ||
} | ||
|
||
public interface IDateTimeOffsetHumanizeStrategy | ||
{ | ||
string Humanize(System.DateTimeOffset input, System.DateTimeOffset comparisonBase, System.Globalization.CultureInfo culture); | ||
} | ||
|
||
public class PrecisionDateTimeHumanizeStrategy | ||
{ | ||
public PrecisionDateTimeHumanizeStrategy(double precision) { } | ||
public string Humanize(System.DateTime input, System.DateTime comparisonBase, System.Globalization.CultureInfo culture) { } | ||
} | ||
|
||
public class PrecisionDateTimeOffsetHumanizeStrategy | ||
{ | ||
public PrecisionDateTimeOffsetHumanizeStrategy(double precision) { } | ||
public string Humanize(System.DateTimeOffset input, System.DateTimeOffset comparisonBase, System.Globalization.CultureInfo culture) { } | ||
} | ||
|
||
public class EnumDehumanizeExtensions | ||
{ | ||
public TTargetEnum DehumanizeTo(string input) { } | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using Humanizer.Configuration; | ||
using Humanizer.DateTimeHumanizeStrategy; | ||
using Xunit; | ||
|
||
namespace Humanizer.Tests | ||
{ | ||
public class DateTimeOffsetHumanizeTests : AmbientCulture | ||
{ | ||
public DateTimeOffsetHumanizeTests() : base("en-US") | ||
{ | ||
} | ||
|
||
[Fact] | ||
public void DefaultStrategy_SameOffset() | ||
{ | ||
Configurator.DateTimeOffsetHumanizeStrategy = new DefaultDateTimeOffsetHumanizeStrategy(); | ||
|
||
var inputTime = new DateTimeOffset(2015, 07, 05, 04, 0, 0, TimeSpan.Zero); | ||
var baseTime = new DateTimeOffset(2015, 07, 05, 03, 0, 0, TimeSpan.Zero); | ||
|
||
const string expectedResult = "an hour from now"; | ||
var actualResult = inputTime.Humanize(baseTime); | ||
|
||
Assert.Equal(expectedResult, actualResult); | ||
} | ||
|
||
[Fact] | ||
public void DefaultStrategy_DifferentOffsets() | ||
{ | ||
Configurator.DateTimeOffsetHumanizeStrategy = new DefaultDateTimeOffsetHumanizeStrategy(); | ||
|
||
var inputTime = new DateTimeOffset(2015, 07, 05, 03, 0, 0, new TimeSpan(2, 0, 0)); | ||
var baseTime = new DateTimeOffset(2015, 07, 05, 02, 30, 0, new TimeSpan(1, 0, 0)); | ||
|
||
const string expectedResult = "30 minutes ago"; | ||
var actualResult = inputTime.Humanize(baseTime); | ||
|
||
Assert.Equal(expectedResult, actualResult); | ||
} | ||
|
||
[Fact] | ||
public void PrecisionStrategy_SameOffset() | ||
{ | ||
Configurator.DateTimeOffsetHumanizeStrategy = new PrecisionDateTimeOffsetHumanizeStrategy(0.75); | ||
|
||
var inputTime = new DateTimeOffset(2015, 07, 05, 04, 0, 0, TimeSpan.Zero); | ||
var baseTime = new DateTimeOffset(2015, 07, 04, 05, 0, 0, TimeSpan.Zero); | ||
|
||
const string expectedResult = "tomorrow"; | ||
var actualResult = inputTime.Humanize(baseTime); | ||
|
||
Assert.Equal(expectedResult, actualResult); | ||
} | ||
|
||
[Fact] | ||
public void PrecisionStrategy_DifferentOffsets() | ||
{ | ||
Configurator.DateTimeOffsetHumanizeStrategy = new PrecisionDateTimeOffsetHumanizeStrategy(0.75); | ||
|
||
var inputTime = new DateTimeOffset(2015, 07, 05, 03, 45, 0, new TimeSpan(2, 0, 0)); | ||
var baseTime = new DateTimeOffset(2015, 07, 05, 02, 30, 0, new TimeSpan(-5, 0, 0)); | ||
|
||
const string expectedResult = "6 hours ago"; | ||
var actualResult = inputTime.Humanize(baseTime); | ||
|
||
Assert.Equal(expectedResult, actualResult); | ||
} | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,116 @@ | ||
using System; | ||
using System.Globalization; | ||
using Humanizer.Configuration; | ||
using Humanizer.Localisation; | ||
|
||
namespace Humanizer.DateTimeHumanizeStrategy | ||
{ | ||
/// <summary> | ||
/// Algorithms used to convert distance between two dates into words. | ||
/// </summary> | ||
internal static class DateTimeHumanizeAlgorithms | ||
{ | ||
/// <summary> | ||
/// Returns localized & humanized distance of time between two dates; given a specific precision. | ||
/// </summary> | ||
public static string PrecisionHumanize(DateTime input, DateTime comparisonBase, double precision, CultureInfo culture) | ||
{ | ||
var ts = new TimeSpan(Math.Abs(comparisonBase.Ticks - input.Ticks)); | ||
var tense = input > comparisonBase ? Tense.Future : Tense.Past; | ||
|
||
int seconds = ts.Seconds, minutes = ts.Minutes, hours = ts.Hours, days = ts.Days; | ||
int years = 0, months = 0; | ||
|
||
// start approximate from smaller units towards bigger ones | ||
if (ts.Milliseconds >= 999 * precision) seconds += 1; | ||
if (seconds >= 59 * precision) minutes += 1; | ||
if (minutes >= 59 * precision) hours += 1; | ||
if (hours >= 23 * precision) days += 1; | ||
|
||
// month calculation | ||
if (days >= 30 * precision & days <= 31) months = 1; | ||
if (days > 31 && days < 365 * precision) | ||
{ | ||
int factor = Convert.ToInt32(Math.Floor((double)days / 30)); | ||
int maxMonths = Convert.ToInt32(Math.Ceiling((double)days / 30)); | ||
months = (days >= 30 * (factor + precision)) ? maxMonths : maxMonths - 1; | ||
} | ||
|
||
// year calculation | ||
if (days >= 365 * precision && days <= 366) years = 1; | ||
if (days > 365) | ||
{ | ||
int factor = Convert.ToInt32(Math.Floor((double)days / 365)); | ||
int maxMonths = Convert.ToInt32(Math.Ceiling((double)days / 365)); | ||
years = (days >= 365 * (factor + precision)) ? maxMonths : maxMonths - 1; | ||
} | ||
|
||
// start computing result from larger units to smaller ones | ||
var formatter = Configurator.GetFormatter(culture); | ||
if (years > 0) return formatter.DateHumanize(TimeUnit.Year, tense, years); | ||
if (months > 0) return formatter.DateHumanize(TimeUnit.Month, tense, months); | ||
if (days > 0) return formatter.DateHumanize(TimeUnit.Day, tense, days); | ||
if (hours > 0) return formatter.DateHumanize(TimeUnit.Hour, tense, hours); | ||
if (minutes > 0) return formatter.DateHumanize(TimeUnit.Minute, tense, minutes); | ||
if (seconds > 0) return formatter.DateHumanize(TimeUnit.Second, tense, seconds); | ||
return formatter.DateHumanize(TimeUnit.Millisecond, tense, 0); | ||
} | ||
|
||
// http://stackoverflow.com/questions/11/how-do-i-calculate-relative-time | ||
/// <summary> | ||
/// Calculates the distance of time in words between two provided dates | ||
/// </summary> | ||
public static string DefaultHumanize(DateTime input, DateTime comparisonBase, CultureInfo culture) | ||
{ | ||
var tense = input > comparisonBase ? Tense.Future : Tense.Past; | ||
var ts = new TimeSpan(Math.Abs(comparisonBase.Ticks - input.Ticks)); | ||
|
||
var formatter = Configurator.GetFormatter(culture); | ||
|
||
if (ts.TotalMilliseconds < 500) | ||
return formatter.DateHumanize(TimeUnit.Millisecond, tense, 0); | ||
|
||
if (ts.TotalSeconds < 60) | ||
return formatter.DateHumanize(TimeUnit.Second, tense, ts.Seconds); | ||
|
||
if (ts.TotalSeconds < 120) | ||
return formatter.DateHumanize(TimeUnit.Minute, tense, 1); | ||
|
||
if (ts.TotalMinutes < 60) | ||
return formatter.DateHumanize(TimeUnit.Minute, tense, ts.Minutes); | ||
|
||
if (ts.TotalMinutes < 90) | ||
return formatter.DateHumanize(TimeUnit.Hour, tense, 1); | ||
|
||
if (ts.TotalHours < 24) | ||
return formatter.DateHumanize(TimeUnit.Hour, tense, ts.Hours); | ||
|
||
if (ts.TotalHours < 48) | ||
{ | ||
var days = Math.Abs((input.Date - comparisonBase.Date).Days); | ||
return formatter.DateHumanize(TimeUnit.Day, tense, days); | ||
} | ||
|
||
if (ts.TotalDays < 28) | ||
return formatter.DateHumanize(TimeUnit.Day, tense, ts.Days); | ||
|
||
if (ts.TotalDays >= 28 && ts.TotalDays < 30) | ||
{ | ||
if (comparisonBase.Date.AddMonths(tense == Tense.Future ? 1 : -1) == input.Date) | ||
return formatter.DateHumanize(TimeUnit.Month, tense, 1); | ||
return formatter.DateHumanize(TimeUnit.Day, tense, ts.Days); | ||
} | ||
|
||
if (ts.TotalDays < 345) | ||
{ | ||
int months = Convert.ToInt32(Math.Floor(ts.TotalDays / 29.5)); | ||
return formatter.DateHumanize(TimeUnit.Month, tense, months); | ||
} | ||
|
||
int years = Convert.ToInt32(Math.Floor(ts.TotalDays / 365)); | ||
if (years == 0) years = 1; | ||
|
||
return formatter.DateHumanize(TimeUnit.Year, tense, years); | ||
} | ||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks a lot for adding to the readme.