Add isExpired and isThisMonth to frequency

This commit is contained in:
William Brawner 2022-09-10 13:38:54 -06:00
parent 58eb9699a4
commit 8e4f9a10ab

View file

@ -47,6 +47,19 @@ public struct RecurringTransaction: Identifiable, Hashable, Codable {
}
}
extension Date {
var startOfMonth: Date {
get {
return Calendar.current.date(from: Calendar.current.dateComponents([.year, .month], from: Calendar.current.startOfDay(for: self)))!
}
}
var endOfMonth: Date {
get {
return Calendar.current.date(byAdding: DateComponents(month: 1, day: -1), to: self.startOfMonth)!
}
}
}
extension RecurringTransaction {
public var type: TransactionType {
if (self.expense) {
@ -59,6 +72,29 @@ extension RecurringTransaction {
public var amountString: String {
return self.amount > 0 ? String(format: "%.02f", Double(self.amount) / 100.0) : ""
}
public var isThisMonth: Bool {
switch self.frequency.unit {
case .daily:
return true // TODO: this isn't quite accurate, there are edge cases to account for
case .weekly(_):
return true // TODO: also not quite accurate. e.g. a transaction that occurs every 6 weeks may or may not be this month
case .monthly(_):
// TODO: the backend needs to expose the last run time in order to be able to check this
return self.frequency.count == 1
case .yearly(let dayOfYear):
// TODO: the backend needs to expose the last run time in order to be able to check this
let currentMonth = Calendar.current.dateComponents([.month], from: Date()).month!
return dayOfYear.month == currentMonth
}
}
public var isExpired: Bool {
guard let finish = self.finish else {
return false
}
return finish < Date().startOfMonth
}
}
public struct Frequency: Hashable, Codable, CustomStringConvertible {