@@ -25,18 +25,18 @@ function findLatestThreads() {
25
25
s : $ ( "#attachThreadSearchField" ) . val ( ) ,
26
26
a : $ ( "#attachThreadAttachOnly" ) . val ( ) ,
27
27
} )
28
- . success ( function ( data ) {
28
+ . success ( ( data ) => {
29
29
sel = $ ( "#attachThreadList" ) ;
30
30
sel . find ( "option" ) . remove ( ) ;
31
- $ . each ( data , function ( m , i ) {
31
+ $ . each ( data , ( m , i ) => {
32
32
sel . append (
33
33
$ ( "<option/>" )
34
- . text ( i . from + ": " + i . subj + " (" + i . date + ")" )
34
+ . text ( ` ${ i . from } : ${ i . subj } ( ${ i . date } )` )
35
35
. val ( i . msgid ) ,
36
36
) ;
37
37
} ) ;
38
38
} )
39
- . always ( function ( ) {
39
+ . always ( ( ) => {
40
40
$ ( "#attachThreadListWrap" ) . removeClass ( "loading" ) ;
41
41
$ ( "#attachThreadSearchButton" ) . removeClass ( "disabled" ) ;
42
42
attachThreadChanged ( ) ;
@@ -48,16 +48,16 @@ function browseThreads(attachfunc, closefunc) {
48
48
$ ( "#attachThreadList" ) . find ( "option" ) . remove ( ) ;
49
49
$ ( "#attachThreadMessageId" ) . val ( "" ) ;
50
50
$ ( "#attachModal" ) . off ( "hidden.bs.modal" ) ;
51
- $ ( "#attachModal" ) . on ( "hidden.bs.modal" , function ( e ) {
51
+ $ ( "#attachModal" ) . on ( "hidden.bs.modal" , ( e ) => {
52
52
if ( closefunc ) closefunc ( ) ;
53
53
} ) ;
54
54
$ ( "#attachModal" ) . modal ( ) ;
55
55
findLatestThreads ( ) ;
56
56
57
57
$ ( "#doAttachThreadButton" ) . unbind ( "click" ) ;
58
- $ ( "#doAttachThreadButton" ) . click ( function ( ) {
58
+ $ ( "#doAttachThreadButton" ) . click ( ( ) => {
59
59
msgid = $ ( "#attachThreadMessageId" ) . val ( ) ;
60
- if ( ! msgid || msgid == "" ) {
60
+ if ( ! msgid || msgid === "" ) {
61
61
msgid = $ ( "#attachThreadList" ) . val ( ) ;
62
62
if ( ! msgid ) return ;
63
63
}
@@ -76,14 +76,14 @@ function browseThreads(attachfunc, closefunc) {
76
76
77
77
function attachThread ( cfid , patchid , closefunc ) {
78
78
browseThreads (
79
- function ( msgid ) {
79
+ ( msgid ) => {
80
80
doAttachThread ( cfid , patchid , msgid , ! closefunc ) ;
81
81
if ( closefunc ) {
82
82
/* We don't really care about closing it, we just reload immediately */
83
83
closefunc ( ) ;
84
84
}
85
85
} ,
86
- function ( ) {
86
+ ( ) => {
87
87
if ( closefunc ) closefunc ( ) ;
88
88
} ,
89
89
) ;
@@ -92,20 +92,18 @@ function attachThread(cfid, patchid, closefunc) {
92
92
function detachThread ( cfid , patchid , msgid ) {
93
93
if (
94
94
confirm (
95
- 'Are you sure you want to detach the thread with messageid "' +
96
- msgid +
97
- '" from this patch?' ,
95
+ `Are you sure you want to detach the thread with messageid "${ msgid } " from this patch?` ,
98
96
)
99
97
) {
100
98
$ . post ( "/ajax/detachThread/" , {
101
99
cf : cfid ,
102
100
p : patchid ,
103
101
msg : msgid ,
104
102
} )
105
- . success ( function ( data ) {
103
+ . success ( ( data ) => {
106
104
location . reload ( ) ;
107
105
} )
108
- . fail ( function ( data ) {
106
+ . fail ( ( data ) => {
109
107
alert ( "Failed to detach thread!" ) ;
110
108
} ) ;
111
109
}
@@ -125,20 +123,20 @@ function doAttachThread(cfid, patchid, msgid, reloadonsuccess) {
125
123
p : patchid ,
126
124
msg : msgid ,
127
125
} )
128
- . success ( function ( data ) {
129
- if ( data != "OK" ) {
126
+ . success ( ( data ) => {
127
+ if ( data !== "OK" ) {
130
128
alert ( data ) ;
131
129
}
132
130
if ( reloadonsuccess ) location . reload ( ) ;
133
131
return true ;
134
132
} )
135
- . fail ( function ( data ) {
136
- if ( data . status == 404 ) {
137
- alert ( " Message with messageid " + msgid + " not found" ) ;
138
- } else if ( data . status == 503 ) {
139
- alert ( " Failed to attach thread: " + data . responseText ) ;
133
+ . fail ( ( data ) => {
134
+ if ( data . status === 404 ) {
135
+ alert ( ` Message with messageid ${ msgid } not found` ) ;
136
+ } else if ( data . status === 503 ) {
137
+ alert ( ` Failed to attach thread: ${ data . responseText } ` ) ;
140
138
} else {
141
- alert ( " Failed to attach thread: " + data . statusText ) ;
139
+ alert ( ` Failed to attach thread: ${ data . statusText } ` ) ;
142
140
}
143
141
return false ;
144
142
} ) ;
@@ -150,25 +148,17 @@ function updateAnnotationMessages(threadid) {
150
148
$ . get ( "/ajax/getMessages" , {
151
149
t : threadid ,
152
150
} )
153
- . success ( function ( data ) {
151
+ . success ( ( data ) => {
154
152
sel = $ ( "#annotateMessageList" ) ;
155
153
sel . find ( "option" ) . remove ( ) ;
156
154
sel . append ( '<option value="">---</option>' ) ;
157
- $ . each ( data , function ( i , m ) {
155
+ $ . each ( data , ( i , m ) => {
158
156
sel . append (
159
- '<option value="' +
160
- m . msgid +
161
- '">' +
162
- m . from +
163
- ": " +
164
- m . subj +
165
- " (" +
166
- m . date +
167
- ")</option>" ,
157
+ `<option value="${ m . msgid } ">${ m . from } : ${ m . subj } (${ m . date } )</option>` ,
168
158
) ;
169
159
} ) ;
170
160
} )
171
- . always ( function ( ) {
161
+ . always ( ( ) => {
172
162
$ ( "#annotateMessageBody" ) . removeClass ( "loading" ) ;
173
163
} ) ;
174
164
}
@@ -180,8 +170,8 @@ function addAnnotation(threadid) {
180
170
$ ( "#annotateThreadList" ) . focus ( ) ;
181
171
updateAnnotationMessages ( threadid ) ;
182
172
$ ( "#doAnnotateMessageButton" ) . unbind ( "click" ) ;
183
- $ ( "#doAnnotateMessageButton" ) . click ( function ( ) {
184
- var msg = $ ( "#annotateMessage" ) . val ( ) ;
173
+ $ ( "#doAnnotateMessageButton" ) . click ( ( ) => {
174
+ const msg = $ ( "#annotateMessage" ) . val ( ) ;
185
175
if ( msg . length >= 500 ) {
186
176
alert (
187
177
"Maximum length for an annotation is 500 characters.\nYou should probably post an actual message in the thread!" ,
@@ -195,24 +185,24 @@ function addAnnotation(threadid) {
195
185
msgid : $ . trim ( $ ( "#annotateMsgId" ) . val ( ) ) ,
196
186
msg : msg ,
197
187
} )
198
- . success ( function ( data ) {
199
- if ( data != "OK" ) {
188
+ . success ( ( data ) => {
189
+ if ( data !== "OK" ) {
200
190
alert ( data ) ;
201
191
$ ( "#annotateMessageBody" ) . removeClass ( "loading" ) ;
202
192
} else {
203
193
$ ( "#annotateModal" ) . modal ( "hide" ) ;
204
194
location . reload ( ) ;
205
195
}
206
196
} )
207
- . fail ( function ( data ) {
197
+ . fail ( ( data ) => {
208
198
alert ( "Failed to annotate message" ) ;
209
199
$ ( "#annotateMessageBody" ) . removeClass ( "loading" ) ;
210
200
} ) ;
211
201
} ) ;
212
202
}
213
203
214
204
function annotateMsgPicked ( ) {
215
- var val = $ ( "#annotateMessageList" ) . val ( ) ;
205
+ const val = $ ( "#annotateMessageList" ) . val ( ) ;
216
206
if ( val ) {
217
207
$ ( "#annotateMsgId" ) . val ( val ) ;
218
208
annotateChanged ( ) ;
@@ -221,7 +211,7 @@ function annotateMsgPicked() {
221
211
222
212
function annotateChanged ( ) {
223
213
/* Enable/disable the annotate button */
224
- if ( $ ( "#annotateMessage" ) . val ( ) != "" && $ ( "#annotateMsgId" ) . val ( ) ) {
214
+ if ( $ ( "#annotateMessage" ) . val ( ) !== "" && $ ( "#annotateMsgId" ) . val ( ) ) {
225
215
$ ( "#doAnnotateMessageButton" ) . removeClass ( "disabled" ) ;
226
216
} else {
227
217
$ ( "#doAnnotateMessageButton" ) . addClass ( "disabled" ) ;
@@ -233,10 +223,10 @@ function deleteAnnotation(annid) {
233
223
$ . post ( "/ajax/deleteAnnotation/" , {
234
224
id : annid ,
235
225
} )
236
- . success ( function ( data ) {
226
+ . success ( ( data ) => {
237
227
location . reload ( ) ;
238
228
} )
239
- . fail ( function ( data ) {
229
+ . fail ( ( data ) => {
240
230
alert ( "Failed to delete annotation!" ) ;
241
231
} ) ;
242
232
}
@@ -246,21 +236,21 @@ function flagCommitted(committer) {
246
236
$ ( "#commitModal" ) . modal ( ) ;
247
237
$ ( "#committerSelect" ) . val ( committer ) ;
248
238
$ ( "#doCommitButton" ) . unbind ( "click" ) ;
249
- $ ( "#doCommitButton" ) . click ( function ( ) {
250
- var c = $ ( "#committerSelect" ) . val ( ) ;
239
+ $ ( "#doCommitButton" ) . click ( ( ) => {
240
+ const c = $ ( "#committerSelect" ) . val ( ) ;
251
241
if ( ! c ) {
252
242
alert (
253
243
"You need to select a committer before you can mark a patch as committed!" ,
254
244
) ;
255
245
return ;
256
246
}
257
- document . location . href = " close/committed/?c=" + c ;
247
+ document . location . href = ` close/committed/?c=${ c } ` ;
258
248
} ) ;
259
249
return false ;
260
250
}
261
251
262
252
function sortpatches ( sortby ) {
263
- if ( $ ( "#id_sortkey" ) . val ( ) == sortby ) {
253
+ if ( $ ( "#id_sortkey" ) . val ( ) === sortby ) {
264
254
$ ( "#id_sortkey" ) . val ( 0 ) ;
265
255
} else {
266
256
$ ( "#id_sortkey" ) . val ( sortby ) ;
@@ -271,13 +261,13 @@ function sortpatches(sortby) {
271
261
}
272
262
273
263
function toggleButtonCollapse ( buttonId , collapseId ) {
274
- $ ( "#" + buttonId ) . button ( "toggle" ) ;
275
- $ ( "#" + collapseId ) . toggleClass ( "in" ) ;
264
+ $ ( `# ${ buttonId } ` ) . button ( "toggle" ) ;
265
+ $ ( `# ${ collapseId } ` ) . toggleClass ( "in" ) ;
276
266
}
277
267
278
268
function togglePatchFilterButton ( buttonId , collapseId ) {
279
269
/* Figure out if we are collapsing it */
280
- if ( $ ( "#" + collapseId ) . hasClass ( "in" ) ) {
270
+ if ( $ ( `# ${ collapseId } ` ) . hasClass ( "in" ) ) {
281
271
/* Go back to ourselves without a querystring to reset the form, unless it's already empty */
282
272
if ( document . location . href . indexOf ( "?" ) > - 1 ) {
283
273
document . location . href = "." ;
@@ -293,7 +283,7 @@ function togglePatchFilterButton(buttonId, collapseId) {
293
283
*/
294
284
function search_and_store_user ( ) {
295
285
$ ( "#doSelectUserButton" ) . unbind ( "click" ) ;
296
- $ ( "#doSelectUserButton" ) . click ( function ( ) {
286
+ $ ( "#doSelectUserButton" ) . click ( ( ) => {
297
287
if ( ! $ ( "#searchUserList" ) . val ( ) ) {
298
288
return false ;
299
289
}
@@ -302,16 +292,16 @@ function search_and_store_user() {
302
292
$ . get ( "/ajax/importUser/" , {
303
293
u : $ ( "#searchUserList" ) . val ( ) ,
304
294
} )
305
- . success ( function ( data ) {
306
- if ( data == "OK" ) {
295
+ . success ( ( data ) => {
296
+ if ( data === "OK" ) {
307
297
alert ( "User imported!" ) ;
308
298
$ ( "#searchUserModal" ) . modal ( "hide" ) ;
309
299
} else {
310
- alert ( " Failed to import user: " + data ) ;
300
+ alert ( ` Failed to import user: ${ data } ` ) ;
311
301
}
312
302
} )
313
- . fail ( function ( data , statustxt ) {
314
- alert ( " Failed to import user: " + statustxt ) ;
303
+ . fail ( ( data , statustxt ) => {
304
+ alert ( ` Failed to import user: ${ statustxt } ` ) ;
315
305
} ) ;
316
306
317
307
return false ;
@@ -330,24 +320,16 @@ function findUsers() {
330
320
$ . get ( "/ajax/searchUsers/" , {
331
321
s : $ ( "#searchUserSearchField" ) . val ( ) ,
332
322
} )
333
- . success ( function ( data ) {
323
+ . success ( ( data ) => {
334
324
sel = $ ( "#searchUserList" ) ;
335
325
sel . find ( "option" ) . remove ( ) ;
336
- $ . each ( data , function ( i , u ) {
326
+ $ . each ( data , ( i , u ) => {
337
327
sel . append (
338
- '<option value="' +
339
- u . u +
340
- '">' +
341
- u . u +
342
- " (" +
343
- u . f +
344
- " " +
345
- u . l +
346
- ")</option>" ,
328
+ `<option value="${ u . u } ">${ u . u } (${ u . f } ${ u . l } )</option>` ,
347
329
) ;
348
330
} ) ;
349
331
} )
350
- . always ( function ( ) {
332
+ . always ( ( ) => {
351
333
$ ( "#searchUserListWrap" ) . removeClass ( "loading" ) ;
352
334
$ ( "#searchUserSearchButton" ) . removeClass ( "disabled" ) ;
353
335
searchUserListChanged ( ) ;
0 commit comments