Add --this-week, --last-week options
This commit is contained in:
parent
e0618f6520
commit
3cf76ef382
24
ptk.nim
24
ptk.nim
@ -40,12 +40,6 @@ proc parseTime(timeStr: string): TimeInfo =
|
|||||||
|
|
||||||
raise newException(Exception, "unable to interpret as a date: " & timeStr)
|
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 =
|
template `%`(mark: Mark): JsonNode =
|
||||||
%* {
|
%* {
|
||||||
"id": $(mark.id),
|
"id": $(mark.id),
|
||||||
@ -268,6 +262,18 @@ proc filterMarkIndices(timeline: Timeline, args: Table[string, Value]): seq[int]
|
|||||||
let e = b + 1.days
|
let e = b + 1.days
|
||||||
result = result.filterIt(marks[it].time >= b and marks[it].time < e)
|
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"]:
|
if args["--tags"]:
|
||||||
let tags = (args["--tags"] ?: "").split({',', ';'})
|
let tags = (args["--tags"] ?: "").split({',', ';'})
|
||||||
result = result.filter(proc (i: int): bool =
|
result = result.filter(proc (i: int): bool =
|
||||||
@ -314,7 +320,9 @@ Options:
|
|||||||
-m --matching <pattern> Restric the selection to marks matching <pattern>.
|
-m --matching <pattern> Restric the selection to marks matching <pattern>.
|
||||||
-n --notes <notes> For add and amend, set the notes for a time mark.
|
-n --notes <notes> For add and amend, set the notes for a time mark.
|
||||||
-t --time <time> For add and amend, use this time instead of the current time.
|
-t --time <time> For add and amend, use this time instead of the current time.
|
||||||
-T --today Restrict the seelction to marks during today.
|
-T --today Restrict the selection to marks during today.
|
||||||
|
-w --this-week Restrict the selection to marks during this week.
|
||||||
|
-W --last-week Restrict the selection to marks during the last week.
|
||||||
-v --verbose Include notes in timeline entry output.
|
-v --verbose Include notes in timeline entry output.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
@ -324,7 +332,7 @@ Options:
|
|||||||
let now = getLocalTime(getTime())
|
let now = getLocalTime(getTime())
|
||||||
|
|
||||||
# Parse arguments
|
# Parse arguments
|
||||||
let args = docopt(doc, version = "ptk 0.4.1")
|
let args = docopt(doc, version = "ptk 0.5.0")
|
||||||
|
|
||||||
if args["--echo-args"]: echo $args
|
if args["--echo-args"]: echo $args
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
# Package
|
# Package
|
||||||
|
|
||||||
version = "0.4.1"
|
version = "0.5.0"
|
||||||
author = "Jonathan Bernard"
|
author = "Jonathan Bernard"
|
||||||
description = "Personal Time Keeper"
|
description = "Personal Time Keeper"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
@ -8,5 +8,5 @@ bin = @["ptk"]
|
|||||||
|
|
||||||
# Dependencies
|
# Dependencies
|
||||||
|
|
||||||
requires @["nim >= 0.15.0", "docopt >= 0.6.4", "uuids", "langutils", "tempfile", "timeutils"]
|
requires @["nim >= 0.15.0", "docopt >= 0.6.4", "uuids", "langutils", "tempfile", "timeutils >= 0.2.0"]
|
||||||
|
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
template first*(s: seq): auto = s[0]
|
template first*(a: openarray): auto = a[0]
|
||||||
|
|
||||||
template last*(s: seq): auto = s[len(s)-1]
|
template last*(a: openarray): auto = a[len(a)-1]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user