File

src/pipes/search/search.pipe.ts

Description

A custom Angular pipe for filtering an array of objects based on a search string.

Example :
// In your component template:
// Assuming 'items' is an array of objects and 'searchTerm' is a string.
<ul>
  <li *ngFor="let item of items | search: searchTerm">{{ item.name }}</li>
</ul>

Metadata

Methods

transform
transform(value: any, search: string)

Transforms an array of objects by filtering based on a search string.

Parameters :
Name Type Optional Description
value any No
  • The array of objects to filter.
search string No
  • The search string to filter by.
Returns : any
  • The filtered array of objects.
import { Pipe, PipeTransform } from '@angular/core'

/**
 * A custom Angular pipe for filtering an array of objects based on a search string.
 *
 * @example
 * // In your component template:
 * // Assuming 'items' is an array of objects and 'searchTerm' is a string.
 * <ul>
 *   <li *ngFor="let item of items | search: searchTerm">{{ item.name }}</li>
 * </ul>
 *
 * @param {any[]} value - The array of objects to filter.
 * @param {string} search - The search string to filter by.
 * @returns {any[]} - The filtered array of objects.
 */

@Pipe({ name: 'search' })
export class SearchPipe implements PipeTransform {
  /**
   * Transforms an array of objects by filtering based on a search string.
   *
   * @param {any[]} value - The array of objects to filter.
   * @param {string} search - The search string to filter by.
   * @returns {any[]} - The filtered array of objects.
   */
  transform(value: any, search: string): any {
    if (!search) {
      return value
    }
    if (!value) {
      return ''
    }

    const solution = value?.filter((v: any) => {
      if (!v) {
        return false
      }
      return JSON.stringify(v).toLowerCase().indexOf(search.toLowerCase()) > -1
    })

    return solution
  }
}

results matching ""

    No results matching ""