mirror of
https://github.com/yattee/yattee.git
synced 2024-11-09 15:58:20 +00:00
29 lines
895 B
Swift
29 lines
895 B
Swift
import Foundation
|
|
|
|
extension Double {
|
|
func formattedAsPlaybackTime(allowZero: Bool = false, forceHours: Bool = false) -> String? {
|
|
guard allowZero || !isZero, isFinite else {
|
|
return nil
|
|
}
|
|
|
|
let formatter = DateComponentsFormatter()
|
|
|
|
formatter.unitsStyle = .positional
|
|
formatter.allowedUnits = self >= (60 * 60) || forceHours ? [.hour, .minute, .second] : [.minute, .second]
|
|
formatter.zeroFormattingBehavior = [.pad]
|
|
|
|
return formatter.string(from: self)
|
|
}
|
|
|
|
func formattedAsRelativeTime() -> String? {
|
|
let date = Date(timeIntervalSince1970: self)
|
|
|
|
let formatter = RelativeDateTimeFormatter()
|
|
formatter.dateTimeStyle = .named
|
|
formatter.unitsStyle = .short
|
|
formatter.formattingContext = .standalone
|
|
|
|
return formatter.localizedString(for: date, relativeTo: Date())
|
|
}
|
|
}
|