blob: 19edbcd098a76c519cf8fa945ec2d13000b5dc38 (
plain)
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
|
import {Component, EventEmitter, Input, Output} from "@angular/core";
import {IDType, ITreeNode} from "angular-tree-component/dist/defs/api";
import * as _ from 'lodash';
@Component({
selector: 'search-component',
templateUrl: './search.component.html',
styleUrls: ['./search.component.scss']
})
export class SearchComponent {
@Input() tree;
@Input() nodes;
@Input() inputTestId: string;
@Output() updateNodes: EventEmitter<any> = new EventEmitter();
searchTree(searchText: string): void {
if(_.isNil(searchText)){
return;
}
let __this = this;
let results: ITreeNode[] = [];
this.nodes.forEach( (node) => {
__this.searchTreeNode(node, searchText, results);
});
results.forEach(function (result) {
__this.expandParentByNodeId(result.id)
});
this.updateNodes.emit({
nodes: this.nodes,
filterValue: searchText
});
return;
}
expandParentByNodeId(id: IDType): void {
this.tree.treeModel.getNodeById(id).parent.expand();
}
searchTreeNode(node, searchText: string, results): void {
if (node.name.toLowerCase().indexOf(searchText.toLowerCase()) != -1) {
results.push(node);
}
if (node.children != null) {
for (let i = 0; i < node.children.length; i++) {
this.searchTreeNode(node.children[i], searchText, results);
}
}
}
}
|