1.0.0 • Published 6 years ago
ngx-pipe-search-by v1.0.0
ngx-pipe-search-by
Search in array of object by property
Arguments
| Param | Type | Default | Details |
|---|---|---|---|
| collection | Array | - | The collection to filter |
| searchWord | string | - | String to search |
| propertiesSearch | Array<string> | - | Property to look for. Examples: [name], [name, client.name, client.pet.name] |
| sensitive | boolean | true | Case sensitive |
Install
npm install ngx-pipe-search-by --saveUsage
Import PipeSearchByModule to your module
import { NgModule } from "@angular/core";
import { BrowserModule } from "@angular/platform-browser";
import { AppComponent } from "./app";
import { PipeSearchByModule } from "ngx-pipe-search-by";
@NgModule({
imports: [BrowserModule, PipeSearchByModule],
declarations: [AppComponent],
bootstrap: [AppComponent]
})
export class AppModule {}In HTML Template
<div
*ngFor="let item of collection | searchBy: searchWord: propertiesSearch: sensitive"
>
<!-- HERE HTML -->
</div>1.0.0
6 years ago
0.0.1-beta.6
6 years ago
0.0.1-beta.5
6 years ago
0.0.1-beta.4
6 years ago
0.0.1-beta.3
6 years ago
0.0.1-beta.2
6 years ago
0.0.1-beta.1
6 years ago
0.0.1-beta.0
6 years ago