-
Notifications
You must be signed in to change notification settings - Fork 190
/
tree.ts
657 lines (566 loc) · 21 KB
/
tree.ts
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
import { defaultsDeep, get, has, includes, isEmpty, isFunction, isNil, omit, once, size, trim } from './utils/fn.utils';
import {
ChildrenLoadingFunction,
FoldingType,
RenamableNode,
TreeModel,
TreeModelSettings,
TreeStatus
} from './tree.types';
import { NodeMenuItem } from './menu/node-menu.component';
import * as uuidv4 from 'uuid/v4';
import { Observable, Observer, of } from 'rxjs';
enum ChildrenLoadingState {
NotStarted,
Loading,
Completed
}
export class Tree {
private _children: Tree[];
private _loadChildren: ChildrenLoadingFunction;
private _childrenLoadingState: ChildrenLoadingState = ChildrenLoadingState.NotStarted;
private _childrenAsyncOnce: () => Observable<Tree[]> = once(() => {
return new Observable((observer: Observer<Tree[]>) => {
setTimeout(() => {
this._childrenLoadingState = ChildrenLoadingState.Loading;
this._loadChildren((children: TreeModel[]) => {
this._children = (children || []).map((child: TreeModel) => new Tree(child, this));
this._childrenLoadingState = ChildrenLoadingState.Completed;
observer.next(this.children);
observer.complete();
});
});
});
});
public node: TreeModel;
public parent: Tree;
// STATIC METHODS ----------------------------------------------------------------------------------------------------
/**
* Check that value passed is not empty (it doesn't consist of only whitespace symbols).
* @param {string} value - A value that should be checked.
* @returns {boolean} - A flag indicating that value is empty or not.
* @static
*/
public static isValueEmpty(value: string): boolean {
return isEmpty(trim(value));
}
/**
* Check whether a given value can be considered RenamableNode.
* @param {any} value - A value to check.
* @returns {boolean} - A flag indicating whether given value is Renamable node or not.
* @static
*/
public static isRenamable(value: any): value is RenamableNode {
return (
has(value, 'setName') &&
isFunction(value.setName) &&
(has(value, 'toString') && isFunction(value.toString) && value.toString !== Object.toString)
);
}
private static cloneTreeShallow(origin: Tree): Tree {
const tree = new Tree(Object.assign({}, origin.node));
tree._children = origin._children;
return tree;
}
private static applyNewValueToRenamable(value: RenamableNode, newValue: string): RenamableNode {
const renamableValue: RenamableNode = Object.assign({}, value as RenamableNode);
renamableValue.setName(newValue);
return renamableValue;
}
/**
* Build an instance of Tree from an object implementing TreeModel interface.
* @param {TreeModel} model - A model that is used to build a tree.
* @param {Tree} [parent] - An optional parent if you want to build a tree from the model that should be a child of an existing Tree instance.
* @param {boolean} [isBranch] - An option that makes a branch from created tree. Branch can have children.
*/
public constructor(node: TreeModel, parent: Tree = null, isBranch: boolean = false) {
this.buildTreeFromModel(node, parent, isBranch || Array.isArray(node.children));
}
private buildTreeFromModel(model: TreeModel, parent: Tree, isBranch: boolean): void {
this.parent = parent;
this.node = Object.assign(
omit(model, 'children') as TreeModel,
{ settings: TreeModelSettings.merge(model, get(parent, 'node')) },
{ emitLoadNextLevel: model.emitLoadNextLevel === true }
) as TreeModel;
if (isFunction(this.node.loadChildren)) {
this._loadChildren = this.node.loadChildren;
} else {
get(model, 'children', []).forEach((child: TreeModel, index: number) => {
this._addChild(new Tree(child, this), index);
});
}
if (!Array.isArray(this._children)) {
this._children = this.node.loadChildren || isBranch ? [] : null;
}
}
public hasDeferredChildren(): boolean {
return typeof this._loadChildren === 'function';
}
/* Setting the children loading state to Loading since a request was dispatched to the client */
public loadingChildrenRequested(): void {
this._childrenLoadingState = ChildrenLoadingState.Loading;
}
/**
* Check whether children of the node are being loaded.
* Makes sense only for nodes that define `loadChildren` function.
* @returns {boolean} A flag indicating that children are being loaded.
*/
public childrenAreBeingLoaded(): boolean {
return this._childrenLoadingState === ChildrenLoadingState.Loading;
}
/**
* Check whether children of the node were loaded.
* Makes sense only for nodes that define `loadChildren` function.
* @returns {boolean} A flag indicating that children were loaded.
*/
public childrenWereLoaded(): boolean {
return this._childrenLoadingState === ChildrenLoadingState.Completed;
}
private canLoadChildren(): boolean {
return (
this._childrenLoadingState === ChildrenLoadingState.NotStarted &&
this.foldingType === FoldingType.Expanded &&
!!this._loadChildren
);
}
/**
* Check whether children of the node should be loaded and not loaded yet.
* Makes sense only for nodes that define `loadChildren` function.
* @returns {boolean} A flag indicating that children should be loaded for the current node.
*/
public childrenShouldBeLoaded(): boolean {
return !this.childrenWereLoaded() && (!!this._loadChildren || this.node.emitLoadNextLevel === true);
}
/**
* Get children of the current tree.
* @returns {Tree[]} The children of the current tree.
*/
public get children(): Tree[] {
return this._children;
}
/**
* By getting value from this property you start process of loading node's children using `loadChildren` function.
* Once children are loaded `loadChildren` function won't be called anymore and loaded for the first time children are emitted in case of subsequent calls.
* @returns {Observable<Tree[]>} An observable which emits children once they are loaded.
*/
public get childrenAsync(): Observable<Tree[]> {
if (this.canLoadChildren()) {
return this._childrenAsyncOnce();
}
return of(this.children);
}
/**
* By calling this method you start process of loading node's children using `loadChildren` function.
*/
public reloadChildren(): void {
if (this.childrenShouldBeLoaded()) {
this._childrenLoadingState = ChildrenLoadingState.Loading;
this._loadChildren((children: TreeModel[]) => {
this._children = children && children.map((child: TreeModel) => new Tree(child, this));
this._childrenLoadingState = ChildrenLoadingState.Completed;
});
}
}
/**
* By calling this method you will remove all current children of a treee and create new.
*/
public setChildren(children: Array<TreeModel>): void {
this._children = children && children.map((child: TreeModel) => new Tree(child, this));
if (this.childrenShouldBeLoaded()) {
this._childrenLoadingState = ChildrenLoadingState.Completed;
}
}
/**
* Create a new node in the current tree.
* @param {boolean} isBranch - A flag that indicates whether a new node should be a "Branch". "Leaf" node will be created by default
* @param {TreeModel} model - Tree model of the new node which will be inserted. Empty node will be created by default and it will fire edit mode of this node
* @returns {Tree} A newly created child node.
*/
public createNode(isBranch: boolean, model: TreeModel = { value: '' }): Tree {
const tree = new Tree(model, this, isBranch);
if (!model.id) {
tree.markAsNew();
}
tree.id = tree.id || uuidv4();
if (this.childrenShouldBeLoaded() && !(this.childrenAreBeingLoaded() || this.childrenWereLoaded())) {
return null;
}
if (this.isLeaf()) {
return this.addSibling(tree);
} else {
return this.addChild(tree);
}
}
/**
* Get the value of the current node
* @returns {(string|RenamableNode)} The value of the node.
*/
public get value(): any {
return this.node.value;
}
public set checked(checked: boolean) {
this.node.settings = Object.assign({}, this.node.settings, { checked });
}
public get checked(): boolean {
return !!get(this.node.settings, 'checked');
}
public get checkedChildren(): Tree[] {
return this.hasLoadedChildern() ? this.children.filter(child => child.checked) : [];
}
public set selectionAllowed(selectionAllowed: boolean) {
this.node.settings = Object.assign({}, this.node.settings, { selectionAllowed });
}
public get selectionAllowed(): boolean {
const value = get(this.node.settings, 'selectionAllowed');
return isNil(value) ? true : !!value;
}
hasLoadedChildern() {
return !isEmpty(this.children);
}
loadedChildrenAmount() {
return size(this.children);
}
checkedChildrenAmount() {
return size(this.checkedChildren);
}
/**
* Set the value of the current node
* @param {(string|RenamableNode)} value - The new value of the node.
*/
public set value(value: any) {
if (typeof value !== 'string' && !Tree.isRenamable(value)) {
return;
}
const stringifiedValue = '' + value;
if (Tree.isRenamable(this.value)) {
this.node.value = Tree.applyNewValueToRenamable(this.value as RenamableNode, stringifiedValue);
} else {
this.node.value = Tree.isValueEmpty(stringifiedValue) ? this.node.value : stringifiedValue;
}
}
/**
* Add a sibling node for the current node. This won't work if the current node is a root.
* @param {Tree} sibling - A node that should become a sibling.
* @param [number] position - Position in which sibling will be inserted. By default it will be inserted at the last position in a parent.
* @returns {Tree} A newly inserted sibling, or null if you are trying to make a sibling for the root.
*/
public addSibling(sibling: Tree, position?: number): Tree {
if (Array.isArray(get(this.parent, 'children'))) {
return this.parent.addChild(sibling, position);
}
return null;
}
/**
* Add a child node for the current node.
* @param {Tree} child - A node that should become a child.
* @param [number] position - Position in which child will be inserted. By default it will be inserted at the last position in a parent.
* @returns {Tree} A newly inserted child.
*/
public addChild(child: Tree, position?: number): Tree {
const newborn = this._addChild(Tree.cloneTreeShallow(child), position);
this._setFoldingType();
if (this.isNodeCollapsed()) {
this.switchFoldingType();
}
return newborn;
}
private _addChild(child: Tree, position: number = size(this._children) || 0): Tree {
child.parent = this;
if (Array.isArray(this._children)) {
this._children.splice(position, 0, child);
} else {
this._children = [child];
}
return child;
}
/**
* Swap position of the current node with the given sibling. If node passed as a parameter is not a sibling - nothing happens.
* @param {Tree} sibling - A sibling with which current node shold be swapped.
*/
public swapWithSibling(sibling: Tree): void {
if (!this.hasSibling(sibling)) {
return;
}
const siblingIndex = sibling.positionInParent;
const thisTreeIndex = this.positionInParent;
this.parent._children[siblingIndex] = this;
this.parent._children[thisTreeIndex] = sibling;
}
/**
* Get a node's position in its parent.
* @returns {number} The position inside a parent.
*/
public get positionInParent(): number {
if (this.isRoot()) {
return -1;
}
return this.parent.children ? this.parent.children.indexOf(this) : -1;
}
/**
* Check whether or not this tree is static.
* @returns {boolean} A flag indicating whether or not this tree is static.
*/
public isStatic(): boolean {
return get(this.node.settings, 'static', false);
}
/**
* Check whether or not this tree has a left menu.
* @returns {boolean} A flag indicating whether or not this tree has a left menu.
*/
public hasLeftMenu(): boolean {
return !get(this.node.settings, 'static', false) && get(this.node.settings, 'leftMenu', false);
}
/**
* Check whether or not this tree has a right menu.
* @returns {boolean} A flag indicating whether or not this tree has a right menu.
*/
public hasRightMenu(): boolean {
return !get(this.node.settings, 'static', false) && get(this.node.settings, 'rightMenu', false);
}
/**
* Check whether this tree is "Leaf" or not.
* @returns {boolean} A flag indicating whether or not this tree is a "Leaf".
*/
public isLeaf(): boolean {
return !this.isBranch();
}
/**
* Get menu items of the current tree.
* @returns {NodeMenuItem[]} The menu items of the current tree.
*/
public get menuItems(): NodeMenuItem[] {
return get(this.node.settings, 'menuItems');
}
/**
* Check whether or not this tree has a custom menu.
* @returns {boolean} A flag indicating whether or not this tree has a custom menu.
*/
public hasCustomMenu(): boolean {
return !this.isStatic() && !!get(this.node.settings, 'menuItems', false);
}
/**
* Check whether this tree is "Branch" or not. "Branch" is a node that has children.
* @returns {boolean} A flag indicating whether or not this tree is a "Branch".
*/
public isBranch(): boolean {
return this.node.emitLoadNextLevel === true || Array.isArray(this._children);
}
/**
* Check whether this tree has children.
* @returns {boolean} A flag indicating whether or not this tree has children.
*/
public hasChildren(): boolean {
return !isEmpty(this._children) || this.childrenShouldBeLoaded();
}
/**
* Check whether this tree is a root or not. The root is the tree (node) that doesn't have parent (or technically its parent is null).
* @returns {boolean} A flag indicating whether or not this tree is the root.
*/
public isRoot(): boolean {
return isNil(this.parent);
}
/**
* Check whether provided tree is a sibling of the current tree. Sibling trees (nodes) are the trees that have the same parent.
* @param {Tree} tree - A tree that should be tested on a siblingness.
* @returns {boolean} A flag indicating whether or not provided tree is the sibling of the current one.
*/
public hasSibling(tree: Tree): boolean {
return !this.isRoot() && includes(this.parent.children, tree);
}
/**
* Check whether provided tree is a child of the current tree.
* This method tests that provided tree is a <strong>direct</strong> child of the current tree.
* @param {Tree} tree - A tree that should be tested (child candidate).
* @returns {boolean} A flag indicating whether provided tree is a child or not.
*/
public hasChild(tree: Tree): boolean {
return includes(this._children, tree);
}
/**
* Remove given tree from the current tree.
* The given tree will be removed only in case it is a direct child of the current tree (@see {@link hasChild}).
* @param {Tree} tree - A tree that should be removed.
*/
public removeChild(tree: Tree): void {
if (!this.hasChildren()) {
return;
}
const childIndex = this._children.findIndex((child: Tree) => child === tree);
if (childIndex >= 0) {
this._children.splice(childIndex, 1);
}
this._setFoldingType();
}
/**
* Remove current tree from its parent.
*/
public removeItselfFromParent(): void {
if (!this.parent) {
return;
}
this.parent.removeChild(this);
}
/**
* Switch folding type of the current tree. "Leaf" node cannot switch its folding type cause it doesn't have children, hence nothing to fold.
* If node is a "Branch" and it is expanded, then by invoking current method state of the tree should be switched to "collapsed" and vice versa.
*/
public switchFoldingType(): void {
if (this.isLeaf() || !this.hasChildren()) {
return;
}
this.disableCollapseOnInit();
this.node._foldingType = this.isNodeExpanded() ? FoldingType.Collapsed : FoldingType.Expanded;
}
/**
* Check that tree is expanded.
* @returns {boolean} A flag indicating whether current tree is expanded. Always returns false for the "Leaf" tree and for an empty tree.
*/
public isNodeExpanded(): boolean {
return this.foldingType === FoldingType.Expanded;
}
/**
* Check that tree is collapsed.
* @returns {boolean} A flag indicating whether current tree is collapsed. Always returns false for the "Leaf" tree and for an empty tree.
*/
public isNodeCollapsed(): boolean {
return this.foldingType === FoldingType.Collapsed;
}
/**
* Set a current folding type: expanded, collapsed or leaf.
*/
private _setFoldingType(): void {
if (this.childrenShouldBeLoaded()) {
this.node._foldingType = FoldingType.Collapsed;
} else if (this._children && !isEmpty(this._children)) {
this.node._foldingType = this.isCollapsedOnInit() ? FoldingType.Collapsed : FoldingType.Expanded;
} else if (Array.isArray(this._children)) {
this.node._foldingType = FoldingType.Empty;
} else {
this.node._foldingType = FoldingType.Leaf;
}
}
/**
* Get a current folding type: expanded, collapsed or leaf.
* @returns {FoldingType} A folding type of the current tree.
*/
public get foldingType(): FoldingType {
if (!this.node._foldingType) {
this._setFoldingType();
}
return this.node._foldingType;
}
/**
* Get a css class for element which displayes folding state - expanded, collapsed or leaf
* @returns {string} A string icontaining css class (classes)
*/
public get foldingCssClass(): string {
return this.getCssClassesFromSettings() || this.foldingType.cssClass;
}
private getCssClassesFromSettings(): string {
if (!this.node._foldingType) {
this._setFoldingType();
}
if (this.node._foldingType === FoldingType.Collapsed) {
return get(this.node.settings, 'cssClasses.collapsed', null);
} else if (this.node._foldingType === FoldingType.Expanded) {
return get(this.node.settings, 'cssClasses.expanded', null);
} else if (this.node._foldingType === FoldingType.Empty) {
return get(this.node.settings, 'cssClasses.empty', null);
}
return get(this.node.settings, 'cssClasses.leaf', null);
}
/**
* Get a html template to render before every node's name.
* @returns {string} A string representing a html template.
*/
public get nodeTemplate(): string {
return this.getTemplateFromSettings();
}
private getTemplateFromSettings(): string {
if (this.isLeaf()) {
return get(this.node.settings, 'templates.leaf', '');
} else {
return get(this.node.settings, 'templates.node', '');
}
}
/**
* Get a html template to render for an element activatin left menu of a node.
* @returns {string} A string representing a html template.
*/
public get leftMenuTemplate(): string {
if (this.hasLeftMenu()) {
return get(this.node.settings, 'templates.leftMenu', '<span></span>');
}
return '';
}
public disableCollapseOnInit() {
if (this.node.settings) {
this.node.settings.isCollapsedOnInit = false;
}
}
public isCollapsedOnInit() {
return !!get(this.node.settings, 'isCollapsedOnInit');
}
public keepNodesInDOM() {
return get(this.node.settings, 'keepNodesInDOM');
}
/**
* Check that current tree is newly created (added by user via menu for example). Tree that was built from the TreeModel is not marked as new.
* @returns {boolean} A flag whether the tree is new.
*/
public isNew(): boolean {
return this.node._status === TreeStatus.New;
}
public get id(): number | string {
return get(this.node, 'id');
}
public set id(id: number | string) {
this.node.id = id;
}
/**
* Mark current tree as new (@see {@link isNew}).
*/
public markAsNew(): void {
this.node._status = TreeStatus.New;
}
/**
* Check that current tree is being renamed (it is in the process of its value renaming initiated by a user).
* @returns {boolean} A flag whether the tree is being renamed.
*/
public isBeingRenamed(): boolean {
return this.node._status === TreeStatus.IsBeingRenamed;
}
/**
* Mark current tree as being renamed (@see {@link isBeingRenamed}).
*/
public markAsBeingRenamed(): void {
this.node._status = TreeStatus.IsBeingRenamed;
}
/**
* Check that current tree is modified (for example it was renamed).
* @returns {boolean} A flag whether the tree is modified.
*/
public isModified(): boolean {
return this.node._status === TreeStatus.Modified;
}
/**
* Mark current tree as modified (@see {@link isModified}).
*/
public markAsModified(): void {
this.node._status = TreeStatus.Modified;
}
/**
* Makes a clone of an underlying TreeModel instance
* @returns {TreeModel} a clone of an underlying TreeModel instance
*/
public toTreeModel(): TreeModel {
const model = defaultsDeep(this.isLeaf() ? {} : { children: [] }, this.node);
if (this.children) {
this.children.forEach(child => {
model.children.push(child.toTreeModel());
});
}
return model;
}
}