Simple angular pipe that allows you to filter arrays of objects and simple arrays by a given text.
This angular universal filter pipe is able to filter by any field in your array of objects and can even ignore the accent marks or upercase/lowercase text.
Originally filter pipe based on solodynamo/ng2-search-filter, please do check his project.
-
Install the pipe to your project.
npm i @josee9988/filter-pipe-ngx --save
-
Import the pipe to your
app.module.ts
.import {FilterModule} from '@josee9988/filter-pipe-ngx';
-
Declare and initialize the pipe to your project.
// rest of your imports here... @NgModule({ imports: [ // in the imports section FilterModule, // add the pipe to your declarations // rest of the code ...
Example of other integration in another web.
Check the stackblitz example or simply click the above image!
import {Component} from '@angular/core';
@Component({
selector: 'app-example-filter-pipe-products',
template: `
<!-- Input in which you will filter your products (you array) -->
<input type="text" [(ngModel)]="searchText">
<!-- Display your data and filter it by your input -->
<div *ngFor = "let arrayItem of yourArrayToBeFiltered | filterPipe:searchText">
<!-- Every object that matches the filter (if there is any filter) will be shown -->
<p>Name: {{arrayItem.name}}, Inventory: {{arrayItem.inventory}}, price: {{arrayItem.price}}</p>
</div>`
})
export class ExampleFilterPipeProducts {
yourArrayToBeFiltered: any[] = [
{name: 'chair', inventory: 5, price: 45.99},
{name: 'table', inventory: 10, price: 123.75},
{name: 'sofa', inventory: 2, price: 399.50},
{name: 'bed', inventory: 4, price: 592.12}];
searchText: string;
}
For deeper information about angular pipes check the oficial documentation.
This project is actively looking for new contributors to develop new functions, maintain and improve the project. If you are interested make sure to fork the project and pull-request your improvements to be added as a contributor!
Check the npm page with the package.
Made with a lot of โค๏ธโค๏ธ by @Josee9988