all repos — todo.txt-go @ d2776d9f3d23c457849d7688fd176c112b18ddc0

feat: :sparkles: Archive tasks to done.txt
Tim Izzo tim@octree.ch
Mon, 24 Mar 2025 21:28:59 +0100
commit

d2776d9f3d23c457849d7688fd176c112b18ddc0

parent

d9af79b6e98422049364f78888c7d9269e3c660d

3 files changed, 15 insertions(+), 2 deletions(-)

jump to
M README.mdREADME.md

@@ -2,8 +2,8 @@ # TODO.txt in Go

## TODO -- [ ] Use *todo.txt* file targeted by todo-txt.sh config -- [ ] Implement archive mecanism +- [x] Use *todo.txt* file targeted by todo-txt.sh config +- [x] Implement archive mecanism ## Ressources
M config.goconfig.go

@@ -9,6 +9,7 @@

type config struct { todoDir string taskFilePath string + doneFilePath string } func NewConfig() config {

@@ -22,6 +23,7 @@

_ = os.MkdirAll(todoDir, os.ModePerm) taskFilePath := filepath.Join(todoDir, "todo.txt") + doneFilePath := filepath.Join(todoDir, "done.txt") if _, err := os.Stat(taskFilePath); os.IsNotExist(err) { _, e := os.Create(taskFilePath)

@@ -34,5 +36,6 @@

return config{ todoDir: todoDir, taskFilePath: taskFilePath, + doneFilePath: doneFilePath, } }
M main.gomain.go

@@ -134,6 +134,16 @@ }

} case key.Matches(msg, m.keys.Clean): + m.selected = make(map[int]struct{}) + doneTasks := m.tasks.Filter(todo.FilterCompleted) + doneFile, err := os.OpenFile(m.config.doneFilePath, os.O_APPEND|os.O_CREATE|os.O_WRONLY, 0644) + if err != nil { + log.Fatal("Can't write done tasks to " + m.config.doneFilePath) + } + defer doneFile.Close() + if writeErr := doneTasks.WriteToFile(doneFile); writeErr != nil { + log.Fatal(writeErr) + } m.tasks = m.tasks.Filter(todo.FilterNotCompleted) m.selected = make(map[int]struct{}) for i, t := range m.tasks {