Skip to content

Commit dfbf243

Browse files
committed
switch project cmd to new UpdateItem function
1 parent 1268dc6 commit dfbf243

File tree

3 files changed

+27
-82
lines changed

3 files changed

+27
-82
lines changed

cli/cmds_project.go

+14-80
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,8 @@ func CmdSync(_ *cobra.Command, args []string) error {
6464
continue
6565
}
6666

67+
//TODO filters - now we only want ones with status X
68+
6769
// parse the url (todo handle issues?)
6870
owner, name, _, number, err := gh.ParseGitHubURL(srcItem.URL)
6971
if err != nil {
@@ -86,7 +88,7 @@ func CmdSync(_ *cobra.Command, args []string) error {
8688

8789
nodeID := *pr.NodeID
8890
dstItemId := ""
89-
c.Printf("<blue>%s</>/<lightBlue>%s</>#<lightCyan>%d</> ", owner, name, pr.GetNumber())
91+
c.Printf("<blue>%s</>/<lightBlue>%s</>#<lightCyan>%d</> \n", owner, name, pr.GetNumber())
9092
if di, ok := dstItemNodeIDMap[nodeID]; ok {
9193
c.Printf(" already exists, ")
9294
dstItemId = di.ID
@@ -101,7 +103,7 @@ func CmdSync(_ *cobra.Command, args []string) error {
101103
c.Printf("(<magenta>%s</>), setting status.. ", *iid)
102104
dstItemId = *iid
103105

104-
err = destination.SetItemStatus(dstItemId, "Unclaimed PR")
106+
err = destination.SetItemStatus(dstItemId, "Backlog [PRs]")
105107
if err != nil {
106108
c.Printf("\n\n <red>ERROR!!</> %s", err)
107109
continue
@@ -111,87 +113,19 @@ func CmdSync(_ *cobra.Command, args []string) error {
111113
// update the other fields
112114
c.Printf("<blue>updating</>...")
113115

114-
//update status to "Unclaimed PR" & update request type to
115-
// TODO we can loop through the fields and build a more dynamic query from a function p.UpdateItemFields()
116-
q := `query=
117-
mutation (
118-
$project:ID!, $item:ID!,
119-
$requesttype_field:ID!, $requesttype_value:String!,
120-
$pr_field:ID!, $pr_value:String!,
121-
$user_field:ID!, $user_value:String!,
122-
$duedate_field: ID!, $duedate_value: Date!
123-
) {
124-
set_requesttype: updateProjectV2ItemFieldValue(input: {
125-
projectId: $project
126-
itemId: $item
127-
fieldId: $requesttype_field
128-
value: {
129-
text: $requesttype_value
130-
}
131-
}) {
132-
projectV2Item {
133-
id
134-
}
135-
}
136-
set_pr: updateProjectV2ItemFieldValue(input: {
137-
projectId: $project
138-
itemId: $item
139-
fieldId: $pr_field
140-
value: {
141-
text: $pr_value
142-
}
143-
}) {
144-
projectV2Item {
145-
id
146-
}
147-
}
148-
set_user: updateProjectV2ItemFieldValue(input: {
149-
projectId: $project
150-
itemId: $item
151-
fieldId: $user_field
152-
value: {
153-
text: $user_value
154-
}
155-
}) {
156-
projectV2Item {
157-
id
158-
}
159-
}
160-
set_duedate: updateProjectV2ItemFieldValue(input: {
161-
projectId: $project
162-
itemId: $item
163-
fieldId: $duedate_field
164-
value: {
165-
date: $duedate_value
166-
}
167-
}) {
168-
projectV2Item {
169-
id
170-
}
171-
}
172-
}
173-
`
174-
175-
p := [][]string{
176-
{"-f", "project=" + destination.ID},
177-
{"-f", "item=" + dstItemId},
178-
{"-f", "pr_field=" + destination.FieldIDs["PR#"]},
179-
{"-f", fmt.Sprintf("pr_value=%d", *pr.Number)}, // todo string + value
180-
{"-f", "user_field=" + destination.FieldIDs["User"]},
181-
{"-f", fmt.Sprintf("user_value=%s", pr.User.GetLogin())},
182-
{"-f", "requesttype_field=" + destination.FieldIDs["Request Type"]},
183-
{"-f", fmt.Sprintf("requesttype_value=%s", srcItem.RequestType)},
184-
{"-f", "duedate_field=" + destination.FieldIDs["Due Date"]},
185-
{"-f", fmt.Sprintf("duedate_value=%s", srcItem.DueDate)}, // Replace 'dueDate' with your due date value
116+
fields := []gh.ProjectItemField{
117+
{Name: "number", FieldID: destination.FieldIDs["#"], Type: gh.ItemValueTypeNumber, Value: *pr.Number},
118+
{Name: "user", FieldID: destination.FieldIDs["User"], Type: gh.ItemValueTypeText, Value: pr.User.GetLogin()},
119+
{Name: "requesttype", FieldID: destination.FieldIDs["Request Type"], Type: gh.ItemValueTypeText, Value: srcItem.RequestType},
120+
{Name: "duedate", FieldID: destination.FieldIDs["Due Date"], Type: gh.ItemValueTypeDate, Value: srcItem.DueDate},
186121
}
187122

188-
if !f.DryRun {
189-
out, err := r.GraphQLQuery(q, p)
190-
if err != nil {
191-
c.Printf("\n\n <red>ERROR!!</> %s\n%s", err, *out)
192-
return nil
193-
}
123+
err = destination.UpdateItem(dstItemId, fields)
124+
if err != nil {
125+
c.Printf("\n\n <red>ERROR!!</> %s\n", err)
126+
continue
194127
}
128+
195129
fmt.Println()
196130
}
197131

cli/cmds_prs.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ func CmdPRs(_ *cobra.Command, _ []string) error {
157157
byStatus[statusText] = append(byStatus[statusText], pr.GetNumber())
158158

159159
c.Printf(" open %d days, waiting %d days\n", daysOpen, daysWaiting)
160-
160+
161161
fields := []gh.ProjectItemField{
162162
{Name: "number", FieldID: p.FieldIDs["#"], Type: gh.ItemValueTypeNumber, Value: *pr.Number},
163163
{Name: "status", FieldID: p.FieldIDs["Status"], Type: gh.ItemValueTypeSingleSelect, Value: status},

lib/gh/project-item.go

+12-1
Original file line numberDiff line numberDiff line change
@@ -265,6 +265,11 @@ func (p *Project) UpdateItem(itemID string, fields []ProjectItemField) error {
265265
fieldIDVar := fmt.Sprintf("$%s_field", fieldAlias)
266266
fieldValueVar := fmt.Sprintf("$%s_value", fieldAlias)
267267

268+
// Validate the field id it can never be empty
269+
if f.FieldID == "" {
270+
return fmt.Errorf("field ID for %s is empty", fieldAlias)
271+
}
272+
268273
// Variable definitions based on Type
269274
varDefs = append(varDefs, fieldIDVar+":ID!")
270275
switch f.Type {
@@ -274,15 +279,19 @@ func (p *Project) UpdateItem(itemID string, fields []ProjectItemField) error {
274279
varDefs = append(varDefs, fieldValueVar+":String!")
275280
case ItemValueTypeNumber:
276281
varDefs = append(varDefs, fieldValueVar+":Float!")
282+
case ItemValueTypeDate:
283+
varDefs = append(varDefs, fieldValueVar+":Date!")
277284
default:
278-
return fmt.Errorf("unsupported value type: %v", f.Type)
285+
return fmt.Errorf("unsupported value type: %v for %s ", f.Type, fieldAlias)
279286
}
280287

281288
// Add parameters for this field
282289
params = append(params, []string{"-f", fmt.Sprintf("%s_field=%s", fieldAlias, f.FieldID)})
283290
switch f.Type {
284291
case ItemValueTypeText:
285292
fallthrough
293+
case ItemValueTypeDate:
294+
fallthrough
286295
case ItemValueTypeSingleSelect:
287296
params = append(params, []string{"-f", fmt.Sprintf("%s_value=%v", fieldAlias, f.Value)})
288297
case ItemValueTypeNumber:
@@ -297,6 +306,8 @@ func (p *Project) UpdateItem(itemID string, fields []ProjectItemField) error {
297306
valuePart = fmt.Sprintf("value: { text: %s }", fieldValueVar)
298307
case ItemValueTypeNumber:
299308
valuePart = fmt.Sprintf("value: { number: %s }", fieldValueVar)
309+
case ItemValueTypeDate:
310+
valuePart = fmt.Sprintf("value: { date: %s }", fieldValueVar)
300311
case ItemValueTypeSingleSelect:
301312
valuePart = fmt.Sprintf("value: { singleSelectOptionId: %s }", fieldValueVar)
302313
}

0 commit comments

Comments
 (0)