Menu
Nadzweb.com
Nadzweb.com

Angular 2 – writing a custom filter

Posted on August 22, 2016 by admin

Filter Pipes are important to filter data based on filter arguments.
Below is a custom filter for Angular2 which filters data based on id given.

import { Pipe, PipeTransform } from '@angular/core';

@Pipe({name: 'boxFilter'})
export class FilterBoxes implements PipeTransform {
  transform(boxes: any[], args: any): any {
    return boxes.filter(box=> box.id.indexOf(args) !== -1);
  }
}

Usage:

Usage in Angular2 template.

let results = [
{ id: 'one', res: 'one-one', value: 'one-one-one' },
{ id: 'one', res: 'two-two', value: 'two-two-two' },
{ id: 'three', res: 'three-three', value: 'three-three-three' }
]; 

<ul>
   // filter the above results where id = 'one', this will return 2 resultset.
   <li *ngFor="let result of results | boxFilter:'one'"> 
    {{result.res}} - {{result.value}}
   <li>
</ul>

Hope this is beneficial to the readers! 🙂

  • angular2
  • angular2-filters
  • angular2-pipes
  • Leave a Reply Cancel reply

    Your email address will not be published. Required fields are marked *

    *
    To prove you're a person (not a spam script), type the security word shown in the picture. Click on the picture to hear an audio file of the word.
    Anti-spam image

    Tags

    .htaccess angular angular2 angular2-pipes angular4 angularjs apache bigdata blockchain children codeigniter computer graphics ethereum flot flot charts funny hadoop http javascript jquery kanban lena linux love math mathematics microsoft misc node js php phpframework php frameworks postgres pun-intended python react sass scrum scss silverstripe software ssl story valentines day wordpress

    Archives

    Recent Posts

    • Install only Postgres client 11 on Ubuntu 18.04
    • PostgreSQL – Granting access to users
    • Querying JSONB Postgres fields in SQLAlchemy
    • Angular – Writing unit tests for setTimeout in functions
    • Angular 6 – getting previous url from angular router
    ©2021 Nadzweb.com | Powered by WordPress & Superb Themes