mirror of
https://github.com/daylinmorgan/hwylterm.git
synced 2024-12-21 18:50:44 -06:00
Compare commits
2 commits
ef573dc0f8
...
3cf572ea4a
Author | SHA1 | Date | |
---|---|---|---|
3cf572ea4a | |||
186dab6d84 |
3 changed files with 41 additions and 33 deletions
|
@ -516,6 +516,11 @@ func pasrseCliAlias(cfg: var CliCfg, node: NimNode) =
|
|||
|
||||
func propagate(c: var CliCfg) =
|
||||
for child in c.subcommands.mitems:
|
||||
# push the preSub to the lowest subcommand
|
||||
if child.subcommands.len != 0 and child.preSub == nil:
|
||||
child.preSub = c.preSub
|
||||
child.postSub = c.postSub
|
||||
else:
|
||||
child.pre = c.preSub
|
||||
child.post = c.postSub
|
||||
child.inheritFrom(c)
|
||||
|
|
|
@ -5,47 +5,50 @@ type
|
|||
Spinny = ref object
|
||||
t: Thread[Spinny]
|
||||
lock: Lock
|
||||
text: string
|
||||
text: BbString
|
||||
running: bool
|
||||
frames: seq[string]
|
||||
frame: string
|
||||
bbFrames: seq[BbString]
|
||||
frame: BbString
|
||||
interval: int
|
||||
customSymbol: bool
|
||||
style: string
|
||||
file: File
|
||||
|
||||
EventKind = enum
|
||||
Stop
|
||||
SymbolChange
|
||||
TextChange
|
||||
|
||||
SpinnyEvent = object
|
||||
kind: EventKind
|
||||
payload: string
|
||||
payload: BbString
|
||||
|
||||
var spinnyChannel: Channel[SpinnyEvent]
|
||||
|
||||
proc newSpinny*(text: string, s: Spinner): Spinny =
|
||||
proc newSpinny*(text: string | Bbstring, s: Spinner): Spinny =
|
||||
let style = "bold blue"
|
||||
Spinny(
|
||||
text: text,
|
||||
text: bb(text),
|
||||
running: true,
|
||||
frames: mapIt(s.frames, $bb(bbEscape(it), style)),
|
||||
frames: s.frames,
|
||||
bbFrames: mapIt(s.frames, bb(bbEscape(it), style)),
|
||||
customSymbol: false,
|
||||
interval: s.interval,
|
||||
style: "bold blue",
|
||||
file: stderr,
|
||||
)
|
||||
|
||||
proc newSpinny*(text: string, spinType: SpinnerKind): Spinny =
|
||||
proc newSpinny*(text: string | Bbstring, spinType: SpinnerKind): Spinny =
|
||||
newSpinny(text, Spinners[spinType])
|
||||
|
||||
proc setSymbolColor*(spinny: Spinny, style: string) =
|
||||
spinny.frames = mapIt(spinny.frames, $bb(it, style))
|
||||
spinny.bbFrames = mapIt(spinny.frames, bb(bbEscape(it), style))
|
||||
|
||||
proc setSymbol*(spinny: Spinny, symbol: string) =
|
||||
spinnyChannel.send(SpinnyEvent(kind: SymbolChange, payload: symbol))
|
||||
spinnyChannel.send(SpinnyEvent(kind: SymbolChange, payload: bb(symbol)))
|
||||
|
||||
proc setText*(spinny: Spinny, text: string) =
|
||||
spinnyChannel.send(SpinnyEvent(kind: TextChange, payload: text))
|
||||
proc setText*(spinny: Spinny, text: string | BbString) =
|
||||
spinnyChannel.send(SpinnyEvent(kind: TextChange, payload: bb(text)))
|
||||
|
||||
proc handleEvent(spinny: Spinny, eventData: SpinnyEvent): bool =
|
||||
result = true
|
||||
|
@ -74,14 +77,15 @@ proc spinnyLoop(spinny: Spinny) {.thread.} =
|
|||
spinny.running = false
|
||||
break
|
||||
|
||||
stdout.flushFile()
|
||||
flushFile spinny.file
|
||||
if not spinny.customSymbol:
|
||||
spinny.frame = spinny.frames[frameCounter]
|
||||
spinny.frame = spinny.bbFrames[frameCounter]
|
||||
|
||||
# TODO: instead of truncating support multiline text, need custom wrapping and cleanup then
|
||||
withLock spinny.lock:
|
||||
eraseLine()
|
||||
stdout.write(spinny.frame & " " & spinny.text)
|
||||
stdout.flushFile()
|
||||
eraseLine spinny.file
|
||||
spinny.file.write $((spinny.frame & " " & spinny.text).truncate(terminalWidth())) # needs to be truncated
|
||||
flushFile spinny.file
|
||||
|
||||
sleep spinny.interval
|
||||
|
||||
|
@ -96,37 +100,35 @@ proc start*(spinny: Spinny) =
|
|||
createThread(spinny.t, spinnyLoop, spinny)
|
||||
|
||||
proc stop(spinny: Spinny, kind: EventKind, payload = "") =
|
||||
spinnyChannel.send(SpinnyEvent(kind: kind, payload: payload))
|
||||
spinnyChannel.send(SpinnyEvent(kind: kind, payload: bb(payload)))
|
||||
spinnyChannel.send(SpinnyEvent(kind: Stop))
|
||||
joinThread spinny.t
|
||||
eraseLine stdout
|
||||
flushFile stdout
|
||||
eraseLine spinny.file
|
||||
flushFile spinny.file
|
||||
|
||||
proc stop*(spinny: Spinny) =
|
||||
spinny.stop(Stop)
|
||||
|
||||
template withSpinner*(msg: string = "", body: untyped): untyped =
|
||||
var spinner {.inject.} = newSpinny(msg, Dots)
|
||||
if isatty(stdout): # don't spin if it's not a tty
|
||||
if isatty(spinner.file): # don't spin if it's not a tty
|
||||
start spinner
|
||||
|
||||
body
|
||||
|
||||
if isatty(stdout):
|
||||
stop spinner
|
||||
else:
|
||||
body
|
||||
|
||||
template withSpinner*(body: untyped): untyped =
|
||||
withSpinner("", body)
|
||||
|
||||
template with*(kind: SpinnerKind, msg: string, body: untyped): untyped =
|
||||
var spinner {.inject.} = newSpinny(msg, kind)
|
||||
if isatty(stdout): # don't spin if it's not a tty
|
||||
if isatty(spinner.file): # don't spin if it's not a tty
|
||||
start spinner
|
||||
|
||||
body
|
||||
|
||||
if isatty(stdout):
|
||||
stop spinner
|
||||
else:
|
||||
body
|
||||
|
||||
when isMainModule:
|
||||
for kind, _ in Spinners:
|
||||
|
|
|
@ -25,7 +25,7 @@ hwylCli:
|
|||
? "path to config file"
|
||||
* @["config.yml"]
|
||||
preSub:
|
||||
echo "this is run after subcommand parsing but before its run block"
|
||||
echo "this is run after subcommand parsing but before final run block"
|
||||
echo fmt"{yes=}, {color=}"
|
||||
run:
|
||||
echo "this is always run prior to subcommand parsing"
|
||||
|
@ -53,6 +53,7 @@ hwylCli:
|
|||
flags:
|
||||
^config
|
||||
run:
|
||||
echo "hello from `example one subsub` command"
|
||||
echo fmt"{color=}"
|
||||
|
||||
run:
|
||||
|
|
Loading…
Reference in a new issue