mirror of
https://github.com/oliverbooth/X10D
synced 2024-11-10 03:45:41 +00:00
🔥 Remove TimeSpan.Ago
Humanizer package fulfills this feature
This commit is contained in:
parent
a699446112
commit
9844bccd28
@ -24,4 +24,3 @@ Below is a list of the number of extension methods written for a given type. Ove
|
|||||||
| `IList<T>` | `X10D` | 2 |
|
| `IList<T>` | `X10D` | 2 |
|
||||||
| `Random` | `X10D` | 2 |
|
| `Random` | `X10D` | 2 |
|
||||||
| `string` / `SecureString` | `X10D` | 8 |
|
| `string` / `SecureString` | `X10D` | 8 |
|
||||||
| `TimeSpan` | `X10D` | 1 |
|
|
||||||
|
@ -1,55 +0,0 @@
|
|||||||
namespace X10D
|
|
||||||
{
|
|
||||||
#region Using Directives
|
|
||||||
|
|
||||||
using System;
|
|
||||||
|
|
||||||
#endregion
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Extension methods for <see cref="TimeSpan"/>.
|
|
||||||
/// </summary>
|
|
||||||
public static class TimeSpanExtensions
|
|
||||||
{
|
|
||||||
/// <summary>
|
|
||||||
/// Calculates how long ago a specified <see cref="TimeSpan"/> was.
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="span">The <see cref="TimeSpan"/>. Defaults to <see langword="false"/>.</param>
|
|
||||||
/// <returns>Returns a human-readable <see cref="String"/> describing how long ago <paramref name="span"/>
|
|
||||||
/// represents from now.</returns>
|
|
||||||
public static string Ago(this TimeSpan span)
|
|
||||||
{
|
|
||||||
if (span < TimeSpan.FromSeconds(60))
|
|
||||||
{
|
|
||||||
return $"{span.Seconds} seconds ago";
|
|
||||||
}
|
|
||||||
|
|
||||||
if (span < TimeSpan.FromMinutes(60))
|
|
||||||
{
|
|
||||||
return span.Minutes > 1 ? $"about {span.Minutes} minutes ago" : "about a minute ago";
|
|
||||||
}
|
|
||||||
|
|
||||||
if (span < TimeSpan.FromHours(24))
|
|
||||||
{
|
|
||||||
return span.Hours > 1 ? $"about {span.Hours} hours ago" : "about an hour ago";
|
|
||||||
}
|
|
||||||
|
|
||||||
if (span <= TimeSpan.FromDays(7))
|
|
||||||
{
|
|
||||||
return span.Days > 1 ? $"about {span.Days} days ago" : "yesterday";
|
|
||||||
}
|
|
||||||
|
|
||||||
if (span < TimeSpan.FromDays(30))
|
|
||||||
{
|
|
||||||
return $"about {span.Days} days ago";
|
|
||||||
}
|
|
||||||
|
|
||||||
if (span < TimeSpan.FromDays(365))
|
|
||||||
{
|
|
||||||
return span.Days > 30 ? $"about {span.Days} months ago" : "about a month ago";
|
|
||||||
}
|
|
||||||
|
|
||||||
return span.Days > 365 ? $"about {span.Days / 365} years ago" : "about a year ago";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
Reference in New Issue
Block a user