-
Notifications
You must be signed in to change notification settings - Fork 0
/
treeMisc.html
138 lines (112 loc) · 3.54 KB
/
treeMisc.html
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
https://github.com/pgrabovets/json-view/
https://github.com/Mohammed9531/angular-checkbox-tree-grid
https://mohammed9531.github.io/angular-checkbox-tree-grid/demo/index.html
https://github.com/mlrv/ng-material-treetable
https://angularscript.com/angular-material-tree-table-component/
https://www.geeksforgeeks.org/angular-material-tree/
CSS
table {
width: 100%;
}
HTML
<table mat-table [dataSource]="dataSource" class="mat-elevation-z8">
<ng-container matColumnDef="name">
<th mat-header-cell *matHeaderCellDef>
<span [style.paddingLeft.px]="40"> Name </span>
</th>
<td mat-cell *matCellDef="let data">
<button mat-icon-button
[style.visibility]="!data.expandable ? 'hidden' : ''"
[style.marginLeft.px]="data.level * 32"
(click)="treeControl.toggle(data)">
<mat-icon class="mat-icon-rtl-mirror">
{{treeControl.isExpanded(data) ? 'expand_more' : 'chevron_right'}}
</mat-icon>
</button>
{{data.name}}
</td>
</ng-container>
<ng-container matColumnDef="count">
<th mat-header-cell *matHeaderCellDef> Count </th>
<td mat-cell *matCellDef="let data"> {{data.count}} </td>
</ng-container>
<tr mat-header-row *matHeaderRowDef="displayedColumns"></tr>
<tr mat-row *matRowDef="let row; columns: displayedColumns;"></tr>
</table>
<!-- Copyright 2018 Google Inc. All Rights Reserved.
Use of this source code is governed by an MIT-style license that
can be found in the LICENSE file at http://angular.io/license -->
SCRIPT
import {FlatTreeControl} from '@angular/cdk/tree';
import {Component} from '@angular/core';
import {MatTreeFlatDataSource, MatTreeFlattener} from '@angular/material/tree';
interface FoodNode {
name: string;
count?: number;
children?: FoodNode[];
}
const TREE_DATA: FoodNode[] = [
{
name: 'Fruit',
children: [
{name: 'Apple', count: 10},
{name: 'Banana', count: 20},
{name: 'Fruit loops', count: 30},
]
}, {
name: 'Vegetables',
children: [
{
name: 'Green',
children: [
{name: 'Broccoli', count: 10},
{name: 'Brussel sprouts', count: 20},
]
}, {
name: 'Orange',
children: [
{name: 'Pumpkins', count: 30},
{name: 'Carrots', count: 40},
]
},
]
},
];
interface ExampleFlatNode {
expandable: boolean;
name: string;
count: number;
level: number;
}
/**
* @title Basic use of `<table mat-table>`
*/
@Component({
selector: 'table-basic-example',
styleUrls: ['table-basic-example.css'],
templateUrl: 'table-basic-example.html',
})
export class TableBasicExample {
displayedColumns: string[] = ['name', 'count'];
private transformer = (node: FoodNode, level: number) => {
return {
expandable: !!node.children && node.children.length > 0,
name: node.name,
count: node.count,
level: level,
};
}
treeControl = new FlatTreeControl<ExampleFlatNode>(
node => node.level, node => node.expandable);
treeFlattener = new MatTreeFlattener(
this.transformer, node => node.level,
node => node.expandable, node => node.children);
dataSource = new MatTreeFlatDataSource(this.treeControl, this.treeFlattener);
constructor() {
this.dataSource.data = TREE_DATA;
}
hasChild = (_: number, node: ExampleFlatNode) => node.expandable;
}
/** Copyright 2018 Google Inc. All Rights Reserved.
Use of this source code is governed by an MIT-style license that
can be found in the LICENSE file at http://angular.io/license */