Expose issue formating functionality.
This commit is contained in:
parent
fee4ba70a6
commit
b0e3f5a9d8
@ -1,6 +1,6 @@
|
|||||||
# Package
|
# Package
|
||||||
|
|
||||||
version = "4.23.1"
|
version = "4.23.2"
|
||||||
author = "Jonathan Bernard"
|
author = "Jonathan Bernard"
|
||||||
description = "Personal issue tracker."
|
description = "Personal issue tracker."
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
|
26
src/pit.nim
26
src/pit.nim
@ -51,7 +51,7 @@ proc getIssueContextDisplayName(ctx: CliContext, context: string): string =
|
|||||||
else: return context.capitalize()
|
else: return context.capitalize()
|
||||||
return ctx.contexts[context]
|
return ctx.contexts[context]
|
||||||
|
|
||||||
proc formatIssue(ctx: CliContext, issue: Issue): string =
|
proc formatIssue*(issue: Issue): string =
|
||||||
result = ($issue.id).withColor(fgBlack, true) & "\n"&
|
result = ($issue.id).withColor(fgBlack, true) & "\n"&
|
||||||
issue.summary.withColor(fgWhite) & "\n"
|
issue.summary.withColor(fgWhite) & "\n"
|
||||||
|
|
||||||
@ -70,10 +70,9 @@ proc formatIssue(ctx: CliContext, issue: Issue): string =
|
|||||||
|
|
||||||
result &= termReset
|
result &= termReset
|
||||||
|
|
||||||
proc formatSectionIssue(
|
proc formatSectionIssue*(
|
||||||
ctx: CliContext,
|
|
||||||
issue: Issue,
|
issue: Issue,
|
||||||
width: int,
|
width: int = 80,
|
||||||
indent = "",
|
indent = "",
|
||||||
verbose = false): string =
|
verbose = false): string =
|
||||||
|
|
||||||
@ -135,12 +134,15 @@ proc formatSectionIssue(
|
|||||||
|
|
||||||
result &= termReset
|
result &= termReset
|
||||||
|
|
||||||
proc formatSectionIssueList(ctx: CliContext, issues: seq[Issue], width: int,
|
proc formatSectionIssueList*(
|
||||||
indent: string, verbose: bool): string =
|
issues: seq[Issue],
|
||||||
|
width: int = 80,
|
||||||
|
indent: string = "",
|
||||||
|
verbose: bool = false): string =
|
||||||
|
|
||||||
result = ""
|
result = ""
|
||||||
for i in issues:
|
for i in issues:
|
||||||
var issueText = ctx.formatSectionIssue(i, width, indent, verbose)
|
var issueText = formatSectionIssue(i, width, indent, verbose)
|
||||||
result &= issueText & "\n"
|
result &= issueText & "\n"
|
||||||
|
|
||||||
proc formatSection(ctx: CliContext, issues: seq[Issue], state: IssueState,
|
proc formatSection(ctx: CliContext, issues: seq[Issue], state: IssueState,
|
||||||
@ -161,10 +163,10 @@ proc formatSection(ctx: CliContext, issues: seq[Issue], state: IssueState,
|
|||||||
indent & ctx.getIssueContextDisplayName(context) & ":" &
|
indent & ctx.getIssueContextDisplayName(context) & ":" &
|
||||||
termReset & "\n\n"
|
termReset & "\n\n"
|
||||||
|
|
||||||
result &= ctx.formatSectionIssueList(ctxIssues, innerWidth - 2, indent & " ", verbose)
|
result &= formatSectionIssueList(ctxIssues, innerWidth - 2, indent & " ", verbose)
|
||||||
result &= "\n"
|
result &= "\n"
|
||||||
|
|
||||||
else: result &= ctx.formatSectionIssueList(issues, innerWidth, indent, verbose)
|
else: result &= formatSectionIssueList(issues, innerWidth, indent, verbose)
|
||||||
|
|
||||||
proc loadIssues(ctx: CliContext, state: IssueState) =
|
proc loadIssues(ctx: CliContext, state: IssueState) =
|
||||||
ctx.issues[state] = loadIssues(ctx.cfg.tasksDir, state)
|
ctx.issues[state] = loadIssues(ctx.cfg.tasksDir, state)
|
||||||
@ -379,7 +381,7 @@ when isMainModule:
|
|||||||
|
|
||||||
ctx.cfg.tasksDir.store(issue, state)
|
ctx.cfg.tasksDir.store(issue, state)
|
||||||
|
|
||||||
stdout.writeLine ctx.formatIssue(issue)
|
stdout.writeLine formatIssue(issue)
|
||||||
|
|
||||||
elif args["reorder"]:
|
elif args["reorder"]:
|
||||||
ctx.reorder(parseEnum[IssueState]($args["<state>"]))
|
ctx.reorder(parseEnum[IssueState]($args["<state>"]))
|
||||||
@ -444,7 +446,7 @@ when isMainModule:
|
|||||||
let nextIssue = ctx.cfg.tasksDir.nextRecurrence(issue.getRecurrence.get, issue)
|
let nextIssue = ctx.cfg.tasksDir.nextRecurrence(issue.getRecurrence.get, issue)
|
||||||
ctx.cfg.tasksDir.store(nextIssue, Todo)
|
ctx.cfg.tasksDir.store(nextIssue, Todo)
|
||||||
info "created the next recurrence:"
|
info "created the next recurrence:"
|
||||||
stdout.writeLine ctx.formatIssue(nextIssue)
|
stdout.writeLine formatIssue(nextIssue)
|
||||||
|
|
||||||
|
|
||||||
issue.changeState(ctx.cfg.tasksDir, targetState)
|
issue.changeState(ctx.cfg.tasksDir, targetState)
|
||||||
@ -567,7 +569,7 @@ when isMainModule:
|
|||||||
elif issueIdsOption.isSome:
|
elif issueIdsOption.isSome:
|
||||||
for issueId in issueIdsOption.get:
|
for issueId in issueIdsOption.get:
|
||||||
let issue = ctx.cfg.tasksDir.loadIssueById(issueId)
|
let issue = ctx.cfg.tasksDir.loadIssueById(issueId)
|
||||||
stdout.writeLine ctx.formatIssue(issue)
|
stdout.writeLine formatIssue(issue)
|
||||||
|
|
||||||
# List all issues
|
# List all issues
|
||||||
else:
|
else:
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
const PIT_VERSION* = "4.23.1"
|
const PIT_VERSION* = "4.23.2"
|
||||||
|
|
||||||
const USAGE* = """Usage:
|
const USAGE* = """Usage:
|
||||||
pit ( new | add) <summary> [<state>] [options]
|
pit ( new | add) <summary> [<state>] [options]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user