@@ -64,6 +64,8 @@ func CmdSync(_ *cobra.Command, args []string) error {
64
64
continue
65
65
}
66
66
67
+ //TODO filters - now we only want ones with status X
68
+
67
69
// parse the url (todo handle issues?)
68
70
owner , name , _ , number , err := gh .ParseGitHubURL (srcItem .URL )
69
71
if err != nil {
@@ -86,7 +88,7 @@ func CmdSync(_ *cobra.Command, args []string) error {
86
88
87
89
nodeID := * pr .NodeID
88
90
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 ())
90
92
if di , ok := dstItemNodeIDMap [nodeID ]; ok {
91
93
c .Printf (" already exists, " )
92
94
dstItemId = di .ID
@@ -101,7 +103,7 @@ func CmdSync(_ *cobra.Command, args []string) error {
101
103
c .Printf ("(<magenta>%s</>), setting status.. " , * iid )
102
104
dstItemId = * iid
103
105
104
- err = destination .SetItemStatus (dstItemId , "Unclaimed PR " )
106
+ err = destination .SetItemStatus (dstItemId , "Backlog [PRs] " )
105
107
if err != nil {
106
108
c .Printf ("\n \n <red>ERROR!!</> %s" , err )
107
109
continue
@@ -111,87 +113,19 @@ func CmdSync(_ *cobra.Command, args []string) error {
111
113
// update the other fields
112
114
c .Printf ("<blue>updating</>..." )
113
115
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 },
186
121
}
187
122
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
194
127
}
128
+
195
129
fmt .Println ()
196
130
}
197
131
0 commit comments