-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwrapper.gno
484 lines (411 loc) · 11.3 KB
/
wrapper.gno
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
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
package zentasktic_project
import (
"strconv"
"gno.land/p/demo/zentasktic"
)
// this is a convenience wrapper on top of the functions declared in the zentasktic package
// to maintain consistency
// zentasktic managers
var ztm *zentasktic.ZTaskManager
var zpm *zentasktic.ZProjectManager
var zrm *zentasktic.ZRealmManager
var zcm *zentasktic.ZContextManager
var zcl *zentasktic.ZCollectionManager
var zom *zentasktic.ZObjectPathManager
var currentTaskID int
var currentProjectTaskID int
var currentProjectID int
var currentContextID int
var currentCollectionID int
var currentPathID int
func init() {
ztm = zentasktic.NewZTaskManager()
zpm = zentasktic.NewZProjectManager()
zrm = zentasktic.NewZRealmManager()
zcm = zentasktic.NewZContextManager()
zcl = zentasktic.NewZCollectionManager()
zom = zentasktic.NewZObjectPathManager()
currentTaskID = 0
currentProjectTaskID = 0
currentProjectID = 0
currentContextID = 0
currentCollectionID = 0
currentPathID = 0
}
// tasks
func AddTask(taskBody string) error {
taskID := incrementTaskID()
wt := &WorkableTask{
Task: zentasktic.Task{
Id: strconv.Itoa(taskID),
Body: taskBody,
RealmId: "1",
},
}
return ztm.AddTask(wt.Task)
}
func EditTask(taskId string, taskBody string) error {
taskToEdit, err := GetTaskById(taskId)
if err != nil {
return err
}
taskToEdit.Body = taskBody;
return ztm.EditTask(taskToEdit.Task)
}
func RemoveTask(taskId string) error {
taskToRemove, err := GetTaskById(taskId)
if err != nil {
return err
}
return ztm.RemoveTask(taskToRemove.Task)
}
func MoveTaskToRealm(taskId string, realmId string) error {
return ztm.MoveTaskToRealm(taskId, realmId)
}
func SetTaskDueDate(taskId string, dueDate string) error {
return ztm.SetTaskDueDate(taskId, dueDate)
}
func SetTaskAlert(taskId string, alert string) error {
return ztm.SetTaskAlert(taskId, alert)
}
func AttachTaskToProject(taskBody string, projectId string) error {
projectTaskID := incrementProjectTaskID()
wt := &WorkableTask{
Task: zentasktic.Task{
Id: strconv.Itoa(projectTaskID),
Body: taskBody,
RealmId: "1",
},
}
//ztm.AddTask(wt.Task)
projectToAdd, err := GetProjectById(projectId)
if err != nil {
return err
}
return zpm.AttachTaskToProject(ztm, wt.Task, projectToAdd.Project)
}
func EditProjectTask(projectTaskId string, projectTaskBody string, projectId string) error {
return zpm.EditProjectTask(projectTaskId, projectTaskBody, projectId)
}
func DetachTaskFromProject(projectTaskId string, projectId string) error {
projectToDetachFrom, err := GetProjectById(projectId)
if err != nil {
return err
}
detachedTaskId := strconv.Itoa(incrementTaskID())
return zpm.DetachTaskFromProject(ztm, projectTaskId, detachedTaskId, projectToDetachFrom.Project)
}
func RemoveTaskFromProject(projectTaskId string, projectId string) error {
return zpm.RemoveTaskFromProject(projectTaskId, projectId)
}
func GetTaskById(taskId string) (WorkableTask, error) {
task, err := ztm.GetTaskById(taskId)
if err != nil {
return WorkableTask{}, err
}
return WorkableTask{Task: task}, nil
}
func GetAllTasks() (string){
return ztm.GetAllTasks()
}
func GetTasksByRealm(realmId string) (string){
return ztm.GetTasksByRealm(realmId)
}
func GetTasksByContextAndRealm(contextId string, realmId string) (string){
return ztm.GetTasksByContextAndRealm(contextId, realmId)
}
func GetTasksByDate(dueDate string, filterType string) (string){
return ztm.GetTasksByDate(dueDate, filterType)
}
func incrementTaskID() int {
currentTaskID++
return currentTaskID
}
func incrementProjectTaskID() int {
currentProjectTaskID++
return currentProjectTaskID
}
// projects
func AddProject(projectBody string) error {
projectID := incrementProjectID()
wp := &WorkableProject{
Project: zentasktic.Project{
Id: strconv.Itoa(projectID),
Body: projectBody,
RealmId: "1",
},
}
return zpm.AddProject(wp.Project)
}
func EditProject(projectId string, projectBody string) error {
projectToEdit, err := GetProjectById(projectId)
if err != nil {
return err
}
projectToEdit.Body = projectBody;
return zpm.EditProject(projectToEdit.Project)
}
func RemoveProject(projectId string) error {
projectToRemove, err := GetProjectById(projectId)
if err != nil {
return err
}
return zpm.RemoveProject(projectToRemove.Project)
}
func MoveProjectToRealm(projectId string, realmId string) error {
return zpm.MoveProjectToRealm(projectId, realmId)
}
func MarkProjectTaskAsDone(projectId string, projectTaskId string) error {
return zpm.MarkProjectTaskAsDone(projectId, projectTaskId)
}
func GetProjectTasks(wp WorkableProject) ([]WorkableTask, error){
tasks, err := zpm.GetProjectTasks(wp.Project)
if err != nil {
return nil, err
}
// Convert []zentasktic.Task to []WorkableTask
var workableTasks []WorkableTask
for _, task := range tasks {
workableTasks = append(workableTasks, WorkableTask{Task: task})
}
return workableTasks, nil
}
func SetProjectDueDate(projectId string, dueDate string) error {
return zpm.SetProjectDueDate(projectId, dueDate)
}
func GetProjectById(projectId string) (WorkableProject, error) {
project, err := zpm.GetProjectById(projectId)
if err != nil {
return WorkableProject{}, err
}
return WorkableProject{Project: project}, nil
}
func SetProjectTaskDueDate(projectId string, projectTaskId string, dueDate string) error {
return zpm.SetProjectTaskDueDate(projectId, projectTaskId, dueDate)
}
func GetAllProjects() (string){
return zpm.GetAllProjects()
}
func GetProjectsByRealm(realmId string) (string){
return zpm.GetProjectsByRealm(realmId)
}
func GetProjectsByContextAndRealm(contextId string, realmId string) (string){
return zpm.GetProjectsByContextAndRealm(contextId, realmId)
}
func GetProjectsByDate(dueDate string, filterType string) (string){
return zpm.GetProjectsByDate(dueDate, filterType)
}
func incrementProjectID() int {
currentProjectID++
return currentProjectID
}
// realms
func AddRealm(wr WorkableRealm) error {
r := zentasktic.Realm{
Id: wr.Id,
Name: wr.Name,
}
return zrm.AddRealm(r)
}
func RemoveRealm(wr WorkableRealm) error {
r := zentasktic.Realm{
Id: wr.Id,
Name: wr.Name,
}
return zrm.RemoveRealm(r)
}
func GetRealmById(realmId string) (WorkableRealm, error) {
r, err := zrm.GetRealmById(realmId)
if err != nil {
return WorkableRealm{}, err
}
return WorkableRealm{
Id: r.Id,
Name: r.Name,
}, nil
}
func GetAllRealms() (string, error) {
return zrm.GetRealms()
}
// contexts
func AddContext(contextName string) error {
contextID := incrementContextID()
wc := &WorkableContext{
Context: zentasktic.Context{
Id: strconv.Itoa(contextID),
Name: contextName,
},
}
return zcm.AddContext(wc.Context)
}
func EditContext(contextId string, newContext string) error {
contextToEdit, err := GetContextById(contextId)
if err != nil {
return err
}
contextToEdit.Name = newContext;
return zcm.EditContext(contextToEdit.Context)
}
func RemoveContext(contextId string) error {
contextToRemove, err := GetContextById(contextId)
if err != nil {
return err
}
return zcm.RemoveContext(contextToRemove.Context)
}
func AddContextToTask(contextId string, taskId string) error {
contextToAdd, err := GetContextById(contextId)
if err != nil {
return err
}
taskToAddContextTo, merr := GetTaskById(taskId)
if merr != nil {
return merr
}
return zcm.AddContextToTask(ztm, contextToAdd.Context, taskToAddContextTo.Task)
}
func AddContextToProject(contextId string, projectId string) error {
contextToAdd, err := GetContextById(contextId)
if err != nil {
return err
}
projectToAddContextTo, merr := GetProjectById(projectId)
if merr != nil {
return merr
}
return zcm.AddContextToProject(zpm, contextToAdd.Context, projectToAddContextTo.Project)
}
func AddContextToProjectTask(contextId string, projectId string, projectTaskId string) error {
contextToAdd, err := GetContextById(contextId)
if err != nil {
return err
}
projectToAddContextTo, merr := GetProjectById(projectId)
if merr != nil {
return merr
}
return zcm.AddContextToProjectTask(zpm, contextToAdd.Context, projectToAddContextTo.Project, projectTaskId)
}
func GetContextById(contextId string) (WorkableContext, error) {
context, err := zcm.GetContextById(contextId)
if err != nil {
return WorkableContext{}, err
}
return WorkableContext{Context: context}, nil
}
func GetAllContexts() (string) {
return zcm.GetAllContexts()
}
func incrementContextID() int {
currentContextID++
return currentContextID
}
// collections
/*
func AddCollection(wc WorkableCollection) error {
c := zentasktic.Collection{
Id: wc.Id,
RealmId: wc.RealmId,
Name: wc.Name,
Tasks: toZentaskticTasks(wc.Tasks),
Projects: toZentaskticProjects(wc.Projects),
}
return zcl.AddCollection(c)
}
func EditCollection(wc WorkableCollection) error {
c := zentasktic.Collection{
Id: wc.Id,
RealmId: wc.RealmId,
Name: wc.Name,
Tasks: toZentaskticTasks(wc.Tasks),
Projects: toZentaskticProjects(wc.Projects),
}
return zcl.EditCollection(c)
}
func RemoveCollection(wc WorkableCollection) error {
c := zentasktic.Collection{
Id: wc.Id,
RealmId: wc.RealmId,
Name: wc.Name,
Tasks: toZentaskticTasks(wc.Tasks),
Projects: toZentaskticProjects(wc.Projects),
}
return zcl.RemoveCollection(c)
}
func GetCollectionById(collectionId string) (WorkableCollection, error) {
c, err := zcl.GetCollectionById(collectionId)
if err != nil {
return WorkableCollection{}, err
}
return WorkableCollection{
Id: c.Id,
RealmId: c.RealmId,
Name: c.Name,
Tasks: toWorkableTasks(c.Tasks),
Projects: toWorkableProjects(c.Projects),
}, nil
}
func GetCollectionTasks(wc WorkableCollection) ([]WorkableTask, error) {
c := zentasktic.Collection{
Id: wc.Id,
}
tasks, err := zcl.GetCollectionTasks(c)
if err != nil {
return nil, err
}
return toWorkableTasks(tasks), nil
}
func GetCollectionProjects(wc WorkableCollection) ([]WorkableProject, error) {
c := zentasktic.Collection{
Id: wc.Id,
}
projects, err := zcl.GetCollectionProjects(c)
if err != nil {
return nil, err
}
return toWorkableProjects(projects), nil
}
func GetAllCollections() (string, error) {
return zcl.GetAllCollections()
}
// Helper functions to convert between Workable and zentasktic types
func toZentaskticTasks(tasks []WorkableTask) []zentasktic.Task {
ztasks := make([]zentasktic.Task, len(tasks))
for i, t := range tasks {
ztasks[i] = t.Task
}
return ztasks
}
func toWorkableTasks(tasks []zentasktic.Task) []WorkableTask {
wtasks := make([]WorkableTask, len(tasks))
for i, t := range tasks {
wtasks[i] = WorkableTask{Task: t}
}
return wtasks
}
func toZentaskticProjects(projects []WorkableProject) []zentasktic.Project {
zprojects := make([]zentasktic.Project, len(projects))
for i, p := range projects {
zprojects[i] = p.Project
}
return zprojects
}
func toWorkableProjects(projects []zentasktic.Project) []WorkableProject {
wprojects := make([]WorkableProject, len(projects))
for i, p := range projects {
wprojects[i] = WorkableProject{Project: p}
}
return wprojects
}*/
// object Paths
func AddPath(wop WorkableObjectPath) error {
o := zentasktic.ObjectPath{
ObjectType: wop.ObjectType,
Id: wop.Id,
RealmId: wop.RealmId,
}
return zom.AddPath(o)
}
func GetObjectJourney(objectType string, objectId string) (string, error) {
return zom.GetObjectJourney(objectType, objectId)
}