-
Notifications
You must be signed in to change notification settings - Fork 4.2k
/
Copy pathcomponent.ts
37 lines (31 loc) · 1.11 KB
/
component.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
import {Component, Input} from '@angular/core';
import {MatTableDataSource} from '@angular/material/table';
import {MatPaginator} from '@angular/material/paginator';
import {MatSort} from '@angular/material/sort';
import {ViewChild} from '@angular/core';
@Component({
selector: 'kd-environment-variables',
templateUrl: './template.html',
styleUrls: ['./style.scss'],
})
export class EnvironmentVariablesComponent {
@Input() variables: {name: string; value: string}[] = [];
@ViewChild(MatPaginator) paginator: MatPaginator;
@ViewChild(MatSort) sort: MatSort;
displayedColumns: string[] = ['name', 'value'];
dataSource: MatTableDataSource<{name: string; value: string}>;
ngOnInit() {
this.dataSource = new MatTableDataSource(this.variables);
}
ngAfterViewInit() {
this.dataSource.paginator = this.paginator;
this.dataSource.sort = this.sort;
}
applyFilter(event: Event) {
const filterValue = (event.target as HTMLInputElement).value;
this.dataSource.filter = filterValue.trim().toLowerCase();
if (this.dataSource.paginator) {
this.dataSource.paginator.firstPage();
}
}
}