1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
|
package todolist
import (
"fmt"
"regexp"
"strconv"
"time"
)
type App struct {
TodoStore *FileStore
TodoList *TodoList
}
func NewApp() *App {
app := &App{TodoList: &TodoList{}, TodoStore: NewFileStore()}
return app
}
func (a *App) InitializeRepo() {
a.TodoStore.Initialize()
}
func (a *App) AddTodo(input string) {
a.Load()
parser := &Parser{}
todo := parser.ParseNewTodo(input)
if todo == nil {
fmt.Println("What to do?")
return
}
a.TodoList.Add(todo)
a.Save()
fmt.Println("Todo added.")
}
func (a *App) DeleteTodo(input string) {
a.Load()
id, _ := a.getId(input)
if id != -1 {
a.TodoList.Delete(id)
a.Save()
fmt.Println("Todo deleted.")
}
}
func (a *App) CompleteTodo(input string) {
a.Load()
id, _ := a.getId(input)
if id != -1 {
a.TodoList.Complete(id)
a.Save()
fmt.Println("Todo completed.")
}
}
func (a *App) UncompleteTodo(input string) {
a.Load()
id, _ := a.getId(input)
if id != -1 {
a.TodoList.Uncomplete(id)
a.Save()
fmt.Println("Todo uncompleted.")
}
}
func (a *App) ArchiveTodo(input string) {
a.Load()
id, _ := a.getId(input)
if id != -1 {
a.TodoList.Archive(id)
a.Save()
fmt.Println("Todo archived.")
}
}
func (a *App) UnarchiveTodo(input string) {
a.Load()
id, _ := a.getId(input)
if id != -1 {
a.TodoList.Unarchive(id)
a.Save()
fmt.Println("Todo unarchived.")
}
}
func (a *App) EditTodoDue(input string) {
a.Load()
id, todo := a.getId(input)
if id != -1 {
parser := &Parser{}
todo.Due = parser.Due(input, time.Now())
a.Save()
fmt.Println("Todo due date updated.")
}
}
func (a *App) ArchiveCompleted() {
a.Load()
for _, todo := range a.TodoList.Todos() {
if todo.Completed {
todo.Archived = true
}
}
a.Save()
fmt.Println("All archived todos completed.")
}
func (a *App) ListTodos(input string) {
a.Load()
filtered := NewFilter(a.TodoList.Todos()).Filter(input)
grouped := a.getGroups(input, filtered)
formatter := NewFormatter(grouped)
formatter.Print()
}
func (a *App) getId(input string) (int, *Todo) {
re, _ := regexp.Compile("\\d+")
if re.MatchString(input) {
id, _ := strconv.Atoi(re.FindString(input))
todo := a.TodoList.FindById(id)
if todo == nil {
fmt.Println("No such id.")
return -1, nil
}
return id, todo
} else {
fmt.Println("Invalid id.")
return -1, nil
}
}
func (a *App) getGroups(input string, todos []*Todo) *GroupedTodos {
grouper := &Grouper{}
contextRegex, _ := regexp.Compile(`by c.*$`)
projectRegex, _ := regexp.Compile(`by p.*$`)
var grouped *GroupedTodos
if contextRegex.MatchString(input) {
grouped = grouper.GroupByContext(todos)
} else if projectRegex.MatchString(input) {
grouped = grouper.GroupByProject(todos)
} else {
grouped = grouper.GroupByNothing(todos)
}
return grouped
}
func (a *App) Load() error {
todos, err := a.TodoStore.Load()
if err != nil {
return err
}
a.TodoList.Load(todos)
return nil
}
func (a *App) Save() {
a.TodoStore.Save(a.TodoList.Data)
}
|