- cross-posted to:
- javascript@lemmy.ml
- cross-posted to:
- javascript@lemmy.ml
In Lemmy, we’ve removed the TopSixHours
/ TopXTime
in favor of a more fine grained time_range_seconds
field. You can see it in action in this PR
The problem is, we need a good UI picker for a time interval: IE things like 5 seconds
, 4 days
, 7 months
, etc.
I’ve found a million libraries for specific date and time pickers, but not a single one for time intervals.
Does anyone know of any?
Thanks in advance.
You must log in or register to comment.
Probably due to it being a rare use-case. Sounds like you need durations, which are usually expressed as the timeframe between two dates. Perhaps the
intervalToDuration
function of the date-fns lib could help with this though. There’s alsoformatDuration
which may be helpful.I ended up figuring it out by using this simple pseudocode.