-
Notifications
You must be signed in to change notification settings - Fork 2
/
List.js
463 lines (399 loc) · 12.9 KB
/
List.js
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
/**
* @class List
* @memberof module:TrelloEntities
* @param data (Object} key/value pairs of
* information, must at least contain "id",
* can basically just pass in response from Trello API
* @constructor
* @classdesc The List class represents
* a List in Trello.
*
* You will mostly deal with lists in IterableCollections
* returned from Board methods.
*
* @example
* new Trellinator().board("Some board").findOrCreateList("ToDo");
* @example
* new Trellinator().board("Some board").list("ToDo").cards().first().postComment("Me first!");
* @example
* new Trellinator().board("Some Board").lists().each(function(list)
* {
* list.cards().first().postComment("Me first!");
* });
*/
var List = function(data)
{
//allow Trello style IDs
if((prov = Trellinator.provider()) && (prov.name == "WeKan"))
data['_id'] = data['_id'] || data.id;
this.data = data;
this.card_list = null;
this.board_object = null;
/**
* Return the id of this List
* @memberof module:TrelloEntities.List
* @example
* board.list("Some List").id();
*/
this.id = function()
{
return Trellinator.standardId(this.data);
}
/**
* Archive all cards in a list
* @memberof module:TrelloEntities.List
* @example
* new Notification(posted).addedCard().currentList().archiveAllCards();
*/
this.archiveAllCards = function()
{
if((prov = Trellinator.provider()) && (prov.name == "WeKan"))
{
this.cards().each(function(card)
{
card.archive();
});
}
else
TrelloApi.post("lists/"+this.data.id+"/archiveAllCards");
this.card_list = null;
return this;
}
/**
* Move a list to a different board
* @memberof module:TrelloEntities.List
* @param board {Board} the board to move this list to
* @example
* var to_board = new Trellinator().board("Some Board");
* new Notification(posted).addedCard().currentList().move(to_board);
*/
this.move = function(board,pos)
{
if((prov = Trellinator.provider()) && (prov.name == "WeKan"))
throw new InvalidRequestException('Cannot move a list using the WeKan API yet');
TrelloApi.put("lists/"+this.data.id+"/idBoard?value="+board.id());
if(pos)
{
TrelloApi.put("lists/"+this.data.id+"/pos?value="+encodeURIComponent(pos));
}
if(this.board_object)
{
this.board_object.list_of_lists = null;
}
this.data.idBoard = null;
this.board_object = null;
this.card_list = null;
return this;
}
/**
* Set the position of a list
* @memberof module:TrelloEntities.List
* @param pos {string|float} top, bottom, or a positive float
* @example
* var to_board = new Trellinator().board("Some Board");
* new Notification(posted).addedCard().currentList().setPosition("bottom");
*/
this.setPosition = function(pos)
{
if((prov = Trellinator.provider()) && (prov.name == "WeKan"))
throw new InvalidRequestException('Cannot set position on a list using the WeKan API yet');
TrelloApi.put("lists/"+this.data.id+"/pos?value="+pos);
if(this.board_object)
this.board_object.list_of_lists = null;
return this;
}
/**
* Return the current position of this list
* @memberof module:TrelloEntities.List
* @example
* new Notification(notification).addedCard().currentList().position();
*/
this.position = function()
{
if(
!("pos" in this.data) &&
!("sort" in this.data)
)
this.load();
return this.data.pos || this.data.sort || 0;
}
/**
* Sort the list, defaults to sort alphabetically
* in ascending order, but you can pass in a callback
* function too.
*
* The following standard comparators are available:
*
* - List.SORT_DATE_DESC
* - List.SORT_DATE_ASC
* - List.SORT_ALPHA_DESC
* - List.SORT_TIME_IN_LIST_DESC
* - List.SORT_TIME_IN_LIST_ASC
*
* @memberof module:TrelloEntities.List
* @example
* card.currentList().sort(List.SORT_DATE_DESC);
*/
this.sort = function(comparator)
{
var orig = comparator;
this.card_list = null;
var sorted = this
.cards()
.asArray();
if(!comparator || (comparator == List.SORT_ALPHA_DESC))
{
comparator = function(card1,card2)
{
var ret = 0;
if(card1.name().toLowerCase() > card2.name().toLowerCase())
ret = 1;
else if(card1.name().toLowerCase() < card2.name().toLowerCase())
ret = -1;
return ret;
};
}
sorted.sort(comparator);
if(orig == List.SORT_ALPHA_DESC)
sorted.reverse();
new IterableCollection(sorted).each(function(item,key)
{
if((prov = Trellinator.provider()) && (prov.name == "WeKan"))
item.setPosition(parseInt(key)+1);
else
item.moveToList(this,parseInt(key)+1);
}.bind(this));
}
//LIST SORTING STANDARD COMPARATOR FUNCTIONS
List.SORT_DATE_ASC = function(card1,card2)
{
return new Date(card1.due()).getTime() - new Date(card2.due()).getTime();
}
List.SORT_DATE_DESC = function(card1,card2)
{
return new Date(card2.due()).getTime() - new Date(card1.due()).getTime();
}
List.SORT_TIME_IN_LIST_DESC = function(card1,card2)
{
return card1.movedToList().getTime() - card2.movedToList().getTime();
}
List.SORT_TIME_IN_LIST_ASC = function(card1,card2)
{
return card2.movedToList().getTime() - card1.movedToList().getTime();
}
//THIS IS NOT A FUNCTION, IT JUST REVERSES THE DEFAULT
List.SORT_ALPHA_DESC = "SORT IN REVERSE ALPHABETICAL ORDER";
/**
* Return the name of this List
* @memberof module:TrelloEntities.List
* @example
* card.currentList().name();
*/
this.name = function()
{
if(
!("name" in this.data) &&
!("text" in this.data) &&
!("title" in this.data)
)
this.load();
return this.data.name || this.data.text || this.data.title || "";
}
/**
* Return the board that contains this list
* @memberof module:TrelloEntities.List
* @example
* card.currentList().board();
*/
this.board = function()
{
if(!("idBoard" in this.data) && !this.board_object)
this.load();
if(!this.board_object && this.data.idBoard)
this.board_object = new Board({id: this.data.idBoard});
if(!this.board_object)
throw new InvalidDataException("List is not in a board: "+this.id());
return this.board_object;
}
this.setBoard = function(board)
{
this.board_object = board;
return this;
}
/**
* Return a Card from this list, filtered by
* name or regex
* @memberof module:TrelloEntities.List
* @param name {string|RegExp} a string or RegEx to match against the name
* of the cards, if multiple match the first will be returned
* @example
* card.currentList().card("Another Card");
* @example
* card.currentList().card(new RegExp("Process.*"));
*/
this.card = function(name)
{
return this.cards(name).first();
}
/**
* Return an IterableCollection of cards in this
* list, optionally filtered by name using a
* string or regex
* @memberof module:TrelloEntities.List
* @param name {string|RegExp} a string or regex to match against
* the names of cards in this list
* @example
* card.currentList().cards(new RegExp(card.name()+".*")).each(function(loop)
* {
* if(loop.id() != card.id())
* loop.postComment("Twinsies!");
* });
*/
this.cards = function(name)
{
if(!this.card_list)
{
if((prov = Trellinator.provider()) && (prov.name == "WeKan"))
{
if(!this.board_object)
this.load();
this.card_list = new IterableCollection(WekanApi.get("boards/"+this.board_object.id()+"/lists/"+this.id()+"/cards")).transform(function(elem)
{
return new Card(elem).setCurrentList(this);
}.bind(this));
}
else
{
this.card_list = new IterableCollection(TrelloApi.get("lists/"+this.data.id+"/cards?fields=id,name")).transform(function(elem)
{
return new Card(elem).setCurrentList(this);
}.bind(this));
}
}
return this.card_list.findByName(name);
}
/**
* Return the number of cards in this list
* @memberof module:TrelloEntities.List
* @example
* card.currentList().countCards();
*/
this.countCards = function()
{
return this.cards().length();
}
/**
* Set a new name for this list
* @memberof module:TrelloEntities.List
* @example
* card.currentList().setName("I have "+card.name());
*/
this.setName = function(new_name)
{
this.rename(new_name);
}
/**
* Archive this list
* @memberof module:TrelloEntities.List
* @example
* card.currentList().archive();
*/
this.archive = function()
{
if((prov = Trellinator.provider()) && (prov.name == "WeKan"))
throw new InvalidRequestException("Unable to archive lists in WeKan API currently");
TrelloApi.put("lists/"+this.data.id+"?closed=true");
this.board().list_of_lists = null;
return this;
}
/**
* Unarchive this list
* @memberof module:TrelloEntities.List
* @example
* card.currentList().unArchive();
*/
this.unArchive = function()
{
if((prov = Trellinator.provider()) && (prov.name == "WeKan"))
throw new InvalidRequestException("Unable to unarchive lists in WeKan API currently");
TrelloApi.put("lists/"+this.data.id+"?closed=false");
this.board().list_of_lists = null;
return this;
}
/**
* Copy this list
* @memberof module:TrelloEntities.List
* @example
* var notif = new Notification(posted);
* notif.board().copy();
*/
this.copy = function(pos)
{
if(!pos)
pos = "top";
if((prov = Trellinator.provider()) && (prov.name == "WeKan"))
{
var ret = this.board().createList(this.name());
this.cards().each(function(card)
{
card.copyToList(ret);
});
return ret;
}
else
return new List(TrelloApi.post("lists?name="+encodeURIComponent(this.name())+"&idBoard="+this.board().id()+"&idListSource="+this.id()+"&pos="+pos));
}
/**
* Move all cards from this list to another
* @memberof module:TrelloEntities.List
* @param to_list {List} a List object to move all cards to
* @example
* var notif = new Notification(posted);
* var from_list = notif.board().list("Start");
* var to_list = new Trellinator().board("Another").list("Finish");
* from_list.moveAllCards(to_list);
*/
this.moveAllCards = function(to_list)
{
if((prov = Trellinator.provider()) && (prov.name == "WeKan"))
{
this.cards().each(function(card)
{
card.moveToList(to_list);
});
}
else
new IterableCollection(TrelloApi.post("lists/"+this.id()+"/moveAllCards?idBoard="+to_list.board().id()+"&idList="+to_list.id()));
this.card_list = null;
to_list.card_list = null;
return this;
}
//INTERNAL USE ONLY
this.load = function()
{
this.card_list = null;
if((prov = Trellinator.provider()) && (prov.name == "WeKan"))
{
if(!this.board_object && this.data['boardId'])
this.board_object = new Board({id: this.data.boardId});
else if(!this.board_object)
throw "List must either have a board object or a boardId in order to be loaded";
this.data = WekanApi.get("boards/"+this.board_object.id()+"/lists/"+this.data['_id']);
}
else
{
this.board_object = null;
this.data = TrelloApi.get("lists/"+this.data.id+"?fields=all");
}
return this;
}
//DEPRECATED used setName
this.rename = function(new_name)
{
if((prov = Trellinator.provider()) && (prov.name == "WeKan"))
throw new InvalidRequestException("Unable to rename lists using WeKan API yet");
var updated = TrelloApi.put("lists/"+this.data.id+"/name?value="+encodeURIComponent(new_name));
this.data.name = new_name;
return this;
}
}