Ionic "Pipe not found"

Posted: February 13, 2021 | Categories: Ionic Framework

I'm building a web app using Ionic and needed a Pipe to transform some data for the app. I'm implementing a CSV file import process and I wanted to display each CSV row as a comma separated list after I'd imported all of it into a JSON object. My goal was to display the list for the user to make sure that the CSV Parsing process worked correctly before completing the import.

it's a pretty simple Pipe, just mapping the object values into a comma-separated list:

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

@Pipe({ name: 'commaObject' })

export class CommaObjectPipe implements PipeTransform {

  transform(value: unknown, ...args: unknown[]): unknown {
    return Object.keys(value).map((k) => value[k]).join(', ');
  }
}

I found a couple of tutorials and followed them, but I couldn't get it to work. I thought I was doing it right, but apparently not. Every time I tested the app, I received a Pipe not found error.

When you create a pipe using the Ionic CLI, it automatically updates the project's app.module.ts file with the pipe, but that doesn't work. I got some help from the Ionic Forums and figured it out. You have to undo the CLI's changes to the app.module.ts file and put them in the module file for the page using the pipe. I built a complete sample application that highlights how to build a custom pipe, you can find the app on GitHub.

If this post helps you in some way, please consider buying me a coffee.