-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtodo.go
149 lines (107 loc) · 2.73 KB
/
todo.go
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
package main
import (
"fmt"
"os"
"strconv"
"time"
"github.com/aquasecurity/table"
)
type todo struct {
Title string
Completed bool
CreatedAt time.Time
CompletedAt *time.Time
Deadline *time.Time
}
type Todos []todo
func (todos *Todos) add(title string, deadline_optional ...time.Time) {
var deadline *time.Time
if len(deadline_optional) > 0 {
local_time_deadline := ParseLocalTime(deadline_optional[0])
deadline = &local_time_deadline
}
todo := todo{
Title: title,
Completed: false,
CreatedAt: time.Now().In(time.Now().Location()),
CompletedAt: nil,
Deadline: deadline,
}
*todos = append(*todos, todo)
}
func (todos *Todos) validateIndex(index int) error{
if index < 0 || index >= len(*todos){
return fmt.Errorf("index out of range")
}
return nil
}
func (todos *Todos) delete(index int) error{
if err := todos.validateIndex(index); err != nil {
return err
}
*todos = append((*todos)[:index], (*todos)[index+1:]...)
return nil
}
func (todos *Todos) toggle(index int) error{
if err:= todos.validateIndex(index); err != nil{
return err
}
isCompleted := (*todos)[index].Completed
if !isCompleted {
now := time.Now()
(*todos)[index].CompletedAt = &now
}
(*todos)[index].Completed = !isCompleted
return nil
}
func (todos *Todos) edit(index int, title string) error{
if err:= todos.validateIndex(index); err != nil{
return err
}
(*todos)[index].Title = title
return nil
}
func (todos *Todos) print(){
table := table.New(os.Stdout)
table.SetHeaders("#", "Title", "Completed", "Created At", "Deadline","Completed At","Reaction")
table.SetRowLines(false)
for index, todo := range *todos{
completed := "❌"
completedAt := ""
reaction := "👎"
deadline := ""
if todo.Completed{
completed = "✅"
reaction = "😊👍"
if todo.CompletedAt != nil{
completedAt = todo.CompletedAt.Format("2006-01-02 15:04:05")
if todo.Deadline != nil && todo.CompletedAt.Before(*todo.Deadline) {
reaction = "😊👍🎉🎊"
}
}
}
if todo.Deadline != nil{
deadline = todo.Deadline.Format("2006-01-02 15:04")
}
table.AddRow(strconv.Itoa(index), todo.Title, completed, todo.CreatedAt.Format("2006-01-02 15:04:05"), deadline, completedAt, reaction)
}
table.Render()
}
func (todos *Todos) refresh(to_delete string) {
var result Todos
for _, todo := range *todos {
if to_delete == "completed" {
if !todo.Completed {
result = append(result, todo)
}
} else if to_delete == "pending" {
if todo.Completed {
result = append(result, todo)
}
} else {
// Clear all elements
result = result[:0]
}
}
*todos = result
}