time: relative update (#14240)

master
David 'Epper' Marshall 2022-05-01 03:47:05 -04:00 committed by GitHub
parent ec92d467d1
commit 91c1157810
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 155 additions and 54 deletions

View File

@ -87,48 +87,53 @@ const tokens_4 = ['MMMM', 'DDDD', 'DDDo', 'dddd', 'YYYY']
// custom_format returns a date with custom format // custom_format returns a date with custom format
// //
// | | Token | Output | // | | Token | Output |
// | :----------- | -------: | :--------- | // | ----------: | :------ | :--------- |
// | Month | M | 1 2 ... 11 12 | // | **Month** | M | 1 2 ... 11 12 |
// | | Mo | 1st 2nd ... 11th 12th | // | | Mo | 1st 2nd ... 11th 12th |
// | | MM | 01 02 ... 11 12 | // | | MM | 01 02 ... 11 12 |
// | | MMM | Jan Feb ... Nov Dec | // | | MMM | Jan Feb ... Nov Dec |
// | | MMMM | January February ... November December | // | | MMMM | January February ... November December |
// | Quarter | Q | 1 2 3 4 | // | **Quarter** | Q | 1 2 3 4 |
// | | QQ | 01 02 03 04 | // | | QQ | 01 02 03 04 |
// | | Qo | 1st 2nd 3rd 4th | // | | Qo | 1st 2nd 3rd 4th |
// | Day of Month | D | 1 2 ... 30 31 | // | **Day of Month** | D | 1 2 ... 30 31 |
// | | Do | 1st 2nd ... 30th 31st | // | | Do | 1st 2nd ... 30th 31st |
// | | DD | 01 02 ... 30 31 | // | | DD | 01 02 ... 30 31 |
// | Day of Year | DDD | 1 2 ... 364 365 | // | **Day of Year** | DDD | 1 2 ... 364 365 |
// | | DDDo | 1st 2nd ... 364th 365th | // | | DDDo | 1st 2nd ... 364th 365th |
// | | DDDD | 001 002 ... 364 365 | // | | DDDD | 001 002 ... 364 365 |
// | Day of Week | d | 0 1 ... 5 6 (Sun-Sat) | // | **Day of Week** | d | 0 1 ... 5 6 (Sun-Sat) |
// | | c | 1 2 ... 6 7 (Mon-Sun) | // | | c | 1 2 ... 6 7 (Mon-Sun) |
// | | dd | Su Mo ... Fr Sa | // | | dd | Su Mo ... Fr Sa |
// | | ddd | Sun Mon ... Fri Sat | // | | ddd | Sun Mon ... Fri Sat |
// | | dddd | Sunday Monday ... Friday Saturday | // | | dddd | Sunday Monday ... Friday Saturday |
// | Week of Year | w | 1 2 ... 52 53 | // | **Week of Year** | w | 1 2 ... 52 53 |
// | | wo | 1st 2nd ... 52nd 53rd | // | | wo | 1st 2nd ... 52nd 53rd |
// | | ww | 01 02 ... 52 53 | // | | ww | 01 02 ... 52 53 |
// | Year | YY | 70 71 ... 29 30 | // | **Year** | YY | 70 71 ... 29 30 |
// | | YYYY | 1970 1971 ... 2029 2030 | // | | YYYY | 1970 1971 ... 2029 2030 |
// | Era | N | BC AD | // | **Era** | N | BC AD |
// | | NN | Before Christ, Anno Domini | // | | NN | Before Christ, Anno Domini |
// | AM/PM | A | AM PM | // | **AM/PM** | A | AM PM |
// | | a | am pm | // | | a | am pm |
// | Hour | H | 0 1 ... 22 23 | // | **Hour** | H | 0 1 ... 22 23 |
// | | HH | 00 01 ... 22 23 | // | | HH | 00 01 ... 22 23 |
// | | h | 1 2 ... 11 12 | // | | h | 1 2 ... 11 12 |
// | | hh | 01 02 ... 11 12 | // | | hh | 01 02 ... 11 12 |
// | | k | 1 2 ... 23 24 | // | | k | 1 2 ... 23 24 |
// | | kk | 01 02 ... 23 24 | // | | kk | 01 02 ... 23 24 |
// | Minute | m | 0 1 ... 58 59 | // | **Minute** | m | 0 1 ... 58 59 |
// | | mm | 00 01 ... 58 59 | // | | mm | 00 01 ... 58 59 |
// | Second | s | 0 1 ... 58 59 | // | **Second** | s | 0 1 ... 58 59 |
// | | ss | 00 01 ... 58 59 | // | | ss | 00 01 ... 58 59 |
// | Offset | Z | -7 -6 ... +5 +6 | // | **Offset** | Z | -7 -6 ... +5 +6 |
// | | ZZ | -0700 -0600 ... +0500 +0600 | // | | ZZ | -0700 -0600 ... +0500 +0600 |
// | | ZZZ | -07:00 -06:00 ... +05:00 +06:00 | // | | ZZZ | -07:00 -06:00 ... +05:00 +06:00 |
//
// Usage:
// ```v
// println(time.now().custom_format('MMMM Mo YY N kk:mm:ss A')) // output like: January 1st 22 AD 13:45:33 PM
// ```
pub fn (t Time) custom_format(s string) string { pub fn (t Time) custom_format(s string) string {
mut tokens := []string{} mut tokens := []string{}
for i := 0; i < s.len; { for i := 0; i < s.len; {

View File

@ -0,0 +1,58 @@
import time
fn test_relative() {
// past
mut date := time.now()
assert date.relative() == 'now'
date = date.add_seconds(-61)
assert date.relative() == '1 minute ago'
assert date.relative_short() == '1m ago'
date = date.add_seconds(-120)
assert date.relative() == '3 minutes ago'
assert date.relative_short() == '3m ago'
date = date.add_seconds(-1 * time.seconds_per_hour)
assert date.relative() == '1 hour ago'
assert date.relative_short() == '1h ago'
date = date.add_seconds(-5 * time.seconds_per_hour)
assert date.relative() == '6 hours ago'
assert date.relative_short() == '6h ago'
date = date.add_seconds(-1 * time.seconds_per_day)
assert date.relative() == '1 day ago'
assert date.relative_short() == '1d ago'
date = date.add_seconds(-4 * time.seconds_per_day)
assert date.relative() == '5 days ago'
assert date.relative_short() == '5d ago'
date = time.now().add_seconds(-75 * time.seconds_per_day)
assert date.relative() == 'last ${date.custom_format('MMM')} ${date.custom_format('D')}'
assert date.relative_short() == '75d ago'
date = time.now().add_seconds(-400 * time.seconds_per_day)
assert date.relative() == '1 year ago'
assert date.relative_short() == '1y ago'
// future
date = time.now()
date = date.add_seconds(61)
assert date.relative() == 'in 1 minute'
assert date.relative_short() == 'in 1m'
date = date.add_seconds(120)
assert date.relative() == 'in 3 minutes'
assert date.relative_short() == 'in 3m'
date = date.add_seconds(1 * time.seconds_per_hour)
assert date.relative() == 'in 1 hour'
assert date.relative_short() == 'in 1h'
date = date.add_seconds(5 * time.seconds_per_hour)
assert date.relative() == 'in 6 hours'
assert date.relative_short() == 'in 6h'
date = date.add_seconds(time.seconds_per_day)
assert date.relative() == 'in 1 day'
assert date.relative_short() == 'in 1d'
date = date.add_seconds(4 * time.seconds_per_day)
assert date.relative() == 'in 5 days'
assert date.relative_short() == 'in 5d'
date = time.now().add_seconds(75 * time.seconds_per_day)
assert date.relative() == 'on ${date.custom_format('MMM')} ${date.custom_format('D')}'
assert date.relative_short() == 'in 75d'
date = time.now().add_seconds(400 * time.seconds_per_day)
assert date.relative() == 'in 1 year'
assert date.relative_short() == 'in 1y'
}

View File

@ -131,48 +131,70 @@ pub fn since(t Time) Duration {
// relative returns a string representation of the difference between t // relative returns a string representation of the difference between t
// and the current time. // and the current time.
//
// Sample outputs:
// ```
// // future
// now
// in 5 minutes
// in 1 day
// on Feb 17
// // past
// 2 hours ago
// last Jan 15
// 5 years ago
// ```
pub fn (t Time) relative() string { pub fn (t Time) relative() string {
znow := now() znow := now()
secs := znow.unix - t.unix mut secs := znow.unix - t.unix
if secs <= 30 { mut prefix := ''
// right now or in the future mut suffix := ''
// TODO handle time in the future if secs < 0 {
secs *= -1
prefix = 'in '
} else {
suffix = ' ago'
}
if secs < time.seconds_per_minute / 2 {
return 'now' return 'now'
} }
if secs < 60 { if secs < time.seconds_per_hour {
return '1m' m := secs / time.seconds_per_minute
}
if secs < 3600 {
m := secs / 60
if m == 1 { if m == 1 {
return '1 minute ago' return '${prefix}1 minute$suffix'
} }
return '$m minutes ago' return '$prefix$m minutes$suffix'
} }
if secs < 3600 * 24 { if secs < time.seconds_per_hour * 24 {
h := secs / 3600 h := secs / time.seconds_per_hour
if h == 1 { if h == 1 {
return '1 hour ago' return '${prefix}1 hour$suffix'
} }
return '$h hours ago' return '$prefix$h hours$suffix'
} }
if secs < 3600 * 24 * 5 { if secs < time.seconds_per_hour * 24 * 7 {
d := secs / 3600 / 24 d := secs / time.seconds_per_hour / 24
if d == 1 { if d == 1 {
return '1 day ago' return '${prefix}1 day$suffix'
} }
return '$d days ago' return '$prefix$d days$suffix'
} }
if secs > 3600 * 24 * 10000 { if secs < time.seconds_per_hour * 24 * 365 {
return '' if prefix == 'in ' {
return 'on $t.md()'
}
return 'last $t.md()'
} }
return t.md() y := secs / time.seconds_per_hour / 24 / 365
if y == 1 {
return '${prefix}1 year$suffix'
}
return '$prefix$y years$suffix'
} }
// relative_short returns a string saying how long ago a time occured as follows: // relative_short returns a string saying how long ago a time occured as follows:
// 0-30 seconds: `"now"`; 30-60 seconds: `"1m"`; anything else is rounded to the // 0-30 seconds: `"now"`; 30-60 seconds: `"1m"`; anything else is rounded to the
// nearest minute, hour or day; anything higher than 10000 days (about 27 years) // nearest minute, hour, day, or year
// years returns an empty string.
// Some Examples: // Some Examples:
// `0s -> 'now'`; // `0s -> 'now'`;
// `20s -> 'now'`; // `20s -> 'now'`;
@ -184,28 +206,44 @@ pub fn (t Time) relative() string {
// `15842354871s -> ''` // `15842354871s -> ''`
pub fn (t Time) relative_short() string { pub fn (t Time) relative_short() string {
znow := now() znow := now()
secs := znow.unix - t.unix mut secs := znow.unix - t.unix
if secs <= 30 { mut prefix := ''
// right now or in the future mut suffix := ''
// TODO handle time in the future if secs < 0 {
secs *= -1
prefix = 'in '
} else {
suffix = ' ago'
}
if secs < time.seconds_per_minute / 2 {
return 'now' return 'now'
} }
if secs < 60 { if secs < time.seconds_per_hour {
return '1m' m := secs / time.seconds_per_minute
if m == 1 {
return '${prefix}1m$suffix'
}
return '$prefix${m}m$suffix'
} }
if secs < 3600 { if secs < time.seconds_per_hour * 24 {
return '${secs / 60}m' h := secs / time.seconds_per_hour
if h == 1 {
return '${prefix}1h$suffix'
}
return '$prefix${h}h$suffix'
} }
if secs < 3600 * 24 { if secs < time.seconds_per_hour * 24 * 365 {
return '${secs / 3600}h' d := secs / time.seconds_per_hour / 24
if d == 1 {
return '${prefix}1d$suffix'
}
return '$prefix${d}d$suffix'
} }
if secs < 3600 * 24 * 5 { y := secs / time.seconds_per_hour / 24 / 365
return '${secs / 3600 / 24}d' if y == 1 {
return '${prefix}1y$suffix'
} }
if secs > 3600 * 24 * 10000 { return '$prefix${y}y$suffix'
return ''
}
return t.md()
} }
// day_of_week returns the current day of a given year, month, and day, // day_of_week returns the current day of a given year, month, and day,