Skip to content

Creating Custom RxJS Operators

Posted on:February 26, 2023 at 07:00 PM

pawel-czerwinski-ywiowhvrbvu-unsplash.jpg

Since Angular has become a popular framework, RxJS is becoming increasingly popular. In this post I would like to write about a very nice feature in this fantastic library: custom operators!

A few months ago I have been trying to keep the chaining logic more readable in my RxJS code. It’s very easy to write confusing code when we don’t pay attention to how the operators are being composed.

In this post, I would like to show how to write an RxJS code using custom operators to keep the logic readable and easier to maintain over time.

Table of contents

Open Table of contents

How to create a custom operator? 🤔

It’s very easy, really!

An RxJS operator is just a function that receives an observable as a parameter and returns a new observable.

For instance:

Generally, it’s common to create factory operators (operators that return another function), because it’ll become more intuitive for the developers to understand the operators’ chain.

Here’s an example of a factory operator:

Now, let’s see some examples of how to use custom operators to create more readable code!

Creating an operator to filter odd numbers 🦄

It’s simple to filter odd numbers, isn’t it?

But creating a custom operator to name it’ll become your code cleaner and more obvious. The readability will improve.

Let’s see the code:

Creating an operator to search by text 🕵🏾‍♂️

Searching by text into an array might be easy, but generally doing it with RxJS turns the code a bit hard to understand over time.

But, before using a custom operator, let’s see how the code would look when not using custom operators:

It’s not impossible to understand the code logic, but it’s difficult to get what it’s doing when taking a quick look.

Because of that, naming the code logic is important.

That said, let’s refactor the code above using custom operators:

toLowerCase and searchByText are operators that can be used to reuse the code, and it’s much easier to understand what they’re doing.

Conclusion 🥷

Using custom operators can help us to make the code more readable and easier to reuse across the projects.

It was a quick post about custom operators. That feature is helping me a lot to enforce the reusability in my Angular projects.

Thank you for reading! ✨