diff --git a/ptk.nim b/ptk.nim index 253945b..a9cf4f4 100644 --- a/ptk.nim +++ b/ptk.nim @@ -40,12 +40,6 @@ proc parseTime(timeStr: string): TimeInfo = raise newException(Exception, "unable to interpret as a date: " & timeStr) -proc startOfDay(ti: TimeInfo): TimeInfo = - result = ti - result.hour = 0 - result.minute = 0 - result.second = 0 - template `%`(mark: Mark): JsonNode = %* { "id": $(mark.id), @@ -268,6 +262,18 @@ proc filterMarkIndices(timeline: Timeline, args: Table[string, Value]): seq[int] let e = b + 1.days result = result.filterIt(marks[it].time >= b and marks[it].time < e) + if args["--this-week"]: + let now = getLocalTime(getTime()) + let b = now.startOfWeek(dSun) + let e = b + 7.days + result = result.filterIt(marks[it].time >= b and marks[it].time < e) + + if args["--last-week"]: + let now = getLocalTime(getTime()) + let e = now.startOfWeek(dSun) + let b = e - 7.days + result = result.filterIt(marks[it].time >= b and marks[it].time < e) + if args["--tags"]: let tags = (args["--tags"] ?: "").split({',', ';'}) result = result.filter(proc (i: int): bool = @@ -314,7 +320,9 @@ Options: -m --matching Restric the selection to marks matching . -n --notes For add and amend, set the notes for a time mark. -t --time