@@ -19,25 +19,19 @@ func CmdPRs(_ *cobra.Command, _ []string) error {
19
19
p := gh .NewProject (f .ProjectOwner , f .ProjectNumber , f .Token )
20
20
21
21
c .Printf ("Looking up project details for <green>%s</>/<lightGreen>%d</>...\n " , f .ProjectOwner , f .ProjectNumber )
22
- project , err := p .GetProjectDetailsOld ()
22
+ err := p .LoadDetails ()
23
23
if err != nil {
24
24
c .Printf ("\n \n <red>ERROR!!</> %s" , err )
25
25
return nil
26
26
}
27
- pid := project .Data .Organization .ProjectV2 .ID
28
- c .Printf (" ID: <magenta>%s</>\n " , pid )
27
+ c .Printf (" ID: <magenta>%s</>\n " , p .ID )
29
28
30
- statuses := map [string ]string {}
31
- fields := map [string ]string {}
32
-
33
- // TODO write GetProjectFields
34
- for _ , f := range project .Data .Organization .ProjectV2 .Fields .Nodes {
35
- fields [f .Name ] = f .ID
29
+ // todo we can probably remove this? its just for printing the fields (we do this multiple times so maybe just a helper)
30
+ for _ , f := range p .Fields {
36
31
c .Printf (" <lightBlue>%s</> <> <lightCyan>%s</>\n " , f .Name , f .ID )
37
32
38
33
if f .Name == "Status" {
39
34
for _ , s := range f .Options {
40
- statuses [s .Name ] = s .ID
41
35
c .Printf (" <blue>%s</> <> <cyan>%s</>\n " , s .Name , s .ID )
42
36
}
43
37
}
@@ -74,7 +68,7 @@ func CmdPRs(_ *cobra.Command, _ []string) error {
74
68
75
69
// flat := strings.Replace(strings.Replace(q, "\n", " ", -1), "\t", "", -1)
76
70
c .Printf ("Syncing pr <lightCyan>%d</> (<cyan>%s</>) to project.. " , pr .GetNumber (), prNode )
77
- iid , err := p .AddItemOld ( pid , prNode )
71
+ iid , err := p .AddItem ( prNode )
78
72
if err != nil {
79
73
c .Printf ("\n \n <red>ERROR!!</> %s" , err )
80
74
continue
@@ -159,7 +153,7 @@ func CmdPRs(_ *cobra.Command, _ []string) error {
159
153
}
160
154
}
161
155
162
- status = statuses [statusText ]
156
+ status = p . StatusIDs [statusText ]
163
157
byStatus [statusText ] = append (byStatus [statusText ], pr .GetNumber ())
164
158
165
159
c .Printf (" open %d days, waiting %d days\n " , daysOpen , daysWaiting )
@@ -237,17 +231,17 @@ func CmdPRs(_ *cobra.Command, _ []string) error {
237
231
`
238
232
239
233
p := [][]string {
240
- {"-f" , "project=" + pid },
234
+ {"-f" , "project=" + p . ID },
241
235
{"-f" , "item=" + * iid },
242
- {"-f" , "status_field=" + fields ["Status" ]},
236
+ {"-f" , "status_field=" + p . FieldIDs ["Status" ]},
243
237
{"-f" , "status_value=" + status },
244
- {"-f" , "pr_field=" + fields ["PR#" ]},
238
+ {"-f" , "pr_field=" + p . FieldIDs ["PR#" ]},
245
239
{"-f" , fmt .Sprintf ("pr_value=%d" , * pr .Number )}, // todo string + value
246
- {"-f" , "user_field=" + fields ["User" ]},
240
+ {"-f" , "user_field=" + p . FieldIDs ["User" ]},
247
241
{"-f" , fmt .Sprintf ("user_value=%s" , pr .User .GetLogin ())},
248
- {"-f" , "daysOpen_field=" + fields ["Open Days" ]},
242
+ {"-f" , "daysOpen_field=" + p . FieldIDs ["Open Days" ]},
249
243
{"-F" , fmt .Sprintf ("daysOpen_value=%d" , daysOpen )},
250
- {"-f" , "daysWait_field=" + fields ["Waiting Days" ]},
244
+ {"-f" , "daysWait_field=" + p . FieldIDs ["Waiting Days" ]},
251
245
{"-F" , fmt .Sprintf ("daysWait_value=%d" , daysWaiting )},
252
246
}
253
247
0 commit comments