diff --git a/ptk.nim b/ptk.nim index 439ea66..9216d30 100644 --- a/ptk.nim +++ b/ptk.nim @@ -8,7 +8,7 @@ import algorithm, docopt, json, langutils, logging, os, sequtils, strutils, import ptkutil type - Mark* = tuple[id: UUID, time: TimeInfo, summary: string, notes: string] + Mark* = tuple[id: UUID, time: TimeInfo, summary: string, notes: string, tags: seq[string]] Timeline* = tuple[name: string, marks: seq[Mark]] const STOP_MSG = "STOP" @@ -16,12 +16,12 @@ const STOP_MSG = "STOP" let NO_MARK: Mark = ( id: parseUUID("00000000-0000-0000-0000-000000000000"), time: getLocalTime(getTime()), - summary: "", notes: "") + summary: "", notes: "", tags: @[]) const ISO_TIME_FORMAT = "yyyy:MM:dd'T'HH:mm:ss" const TIME_FORMATS = @[ - "HH:mm", "HH:mm:ss", "HH:mm:ss", + "H:mm", "HH:mm", "H:mm:ss", "HH:mm:ss", "yyyy:MM:dd'T'HH:mm:ss", "yyyy:MM:dd'T'HH:mm"] #proc `$`*(mark: Mark): string = @@ -43,7 +43,8 @@ template `%`(mark: Mark): JsonNode = "id": $(mark.id), "time": mark.time.format(ISO_TIME_FORMAT), "summary": mark.summary, - "notes": mark.notes + "notes": mark.notes, + "tags": mark.tags } template `%`(timeline: Timeline): JsonNode = @@ -63,7 +64,8 @@ proc loadTimeline(filename: string): Timeline = id: parseUUID(markJson["id"].getStr()), time: parse(markJson["time"].getStr(), ISO_TIME_FORMAT), summary: markJson["summary"].getStr(), - notes: markJson["notes"].getStr())) + notes: markJson["notes"].getStr(), + tags: markJson["tags"].getElems(@[]).map(proc (t: JsonNode): string = t.getStr()))) return timeline @@ -221,17 +223,19 @@ Usage: Options: - -f --file Use the given timeline file. - -c --config Use as configuration for the CLI. - -t --time