-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsmart.kanban.js
1678 lines (1678 loc) · 239 KB
/
smart.kanban.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
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import * as tslib_1 from "tslib";
import { Component, Directive, AfterViewInit, ElementRef, Input, OnInit, OnChanges, OnDestroy, SimpleChanges, Output, EventEmitter } from '@angular/core';
import { BaseElement, Smart } from './smart.element';
export { Smart } from './smart.element';
let KanbanComponent = class KanbanComponent extends BaseElement {
constructor(ref) {
super(ref);
this.eventHandlers = [];
/** @description This event is triggered when a task has been updated.
* @param event. The custom event. Custom event was created with: event.detail( oldValue, task, value)
* oldValue - The old data of the task
* task - The HTML element of the task whose data has been changed
* value - The new data of the task
*/
this.onChange = new EventEmitter();
/** @description This event is triggered when the edit/prompt dialog is closed.
* @param event. The custom event. */
this.onClose = new EventEmitter();
/** @description This event is triggered when the edit/prompt dialog is about to be closed. The closing operation can be canceled by calling event.preventDefault() in the event handler function.
* @param event. The custom event. */
this.onClosing = new EventEmitter();
/** @description This event is triggered when a column is added.
* @param event. The custom event. Custom event was created with: event.detail( label, dataField, collapsed)
* label - The column label.
* dataField - The column data field.
* collapsed - The column's collapsed state.
*/
this.onColumnAdd = new EventEmitter();
/** @description This event is triggered when a column is removed.
* @param event. The custom event. Custom event was created with: event.detail( label, dataField, collapsed)
* label - The column label.
* dataField - The column data field.
* collapsed - The column's collapsed state.
*/
this.onColumnRemove = new EventEmitter();
/** @description This event is triggered when a column is reordered.
* @param event. The custom event. Custom event was created with: event.detail( oldIndex, index, column)
* oldIndex - The column's old index.
* index - The column's new index.
* column - The column's data object with 'label', 'dataField' and 'collapsed' fields.
*/
this.onColumnReorder = new EventEmitter();
/** @description This event is triggered when a column is updated.
* @param event. The custom event. Custom event was created with: event.detail( oldValue, value, column)
* oldValue - The column's old label.
* value - The column's new label.
* column - The column's data object with 'label', 'dataField' and 'collapsed' fields.
*/
this.onColumnUpdate = new EventEmitter();
/** @description This event is triggered when a column header is clicked.
* @param event. The custom event. Custom event was created with: event.detail( label, dataField, collapsed)
* label - The column label.
* dataField - The column data field.
* collapsed - The column's collapsed state.
*/
this.onColumnClick = new EventEmitter();
/** @description This event is triggered when a column header is double clicked.
* @param event. The custom event. Custom event was created with: event.detail( label, dataField, collapsed)
* label - The column label.
* dataField - The column data field.
* collapsed - The column's collapsed state.
*/
this.onColumnDoubleClick = new EventEmitter();
/** @description This event is triggered when a column is shown by using the column's action menu or the Kanban's 'show' method.
* @param event. The custom event. Custom event was created with: event.detail( label, dataField)
* label - The column label.
* dataField - The column data field.
*/
this.onColumnShow = new EventEmitter();
/** @description This event is triggered when a column is hidden by using the column's action menu or the Kanban's 'hide' method.
* @param event. The custom event. Custom event was created with: event.detail( label, dataField)
* label - The column label.
* dataField - The column data field.
*/
this.onColumnHide = new EventEmitter();
/** @description This event is triggered when a column is collapsed by using the column's action menu or the Kanban's 'collapse' method.
* @param event. The custom event. Custom event was created with: event.detail( label, dataField)
* label - The column label.
* dataField - The column data field.
*/
this.onColumnCollapse = new EventEmitter();
/** @description This event is triggered when a column is expanded by using the column's action menu or the Kanban's 'expand' method.
* @param event. The custom event. Custom event was created with: event.detail( label, dataField)
* label - The column label.
* dataField - The column data field.
*/
this.onColumnExpand = new EventEmitter();
/** @description This event is triggered when a comment is added to the Kanban Task.
* @param event. The custom event. Custom event was created with: event.detail( id, value)
* id - The task's id.
* value - The comment object. It has 'text: string, time: Date and userId:number' properties.
*/
this.onCommentAdd = new EventEmitter();
/** @description This event is triggered when a comment is removed from the Kanban Task.
* @param event. The custom event. Custom event was created with: event.detail( id, value)
* id - The task's id.
* value - The comment object. It has 'text: string, time: Date and userId:number' properties.
*/
this.onCommentRemove = new EventEmitter();
/** @description This event is triggered when a comment is updated in the Kanban Task.
* @param event. The custom event. Custom event was created with: event.detail( id, value)
* id - The task's id.
* value - The comment object. It has 'text: string, time: Date and userId:number' properties.
*/
this.onCommentUpdate = new EventEmitter();
/** @description This event is triggered when a task is dropped somewhere in the DOM. The dragging operation can be canceled by calling event.preventDefault() in the event handler function.
* @param event. The custom event. Custom event was created with: event.detail( container, data, item, items, originalEvent, previousContainer, target)
* container - the Kanban the dragged task(s) is dropped to
* data - an object with additional drag details
* item - the task that is dragged; if multiple tasks are dragged, this is the task that has been clicked when initiating the drag operation
* items - an array with all dragged tasks
* originalEvent - the original, browser, event that initiates the drag operation
* previousContainer - the Kanban the dragged item(s) is dragged from
* target - the element the dragged tasks are dropped to
*/
this.onDragEnd = new EventEmitter();
/** @description This event is triggered when the user is dragging a task.
* @param event. The custom event. Custom event was created with: event.detail( data, item, items, originalEvent)
* data - an object with additional drag details
* item - the task that is dragged; if multiple tasks are dragged, this is the task that has been clicked when initiating the drag operation
* items - an array with all dragged tasks
* originalEvent - the original, browser, event that initiates the drag operation
*/
this.onDragging = new EventEmitter();
/** @description This event is triggered when the user starts dragging task(s). The dragging operation can be canceled by calling event.preventDefault() in the event handler function.
* @param event. The custom event. Custom event was created with: event.detail( container, data, item, items, originalEvent, previousContainer)
* container - the Kanban the dragged task(s) is dragged from
* data - an object with additional drag details
* item - the task that is dragged; if multiple tasks are dragged, this is the task that has been clicked when initiating the drag operation
* items - an array with all dragged tasks
* originalEvent - the original, browser, event that initiates the drag operation
* previousContainer - the Kanban the dragged item(s) is dragged from
*/
this.onDragStart = new EventEmitter();
/** @description This event is triggered when a filter has been applied.
* @param event. The custom event. */
this.onFilter = new EventEmitter();
/** @description This event is triggered when the edit/prompt dialog is opened.
* @param event. The custom event. */
this.onOpen = new EventEmitter();
/** @description This event is triggered when the edit/prompt dialog is about to be opened. The opening operation can be canceled by calling event.preventDefault() in the event handler function. If you want to cancel the default Kanban dialog, call event.preventDefault();
* @param event. The custom event. Custom event was created with: event.detail( comment, purpose, task)
* comment - The comment that is about to be removed (if applicable).
* purpose - The purpose of the dialog to be opened - <em>'edit'</em> or <em>'prompt'</em>.
* task - The task that is about to be edited or removed (if applicable).
*/
this.onOpening = new EventEmitter();
/** @description This event is triggered when sorting has been applied.
* @param event. The custom event. */
this.onSort = new EventEmitter();
/** @description This event is triggered before a new task is added. You can use the event.detail.value and event.detail.id to customize the new Task before adding it to the Kanban. Example: kanban.onTaskBeforeAdd = (event) => { const data = event.detail.value; const id = event.detail.id; event.detail.id = 'BG12';}
* @param event. The custom event. Custom event was created with: event.detail( value, id)
* value - The task data that is added to the Kanban.
* id - The task data id.
*/
this.onTaskBeforeAdd = new EventEmitter();
/** @description This event is triggered when a new task is added. Example: kanban.onTaskAdd = (event) => { const data = event.detail.value; const id = event.detail.id; }
* @param event. The custom event. Custom event was created with: event.detail( value, id)
* value - The task data that is added to the Kanban.
* id - The task data id.
*/
this.onTaskAdd = new EventEmitter();
/** @description This event is triggered when a task is removed.
* @param event. The custom event. Custom event was created with: event.detail( value, id)
* value - The task data that is removed from the Kanban.
* id - The task data id.
*/
this.onTaskRemove = new EventEmitter();
/** @description This event is triggered when a task is updated.
* @param event. The custom event. Custom event was created with: event.detail( value, oldValue, id)
* value - The task data that is updated.
* oldValue - The update task's old data.
* id - The task data id.
*/
this.onTaskUpdate = new EventEmitter();
/** @description This event is triggered when a task is clicked.
* @param event. The custom event. Custom event was created with: event.detail( value, id)
* value - The task data.
* id - The task data id.
*/
this.onTaskClick = new EventEmitter();
/** @description This event is triggered when a task is double clicked.
* @param event. The custom event. Custom event was created with: event.detail( value, id)
* value - The task data.
* id - The task data id.
*/
this.onTaskDoubleClick = new EventEmitter();
this.nativeElement = ref.nativeElement;
}
/** @description Creates the component on demand.
* @param properties An optional object of properties, which will be added to the template binded ones.
*/
createComponent(properties = {}) {
this.nativeElement = document.createElement('smart-kanban');
for (let propertyName in properties) {
this.nativeElement[propertyName] = properties[propertyName];
}
return this.nativeElement;
}
/** @description Enables or disables column reordering. When this property is set to true and allowDrag is enabled, users will be able to reoder columns through drag & drop. For example: Click and drag the first column's header and drop it over another column. */
get allowColumnReorder() {
return this.nativeElement ? this.nativeElement.allowColumnReorder : undefined;
}
set allowColumnReorder(value) {
this.nativeElement ? this.nativeElement.allowColumnReorder = value : undefined;
}
/** @description Enables or disables column editing. When this property is set to true, users will be able to dynamically change the column's header label by double clicking on it. */
get allowColumnEdit() {
return this.nativeElement ? this.nativeElement.allowColumnEdit : undefined;
}
set allowColumnEdit(value) {
this.nativeElement ? this.nativeElement.allowColumnEdit = value : undefined;
}
/** @description Enables or disables column removing. When this property is set to true, users will be able to dynamically remove a column through the column actions menu. the 'columnActions' property should be true. */
get allowColumnRemove() {
return this.nativeElement ? this.nativeElement.allowColumnRemove : undefined;
}
set allowColumnRemove(value) {
this.nativeElement ? this.nativeElement.allowColumnRemove = value : undefined;
}
/** @description Enables or disables column hiding. When this property is set to true, users will be able to dynamically hide a column through the column actions menu. the 'columnActions' property should be true. */
get allowColumnHide() {
return this.nativeElement ? this.nativeElement.allowColumnHide : undefined;
}
set allowColumnHide(value) {
this.nativeElement ? this.nativeElement.allowColumnHide = value : undefined;
}
/** @description Toggles the visibility of the column buttons for adding tasks. A particular button can be disabled by setting addNewButton in the column's definition to false. */
get addNewButton() {
return this.nativeElement ? this.nativeElement.addNewButton : undefined;
}
set addNewButton(value) {
this.nativeElement ? this.nativeElement.addNewButton = value : undefined;
}
/** @description Determines whether the add button is visible in the column header and/or after the tasks in the column. */
get addNewButtonDisplayMode() {
return this.nativeElement ? this.nativeElement.addNewButtonDisplayMode : undefined;
}
set addNewButtonDisplayMode(value) {
this.nativeElement ? this.nativeElement.addNewButtonDisplayMode = value : undefined;
}
/** @description Sets or gets whether a column with a button for adding new status columns to the Kanban will be displayed. */
get addNewColumn() {
return this.nativeElement ? this.nativeElement.addNewColumn : undefined;
}
set addNewColumn(value) {
this.nativeElement ? this.nativeElement.addNewColumn = value : undefined;
}
/** @description Sets the width of the add new column. The property is used, if the 'columnWidth' property is set, too. It specifies the width of the dynamic new column. */
get addNewColumnWidth() {
return this.nativeElement ? this.nativeElement.addNewColumnWidth : undefined;
}
set addNewColumnWidth(value) {
this.nativeElement ? this.nativeElement.addNewColumnWidth = value : undefined;
}
/** @description Allows the dragging of tasks. */
get allowDrag() {
return this.nativeElement ? this.nativeElement.allowDrag : undefined;
}
set allowDrag(value) {
this.nativeElement ? this.nativeElement.allowDrag = value : undefined;
}
/** @description Allows the dropping of tasks. */
get allowDrop() {
return this.nativeElement ? this.nativeElement.allowDrop : undefined;
}
set allowDrop(value) {
this.nativeElement ? this.nativeElement.allowDrop = value : undefined;
}
/** @description This property changes the visual appeal of the Kanban columns and tasks. When set to true and the Kanban columns have their 'color' property set, the color is also applied to the tasks and edit dialog. */
get applyColumnColorToTasks() {
return this.nativeElement ? this.nativeElement.applyColumnColorToTasks : undefined;
}
set applyColumnColorToTasks(value) {
this.nativeElement ? this.nativeElement.applyColumnColorToTasks = value : undefined;
}
/** @description Enables or disables auto load state from the browser's localStorage. Information about tasks and their position and selected state, filtering, sorting, collapsed columns, as well as the values of the properties taskActions, taskComments, taskDue, taskPriority, taskProgress, taskTags, and taskUserIcon is loaded. */
get autoLoadState() {
return this.nativeElement ? this.nativeElement.autoLoadState : undefined;
}
set autoLoadState(value) {
this.nativeElement ? this.nativeElement.autoLoadState = value : undefined;
}
/** @description Enables or disables auto save state to the browser's localStorage. Information about tasks and their position and selected state, filtering, sorting, collapsed columns, as well as the values of the properties taskActions, taskComments, taskDue, taskPriority, taskProgress, taskTags, and taskUserIcon is saved. */
get autoSaveState() {
return this.nativeElement ? this.nativeElement.autoSaveState : undefined;
}
set autoSaveState(value) {
this.nativeElement ? this.nativeElement.autoSaveState = value : undefined;
}
/** @description Automatically updates the columns height depending on the tasks inside the column. The effect of this property is observed when 'columnColorEntireSurface' is true. */
get autoColumnHeight() {
return this.nativeElement ? this.nativeElement.autoColumnHeight : undefined;
}
set autoColumnHeight(value) {
this.nativeElement ? this.nativeElement.autoColumnHeight = value : undefined;
}
/** @description Allows collapsing the card content. */
get collapsible() {
return this.nativeElement ? this.nativeElement.collapsible : undefined;
}
set collapsible(value) {
this.nativeElement ? this.nativeElement.collapsible = value : undefined;
}
/** @description Displays colors in the column header, when the column's color property is set. */
get columnColors() {
return this.nativeElement ? this.nativeElement.columnColors : undefined;
}
set columnColors(value) {
this.nativeElement ? this.nativeElement.columnColors = value : undefined;
}
/** @description Sets the Kanban columns width. When this property is set, the kanban columns width is set and a horizontal scrollbar may appear. */
get columnWidth() {
return this.nativeElement ? this.nativeElement.columnWidth : undefined;
}
set columnWidth(value) {
this.nativeElement ? this.nativeElement.columnWidth = value : undefined;
}
/** @description Displays background in the Kanban column. */
get columnColorEntireSurface() {
return this.nativeElement ? this.nativeElement.columnColorEntireSurface : undefined;
}
set columnColorEntireSurface(value) {
this.nativeElement ? this.nativeElement.columnColorEntireSurface = value : undefined;
}
/** @description Displays a column footer which shows the summary of the column. */
get columnFooter() {
return this.nativeElement ? this.nativeElement.columnFooter : undefined;
}
set columnFooter(value) {
this.nativeElement ? this.nativeElement.columnFooter = value : undefined;
}
/** @description Describes the columns properties. */
get columns() {
return this.nativeElement ? this.nativeElement.columns : undefined;
}
set columns(value) {
this.nativeElement ? this.nativeElement.columns = value : undefined;
}
/** @description Toggles the visibility of the column actions icon. */
get columnActions() {
return this.nativeElement ? this.nativeElement.columnActions : undefined;
}
set columnActions(value) {
this.nativeElement ? this.nativeElement.columnActions = value : undefined;
}
/** @description Determines whether task count information is displayed in column headers. */
get columnSummary() {
return this.nativeElement ? this.nativeElement.columnSummary : undefined;
}
set columnSummary(value) {
this.nativeElement ? this.nativeElement.columnSummary = value : undefined;
}
/** @description Determines whether a column header has a template. You can pass 'string', 'function' or HTMLTemplateElement as a value. */
get columnHeaderTemplate() {
return this.nativeElement ? this.nativeElement.columnHeaderTemplate : undefined;
}
set columnHeaderTemplate(value) {
this.nativeElement ? this.nativeElement.columnHeaderTemplate = value : undefined;
}
/** @description Determines the column edit behavior. With the 'header' option, edit starts on double click on the column's label. In 'menu' mode, edit is allowed from the 'columnActions' menu. In 'headerAndMenu' option, column editing includes both options. */
get columnEditMode() {
return this.nativeElement ? this.nativeElement.columnEditMode : undefined;
}
set columnEditMode(value) {
this.nativeElement ? this.nativeElement.columnEditMode = value : undefined;
}
/** @description Sets or gets the id of the current user. Has to correspond to the id of an item from the users property/array. Depending on the current user, different privileges are enabled. If no current user is set, privileges depend on the element's properties. */
get currentUser() {
return this.nativeElement ? this.nativeElement.currentUser : undefined;
}
set currentUser(value) {
this.nativeElement ? this.nativeElement.currentUser = value : undefined;
}
/** @description Sets or gets whether the default dialog for adding/removing tasks or comments is disabled. */
get disableDialog() {
return this.nativeElement ? this.nativeElement.disableDialog : undefined;
}
set disableDialog(value) {
this.nativeElement ? this.nativeElement.disableDialog = value : undefined;
}
/** @description Sets or gets a customization function for the dialog. This function can be used to customize the dialog look or to replace it. The Kanban calls this function with 5 arguments - 'dialog', 'taskOrComment', 'editors', 'purpose' and 'type'. The dialog is the 'smart-window' instance used as a default Kanban dialog. 'taskOrComment' is object which could be Kanban task or comment. 'purpose' could be 'add' or 'edit' and 'type' could be 'task' or 'column' depending on the action. */
get dialogCustomizationFunction() {
return this.nativeElement ? this.nativeElement.dialogCustomizationFunction : undefined;
}
set dialogCustomizationFunction(value) {
this.nativeElement ? this.nativeElement.dialogCustomizationFunction = value : undefined;
}
/** @description Sets or gets a function called when the dialog is rendered. The Kanban calls this function with 6 arguments - 'dialog', 'editors', 'labels', 'tabs', 'layout', 'taskOrComment'. The dialog is the 'smart-window' instance used as a default Kanban dialog. 'taskOrComment' is object which could be Kanban task or comment. 'editors', 'labels', 'tabs' and 'layout' are JSON objects with key which describes the element type and value which is HTML Element. */
get dialogRendered() {
return this.nativeElement ? this.nativeElement.dialogRendered : undefined;
}
set dialogRendered(value) {
this.nativeElement ? this.nativeElement.dialogRendered = value : undefined;
}
/** @description Determines the data source to be visualized in the kanban board. */
get dataSource() {
return this.nativeElement ? this.nativeElement.dataSource : undefined;
}
set dataSource(value) {
this.nativeElement ? this.nativeElement.dataSource = value : undefined;
}
/** @description Determines the the relation (mapping) between the Kanban's default fields (keywords) and the data fields from the data source. Not necessary if both match. Only some of the default mapping can be overwritten. */
get dataSourceMap() {
return this.nativeElement ? this.nativeElement.dataSourceMap : undefined;
}
set dataSourceMap(value) {
this.nativeElement ? this.nativeElement.dataSourceMap = value : undefined;
}
/** @description Determines the offset of the drag feedback element from the mouse cursor when dragging tasks. The first member of the array is the horizontal offset and the second one - the vertical offset. If set to 'auto', the offset is based on the mouse position when the dragging started. */
get dragOffset() {
return this.nativeElement ? this.nativeElement.dragOffset : undefined;
}
set dragOffset(value) {
this.nativeElement ? this.nativeElement.dragOffset = value : undefined;
}
/** @description Sets or gets whether tasks can be edited (including the assigning of users to tasks). */
get editable() {
return this.nativeElement ? this.nativeElement.editable : undefined;
}
set editable(value) {
this.nativeElement ? this.nativeElement.editable = value : undefined;
}
/** @description Sets or gets the format string of the "Due date" label and the "Start date" and "Due date" editors. */
get formatStringDate() {
return this.nativeElement ? this.nativeElement.formatStringDate : undefined;
}
set formatStringDate(value) {
this.nativeElement ? this.nativeElement.formatStringDate = value : undefined;
}
/** @description Sets or gets the format string of comments time stamp. */
get formatStringTime() {
return this.nativeElement ? this.nativeElement.formatStringTime : undefined;
}
set formatStringTime(value) {
this.nativeElement ? this.nativeElement.formatStringTime = value : undefined;
}
/** @description Sets or gets the header position. The header contains the Customize, Filter, Sort, and Search buttons. */
get headerPosition() {
return this.nativeElement ? this.nativeElement.headerPosition : undefined;
}
set headerPosition(value) {
this.nativeElement ? this.nativeElement.headerPosition = value : undefined;
}
/** @description Sets or gets the way column hierarchy is represented. */
get hierarchy() {
return this.nativeElement ? this.nativeElement.hierarchy : undefined;
}
set hierarchy(value) {
this.nativeElement ? this.nativeElement.hierarchy = value : undefined;
}
/** @description Sets or gets the locale. Used in conjunction with the property messages. */
get locale() {
return this.nativeElement ? this.nativeElement.locale : undefined;
}
set locale(value) {
this.nativeElement ? this.nativeElement.locale = value : undefined;
}
/** @description Sets or gets an object specifying strings used in the widget that can be localized. Used in conjunction with the property locale. */
get messages() {
return this.nativeElement ? this.nativeElement.messages : undefined;
}
set messages(value) {
this.nativeElement ? this.nativeElement.messages = value : undefined;
}
/** @description Callback function which can be used for customizing the tasks rendering. The Kanban calls it with 2 arguments - task html element and task data. */
get onTaskRender() {
return this.nativeElement ? this.nativeElement.onTaskRender : undefined;
}
set onTaskRender(value) {
this.nativeElement ? this.nativeElement.onTaskRender = value : undefined;
}
/** @description Callback function which can be used for customizing the filter items. The function is called with 1 argument - Array of items which will be displayed in the filter drop down. You can modify that array to remove or update items to filter by. */
get onFilterPrepare() {
return this.nativeElement ? this.nativeElement.onFilterPrepare : undefined;
}
set onFilterPrepare(value) {
this.nativeElement ? this.nativeElement.onFilterPrepare = value : undefined;
}
/** @description Callback function which can be used for customizing the sort items. The function is called with 1 argument - Array of items which will be displayed in the sort drop down. You can modify that array to remove or update items to sort by. */
get onSortPrepare() {
return this.nativeElement ? this.nativeElement.onSortPrepare : undefined;
}
set onSortPrepare(value) {
this.nativeElement ? this.nativeElement.onSortPrepare = value : undefined;
}
/** @description Callback function which can be used for customizing the column header rendering. The Kanban calls it with 3 arguments - column header html element and column data and column data field. */
get onColumnHeaderRender() {
return this.nativeElement ? this.nativeElement.onColumnHeaderRender : undefined;
}
set onColumnHeaderRender(value) {
this.nativeElement ? this.nativeElement.onColumnHeaderRender = value : undefined;
}
/** @description Callback function which can be used for customizing the column footer rendering. The Kanban calls it with 3 arguments - column header html element and column data and column data field. */
get onColumnFooterRender() {
return this.nativeElement ? this.nativeElement.onColumnFooterRender : undefined;
}
set onColumnFooterRender(value) {
this.nativeElement ? this.nativeElement.onColumnFooterRender = value : undefined;
}
/** @description Determines selection mode. */
get selectionMode() {
return this.nativeElement ? this.nativeElement.selectionMode : undefined;
}
set selectionMode(value) {
this.nativeElement ? this.nativeElement.selectionMode = value : undefined;
}
/** @description Sets or gets whether the tasks history will be stored and displayed in the task dialog. */
get storeHistory() {
return this.nativeElement ? this.nativeElement.storeHistory : undefined;
}
set storeHistory(value) {
this.nativeElement ? this.nativeElement.storeHistory = value : undefined;
}
/** @description Sets or gets the task history items that will be stored when storeHistory is enabled. */
get storeHistoryItems() {
return this.nativeElement ? this.nativeElement.storeHistoryItems : undefined;
}
set storeHistoryItems(value) {
this.nativeElement ? this.nativeElement.storeHistoryItems = value : undefined;
}
/** @description Sets or gets the value indicating whether the element is aligned to support locales using right-to-left fonts. */
get rightToLeft() {
return this.nativeElement ? this.nativeElement.rightToLeft : undefined;
}
set rightToLeft(value) {
this.nativeElement ? this.nativeElement.rightToLeft = value : undefined;
}
/** @description Sets or gets whether the edit dialog is displayed in readonly mode. In that mode it shows only the task details, but the editing is disabled. However, if comments are enabled, you will be able to add comments in the dialog. */
get readonly() {
return this.nativeElement ? this.nativeElement.readonly : undefined;
}
set readonly(value) {
this.nativeElement ? this.nativeElement.readonly = value : undefined;
}
/** @description Describes the swimlanes in the kanban board. Sub-columns are not applicable when swimlanes are present. */
get swimlanes() {
return this.nativeElement ? this.nativeElement.swimlanes : undefined;
}
set swimlanes(value) {
this.nativeElement ? this.nativeElement.swimlanes = value : undefined;
}
/** @description Sets or gets the index of the column at which to start the swimlanes. */
get swimlanesFrom() {
return this.nativeElement ? this.nativeElement.swimlanesFrom : undefined;
}
set swimlanesFrom(value) {
this.nativeElement ? this.nativeElement.swimlanesFrom = value : undefined;
}
/** @description Sets or gets the index of the column at which to end the swimlanes. By default, swimlanes end at the last column. */
get swimlanesTo() {
return this.nativeElement ? this.nativeElement.swimlanesTo : undefined;
}
set swimlanesTo(value) {
this.nativeElement ? this.nativeElement.swimlanesTo = value : undefined;
}
/** @description Sets or gets the allowed tags. If no tags are listed, all tags from the data source are allowed. */
get tags() {
return this.nativeElement ? this.nativeElement.tags : undefined;
}
set tags(value) {
this.nativeElement ? this.nativeElement.tags = value : undefined;
}
/** @description Toggles the visibility of the task actions icon. */
get taskActions() {
return this.nativeElement ? this.nativeElement.taskActions : undefined;
}
set taskActions(value) {
this.nativeElement ? this.nativeElement.taskActions = value : undefined;
}
/** @description Represents a callback function which is called when the task actions menu is created. The task actions element is passed as parameter and allows you to customize the menu. Example: (list) => { list.innerHTML = 'Custom Item'; list.onclick = () => { alert('clicked'); }} */
get taskActionsRendered() {
return this.nativeElement ? this.nativeElement.taskActionsRendered : undefined;
}
set taskActionsRendered(value) {
this.nativeElement ? this.nativeElement.taskActionsRendered = value : undefined;
}
/** @description Toggles the visibility of the task comments icon. */
get taskComments() {
return this.nativeElement ? this.nativeElement.taskComments : undefined;
}
set taskComments(value) {
this.nativeElement ? this.nativeElement.taskComments = value : undefined;
}
/** @description Toggles the visibility of the task due icon. */
get taskDue() {
return this.nativeElement ? this.nativeElement.taskDue : undefined;
}
set taskDue(value) {
this.nativeElement ? this.nativeElement.taskDue = value : undefined;
}
/** @description Sets or gets whether tasks can be shown in all levels of column hierarchy or only on leaf columns. */
get taskPosition() {
return this.nativeElement ? this.nativeElement.taskPosition : undefined;
}
set taskPosition(value) {
this.nativeElement ? this.nativeElement.taskPosition = value : undefined;
}
/** @description Toggles the visibility of the task priority icon (shown when priority is low or high). */
get taskPriority() {
return this.nativeElement ? this.nativeElement.taskPriority : undefined;
}
set taskPriority(value) {
this.nativeElement ? this.nativeElement.taskPriority = value : undefined;
}
/** @description Toggles the visibility of task progress bar and the completed sub-tasks label. */
get taskProgress() {
return this.nativeElement ? this.nativeElement.taskProgress : undefined;
}
set taskProgress(value) {
this.nativeElement ? this.nativeElement.taskProgress = value : undefined;
}
/** @description Sets the task custom fields displayed in the card. Each array item should have 'dataField', 'label' 'dataType' and optionally 'visible', 'image' and 'cover' properties. The 'dataField' determines the value, the label is displayed as title, 'dataType' is used for formatting and 'visible' determines whether the field will be displayed. If your string represents an image either URL or Base64, set image: true. If you want to display that image as a cover image, set cover:true, too. */
get taskCustomFields() {
return this.nativeElement ? this.nativeElement.taskCustomFields : undefined;
}
set taskCustomFields(value) {
this.nativeElement ? this.nativeElement.taskCustomFields = value : undefined;
}
/** @description The task's background color depends on the task's color property. By default the color is rendered within the task's left border. */
get taskColorEntireSurface() {
return this.nativeElement ? this.nativeElement.taskColorEntireSurface : undefined;
}
set taskColorEntireSurface(value) {
this.nativeElement ? this.nativeElement.taskColorEntireSurface = value : undefined;
}
/** @description Displays an input in the task's card for adding dynamically a sub task. The 'taskSubTasks' property should be set to a value different than 'none'. */
get taskSubTasksInput() {
return this.nativeElement ? this.nativeElement.taskSubTasksInput : undefined;
}
set taskSubTasksInput(value) {
this.nativeElement ? this.nativeElement.taskSubTasksInput = value : undefined;
}
/** @description Sets the rendering mode of sub tasks. 'none' - default value. Sub tasks are displayed only in the edit dialog. 'onePerRow' - all sub tasks are displayed in the task's card. 'onlyUnfinished' - only tasks which are not completed are displayed in the task's card. */
get taskSubTasks() {
return this.nativeElement ? this.nativeElement.taskSubTasks : undefined;
}
set taskSubTasks(value) {
this.nativeElement ? this.nativeElement.taskSubTasks = value : undefined;
}
/** @description Toggles the visibility of task tags. */
get taskTags() {
return this.nativeElement ? this.nativeElement.taskTags : undefined;
}
set taskTags(value) {
this.nativeElement ? this.nativeElement.taskTags = value : undefined;
}
/** @description Toggles the visibility of the task user icon. */
get taskUserIcon() {
return this.nativeElement ? this.nativeElement.taskUserIcon : undefined;
}
set taskUserIcon(value) {
this.nativeElement ? this.nativeElement.taskUserIcon = value : undefined;
}
/** @description Sets or gets a template to be applied to task text. Can be a string beginning with # and referencing the id of a template element on the page. Can also be a function that modifies the task text or the template itself. Finally, it can also be a string that will be parsed. */
get textTemplate() {
return this.nativeElement ? this.nativeElement.textTemplate : undefined;
}
set textTemplate(value) {
this.nativeElement ? this.nativeElement.textTemplate = value : undefined;
}
/** @description Determines the theme. Theme defines the look of the element */
get theme() {
return this.nativeElement ? this.nativeElement.theme : undefined;
}
set theme(value) {
this.nativeElement ? this.nativeElement.theme = value : undefined;
}
/** @description Determines whether the priority list (as defined by the priority property) will be shown when clicking the priority icon. Only applicable if editable privileges are enabled. */
get priorityList() {
return this.nativeElement ? this.nativeElement.priorityList : undefined;
}
set priorityList(value) {
this.nativeElement ? this.nativeElement.priorityList = value : undefined;
}
/** @description Determines the priority Kanban tasks can be assigned to. Example: [{label: 'low', value: 'low'}, {label: 'high', value: 'high'}] */
get priority() {
return this.nativeElement ? this.nativeElement.priority : undefined;
}
set priority(value) {
this.nativeElement ? this.nativeElement.priority = value : undefined;
}
/** @description Determines whether the user list (as defined by the users property) will be shown when clicking the user icon. Only applicable if editable privileges are enabled. */
get userList() {
return this.nativeElement ? this.nativeElement.userList : undefined;
}
set userList(value) {
this.nativeElement ? this.nativeElement.userList = value : undefined;
}
/** @description Determines the users Kanban tasks can be assigned to and their characteristics and privileges. */
get users() {
return this.nativeElement ? this.nativeElement.users : undefined;
}
set users(value) {
this.nativeElement ? this.nativeElement.users = value : undefined;
}
/** @description Adds filtering. Example: const filterGroup = new Smart.FilterGroup(); const filterObject = filterGroup.createFilter('string', 'Italy', 'contains'); filterGroup.addFilter('and', filterObject); kanban.addFilter([['Country', filterGroup]]);
* @param {any} filters. Filter information. Example: kanban.addFilter([['Country', filterGroup]]);. Each array item is a sub array with two items - 'dataField' and 'filterGroup' object. The 'dataField' is any valid data field from the data source bound to the Kanban like 'dueDate', 'startDate' or custom fields like 'Country'. Filter conditions which you can use in the expressions: '=', 'EQUAL','<>', 'NOT_EQUAL', '!=', '<', 'LESS_THAN','>', 'GREATER_THAN', '<=', 'LESS_THAN_OR_EQUAL', '>=', 'GREATER_THAN_OR_EQUAL','starts with', 'STARTS_WITH','ends with', 'ENDS_WITH', '', 'EMPTY', 'CONTAINS','DOES_NOT_CONTAIN', 'NULL','NOT_NULL'
* @param {string} operator?. Logical operator between the filters of different fields. Possible values are: 'and', 'or'.
*/
addFilter(filters, operator) {
if (this.nativeElement.isRendered) {
this.nativeElement.addFilter(filters, operator);
}
else {
this.nativeElement.whenRendered(() => {
this.nativeElement.addFilter(filters, operator);
});
}
}
/** @description Adds sorting. Example: kanban.addSort(['Country'], 'ascending');
* @param {[] | string} dataFields. The data field(s) to sort by
* @param {[] | string} orderBy. The sort direction(s) to sort the data field(s) by. Possible values are: 'ascending' and 'descending'.
*/
addSort(dataFields, orderBy) {
if (this.nativeElement.isRendered) {
this.nativeElement.addSort(dataFields, orderBy);
}
else {
this.nativeElement.whenRendered(() => {
this.nativeElement.addSort(dataFields, orderBy);
});
}
}
/** @description Adds a task to a Kanban column. If no data is specified, an empty task is added to the first column.
* @param {any} data?. An object containing the new task's data
*/
addTask(data) {
if (this.nativeElement.isRendered) {
this.nativeElement.addTask(data);
}
else {
this.nativeElement.whenRendered(() => {
this.nativeElement.addTask(data);
});
}
}
/** @description Adds a column to a Kanban. If no data is specified, an empty column is added.
* @param {any} data?. An object containing the new column's data
*/
addColumn(data) {
if (this.nativeElement.isRendered) {
this.nativeElement.addColumn(data);
}
else {
this.nativeElement.whenRendered(() => {
this.nativeElement.addColumn(data);
});
}
}
/** @description Begins an edit operation
* @param {number | string | HTMLElement} task. The task's id or corresponding HTMLElement
*/
beginEdit(task) {
if (this.nativeElement.isRendered) {
this.nativeElement.beginEdit(task);
}
else {
this.nativeElement.whenRendered(() => {
this.nativeElement.beginEdit(task);
});
}
}
/** @description Ends the current edit operation and discards changes
*/
cancelEdit() {
if (this.nativeElement.isRendered) {
this.nativeElement.cancelEdit();
}
else {
this.nativeElement.whenRendered(() => {
this.nativeElement.cancelEdit();
});
}
}
/** @description Closes any open header panel (drop down)
*/
closePanel() {
if (this.nativeElement.isRendered) {
this.nativeElement.closePanel();
}
else {
this.nativeElement.whenRendered(() => {
this.nativeElement.closePanel();
});
}
}
/** @description Collapses a Kanban column.
* @param {number | string} column. The index or dataField of the column to collapse
*/
collapse(column) {
if (this.nativeElement.isRendered) {
this.nativeElement.collapse(column);
}
else {
this.nativeElement.whenRendered(() => {
this.nativeElement.collapse(column);
});
}
}
/** @description Clears the Kanban's selection.
*/
clearSelection() {
if (this.nativeElement.isRendered) {
this.nativeElement.clearSelection();
}
else {
this.nativeElement.whenRendered(() => {
this.nativeElement.clearSelection();
});
}
}
/** @description Hides a Kanban column.
* @param {number | string} column. The index or dataField of the column to hide
*/
hide(column) {
if (this.nativeElement.isRendered) {
this.nativeElement.hide(column);
}
else {
this.nativeElement.whenRendered(() => {
this.nativeElement.hide(column);
});
}
}
/** @description Creates a copy of a task in the same column.
* @param {number | string | HTMLElement} task. The task's id or corresponding HTMLElement
*/
copyTask(task) {
if (this.nativeElement.isRendered) {
this.nativeElement.copyTask(task);
}
else {
this.nativeElement.whenRendered(() => {
this.nativeElement.copyTask(task);
});
}
}
/** @description Ends the current edit operation and saves changes
*/
endEdit() {
if (this.nativeElement.isRendered) {
this.nativeElement.endEdit();
}
else {
this.nativeElement.whenRendered(() => {
this.nativeElement.endEdit();
});
}
}
/** @description Makes sure a task is visible by scrolling to it. If succcessful, the method returns the HTML element of the task.
* @param {number | string | HTMLElement} task. The task's id or corresponding HTMLElement
* @returns {HTMLElement}
*/
ensureVisible(task) {
return tslib_1.__awaiter(this, void 0, void 0, function* () {
const getResultOnRender = () => {
return new Promise(resolve => {
this.nativeElement.whenRendered(() => {
const result = this.nativeElement.ensureVisible(task);
resolve(result);
});
});
};
const result = yield getResultOnRender();
return result;
});
}
/** @description Expands a Kanban column.
* @param {number | string} column. The index or dataField of the column to expand
*/
expand(column) {
if (this.nativeElement.isRendered) {
this.nativeElement.expand(column);
}
else {
this.nativeElement.whenRendered(() => {
this.nativeElement.expand(column);
});
}
}
/** @description Expands all Kanban columns.
*/
expandAll() {
if (this.nativeElement.isRendered) {
this.nativeElement.expandAll();
}
else {
this.nativeElement.whenRendered(() => {
this.nativeElement.expandAll();
});
}
}
/** @description Exports the Kanban's data.
* @param {string} dataFormat. The file format to export to. Supported formats: 'csv', 'html', 'json', 'pdf', 'tsv', 'xlsx', 'xml'.
* @param {string} fileName. The name of the file to export to
* @param {Function} callback?. A callback function to pass the exported data to (if fileName is not provided)
* @returns {any}
*/
exportData(dataFormat, fileName, callback) {
return tslib_1.__awaiter(this, void 0, void 0, function* () {
const getResultOnRender = () => {
return new Promise(resolve => {
this.nativeElement.whenRendered(() => {
const result = this.nativeElement.exportData(dataFormat, fileName, callback);
resolve(result);
});
});
};
const result = yield getResultOnRender();
return result;
});
}
/** @description Gets the data of a column. The returned value is a JSON object with the following fields: 'label', 'dataField', 'collapsed', 'collapsible', 'allowRemove', 'editable', 'reorder', 'orientation'.
* @param {string} dataField. The column's data field
* @returns {any}
*/
getColumn(dataField) {
return tslib_1.__awaiter(this, void 0, void 0, function* () {
const getResultOnRender = () => {
return new Promise(resolve => {
this.nativeElement.whenRendered(() => {
const result = this.nativeElement.getColumn(dataField);
resolve(result);
});
});
};
const result = yield getResultOnRender();
return result;
});
}
/** @description Gets the data of a task. The returned value is a JSON object with the following fields: 'checklist', 'id', 'color', 'comments', 'history', 'dueDate', 'startDate', 'priority', 'progress', 'status', 'swimlane', 'tags', 'text', 'description', 'userId', 'createdUserId', 'createdDate', 'updatedUserId', 'updatedDate'
* @param {number} id. The task's id
* @returns {any}
*/
getTask(id) {
return tslib_1.__awaiter(this, void 0, void 0, function* () {
const getResultOnRender = () => {
return new Promise(resolve => {
this.nativeElement.whenRendered(() => {
const result = this.nativeElement.getTask(id);
resolve(result);
});
});
};
const result = yield getResultOnRender();
return result;
});
}
/** @description Gets the selected ids. The returned value is an array. Each item in the array is the 'id' of a selected task.
* @param {number} id. The task's id
* @returns {any}
*/
getSelectedTasks(id) {
return tslib_1.__awaiter(this, void 0, void 0, function* () {
const getResultOnRender = () => {
return new Promise(resolve => {
this.nativeElement.whenRendered(() => {
const result = this.nativeElement.getSelectedTasks(id);
resolve(result);
});
});
};
const result = yield getResultOnRender();
return result;
});
}
/** @description Gets the Kanban's state.
* @returns {{ collapsed: {}, dataSource: [], filtering: { filters: [], operator: string }, selection: { selected: [], selectionStart: number | string, selectionInColumn: string, swimlane: string }, sorting: { dataFields: [], dataTypes: [], orderBy: [] }, tabs: [], visibility: { taskActions: boolean, taskComments: boolean, taskDue: boolean, taskPriority: boolean, taskProgress: boolean, taskTags: boolean, taskUserIcon: boolean } }}
*/
getState() {
return tslib_1.__awaiter(this, void 0, void 0, function* () {
const getResultOnRender = () => {
return new Promise(resolve => {
this.nativeElement.whenRendered(() => {
const result = this.nativeElement.getState();
resolve(result);
});
});
};
const result = yield getResultOnRender();
return result;
});
}
/** @description Loads the Kanban's state.
* @param {{ collapsed: {}, dataSource: [], filtering: { filters: [], operator: string }, selection: { selected: [], selectionStart?: number | string, selectionInColumn: string, swimlane: string }, sorting: { dataFields: [], dataTypes: [], orderBy: [] }, tabs: [], visibility: { taskActions: boolean, taskComments: boolean, taskDue: boolean, taskPriority: boolean, taskProgress: boolean, taskTags: boolean, taskUserIcon: boolean } }} state?. An object returned by one of the methods getState or saveState. If not passed, gets saved state from the browser's localStorage.
*/
loadState(state) {
if (this.nativeElement.isRendered) {
this.nativeElement.loadState(state);
}
else {
this.nativeElement.whenRendered(() => {
this.nativeElement.loadState(state);
});
}
}
/** @description Moves a task to a different column.
* @param {number | string | HTMLElement} task. The task's id or corresponding HTMLElement
* @param {string} newStatus. The new status of the task (its new column's dataField)