Я сделал простое приложение CRUD, теперь мне нужно добавить панель поиска, которая фильтрует мою таблицу и показывает строки с теми же буквами, что и цифры.
Я не знаю, что делатьв моем компоненте я видел разные вещи с каналами и фильтрами, но я не мог адаптировать их к своему проекту.
Я хотел бы знать, есть ли метод, который я могу реализовать в моем component.ts без созданияновый.
COMPONENT.HTML
<div class="container">
<ul class="table-wrapper">
<div class="table-title">
<div class="row">
<div class="col-sm-4">
<button *ngIf="metadata && metadata.addMD" (click)="addFunc(metadata)">{{metadata.addMD.label}}</button>
<div class="show-entries">
<span>Show</span>
<label>
<select [(ngModel)]="pageSize">
<option *ngFor="let maxPerPage of rowsOnPageSet"
(click)="maxElements(maxPerPage)">{{maxPerPage}}</option>
</select>
</label>
<span>users</span>
</div>
</div>
<div class="col-sm-4">
<h2 class="text-center">Users <b>Details</b></h2>
</div>
<div class="col-sm-4">
<div class="search-box">
<div class="input-group">
<span class="input-group-addon"><i class="material-icons"></i></span>
--> //HERE I HAVE TO ADD THE FUNCTION OR SOMETHING ELSE
<input type="text" class="form-control" [(ngModel)]="searchVal"
(ngModelChange)='checkSearchVal()' placeholder="Search…">
</div>
</div>
</div>
</div>
</div>
<table class="table table-bordered">
<thead>
<tr>
<th *ngFor="let col of columns" (click)="sortTable(col)">{{col}}
<i *ngIf="col === columnSorted && !direction" class="material-icons">keyboard_arrow_up</i>
<i *ngIf="col === columnSorted && direction" class="material-icons">keyboard_arrow_down</i>
</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
<tr *ngFor="let user of users | paginate: {itemsPerPage: pageSize,
currentPage: page,
totalItems: users.length}">
<td *ngFor="let col of columns">{{user[col]}}</td>
<td>
<button [ngClass]="getClassCondition(act.actionType)" *ngFor="let act of actions"
(click)="actionFunc(act, user)">{{act.label}}</button>
</td>
</tr>
</tbody>
</table>
<div align="center">
<!--<div class="hint-text">Showing <b>{{totUsersPerPage}}</b> out of <b>{{users.length}}</b> entries</div>-->
<ul align="center">
<pagination-controls (pageChange)="pageChanged($event)"></pagination-controls>
</ul>
</div>
</ul>
</div>
COMPONENT.TS, здесь я должен создать правильный метод, который работает для моего приложения.
export class DynamicTableComponent implements OnInit {
constructor(private userService: UserService,
private resourcesService: ResourcesService,
private router: Router) {
}
@Input()
users = [];
@Input()
columns: string[];
@Input()
actions = [];
@Input()
metadata: any;
@Input()
class;
direction = false;
columnSorted = '';
public rowsOnPageSet = ['5', '10', '15', '20', '25'];
page = 1;
private pageSize = 5;
searchVal = '';
/*totalPages = Math.trunc(this.users.length / this.pageSize);
totUsersPerPage = this.pageSize;*/
ngOnInit() {
}
actionFunc(action, element: any) {
if (action.actionType === 'DELETE') {
/*...*/
}
}
if (action.actionType === 'GO_TO') {
/*...*/
}
}
addFunc(metadata) {
if (metadata.addMD.actionType === 'ADD_TO') {
/*...*/
}
}
maxElements(maxPerPage) {
this.rowsOnPageSet = maxPerPage;
}
sortTable(param) {
/*...*/
}
getClassCondition(act) {
return act === 'DELETE' ? this.class = 'btn btn-danger' : 'btn btn-primary';
}
pageChanged($event: number) {
/*...*/
}
checkSearchVal() {
this.users.slice();
const filteredUsers: User[] = [];
if (this.searchVal && this.searchVal !== '') {
for (const selectedUser of this.users) {
if (selectedUser.firstName.toLowerCase().search(this.searchVal.toLowerCase()) !== -1 ||
selectedUser.lastName.toLowerCase().search(this.searchVal.toLowerCase()) !== -1) {
filteredUsers.push(selectedUser);
}
}
this.users = filteredUsers.slice();
}
}
}
DATAСТРУКТУРА: in.memory-data.service.ts
import { InMemoryDbService } from 'angular-in-memory-web-api';
import { User } from './user';
import { Injectable } from '@angular/core';
export const COLUMNS = ['id', 'firstName', 'lastName', 'age'];
@Injectable({
providedIn: 'root',
})
export class InMemoryDataService implements InMemoryDbService {
createDb() {
const USERS = [
{id: 1, firstName: 'Sergio', lastName: 'Rios', age: 23},
{id: 2, firstName: 'Alessandro', lastName: 'Amodeo', age: 23},
{id: 3, firstName: 'Antonio', lastName: 'Vitolo', age: 23},
{id: 4, firstName: 'Andrea', lastName: 'Bellati', age: 24},
{id: 5, firstName: 'Yvette', lastName: 'Arevalo Godier', age: 42},
{id: 6, firstName: 'Federico', lastName: 'Belloni', age: 41},
{id: 7, firstName: 'Claudio', lastName: 'Tornese', age: 24},
{id: 8, firstName: 'Diana', lastName: 'Budascu', age: 25},
{id: 9, firstName: 'Veronica', lastName: 'Moreira', age: 25},
{id: 10, firstName: 'Sirak', lastName: 'Guida', age: 25},
{id: 11, firstName: 'Marina', lastName: 'Righetti', age: 22},
{id: 12, firstName: 'Giorgia', lastName: 'Secchi', age: 22},
{id: 13, firstName: 'Simone', lastName: 'Bocallari', age: 24},
];
return {USERS};
}
}
user.ts
export class User {
id: number;
firstName: string;
lastName: string;
age: number;
}