added notes feature
This commit is contained in:
parent
cb180c4095
commit
912d413748
1 changed files with 16 additions and 3 deletions
19
notes.nim
19
notes.nim
|
@ -20,6 +20,7 @@ proc read_notes(): seq[string] =
|
||||||
proc write_notes(notes: seq[string]) =
|
proc write_notes(notes: seq[string]) =
|
||||||
try:
|
try:
|
||||||
let f = open(note_file, fmWrite)
|
let f = open(note_file, fmWrite)
|
||||||
|
defer: f.close()
|
||||||
for note in notes:
|
for note in notes:
|
||||||
f.writeLine(note)
|
f.writeLine(note)
|
||||||
except:
|
except:
|
||||||
|
@ -43,6 +44,16 @@ proc write_note(note: string) =
|
||||||
except:
|
except:
|
||||||
echo "write_note, Unable to write note :", getCurrentExceptionMsg()
|
echo "write_note, Unable to write note :", getCurrentExceptionMsg()
|
||||||
|
|
||||||
|
proc replace_note(new_note: string, old_note: string) =
|
||||||
|
let notes = read_notes()
|
||||||
|
var new_notes: seq[string] = @[]
|
||||||
|
for a_note in notes:
|
||||||
|
if old_note == a_note:
|
||||||
|
new_notes.add(new_note)
|
||||||
|
else:
|
||||||
|
new_notes.add(a_note)
|
||||||
|
write_notes(new_notes)
|
||||||
|
|
||||||
proc get_notes(): (Info, seq[string]) =
|
proc get_notes(): (Info, seq[string]) =
|
||||||
var info = newInfo()
|
var info = newInfo()
|
||||||
info.title = "Notes :"
|
info.title = "Notes :"
|
||||||
|
@ -52,7 +63,7 @@ proc get_notes(): (Info, seq[string]) =
|
||||||
proc display_option_menu(option: string) =
|
proc display_option_menu(option: string) =
|
||||||
var select = newInfo()
|
var select = newInfo()
|
||||||
select.title = "Note :"
|
select.title = "Note :"
|
||||||
let args = concat(@["option"],note_choices)
|
let args = concat(@[option],note_choices)
|
||||||
let chosen = outputJSON(select,args)
|
let chosen = outputJSON(select,args)
|
||||||
if chosen in note_choices:
|
if chosen in note_choices:
|
||||||
case chosen:
|
case chosen:
|
||||||
|
@ -61,9 +72,11 @@ proc display_option_menu(option: string) =
|
||||||
start_notes()
|
start_notes()
|
||||||
of "back":
|
of "back":
|
||||||
start_notes()
|
start_notes()
|
||||||
|
elif chosen != "" and chosen != option:
|
||||||
|
replace_note(chosen, option)
|
||||||
|
display_option_menu(chosen)
|
||||||
else:
|
else:
|
||||||
write_note(option)
|
display_option_menu(option)
|
||||||
display_option_menu(chosen)
|
|
||||||
|
|
||||||
proc start_notes() =
|
proc start_notes() =
|
||||||
let (info,notes) = get_notes()
|
let (info,notes) = get_notes()
|
||||||
|
|
Loading…
Reference in a new issue