Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

ngconf-search

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ngconf-search

Angular Library to provide Search Feature to Angular apps.

  • 0.0.7
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
2
Maintainers
1
Weekly downloads
 
Created
Source

NgxSearch Library

This project was generated with Angular CLI version 10.0.5.

ngconf-search Search Feature for Angular.

Stackblitz Demo

Step - 1

npm i ngconf-search --save
NPM Package Link

import NgconfSearchModule in app.module.ts file.
app.module.ts

import {NgconfSearchModule} from 'ngconf-search';
 imports: [
    NgconfSearchModule
  ]

Step - 2

Declare two global variables term,prop in app.component.ts file.
term is to for binding search term of user.
prop is for search based on specific property of array. app.component.ts

 testArray:any = [];
 term:any = "";
 prop:any = "";

app.component.html

<input type="text" [(ngModel)]="term" [value]="term" placeholder="Search">
<div *ngIf="testArray.length>0">
   <div *ngFor="let item of testArray | searchFilter: { term: term, prop: prop }" >
      {{item.name}} || {{item.phno}} 
   </div>
   
</div>

Argument Configuration

Prop can be left with empty string if you want search based on all fields. If you want search based on specific field a dropdown can be binded to prop
and result change according to user input to dropdown.

export interface opt {
  term: string;
  prop: string;
}

That's it you are good to go. Happy Coding :)

Keywords

FAQs

Package last updated on 06 Aug 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc