⚠️ This lesson is retired and might contain outdated information.

Filter actions to exclude empty values

Shane Osbourne
InstructorShane Osbourne
Share this video with your friends

Social Share Links

Send Tweet
Published 6 years ago
Updated a year ago

Although ‘epics’ in RxJS are often described as ‘actions in, actions out’, there may be times when you need to ‘bail out’ of an action, or to just ignore the current one given some condition. By learning about RxJS’s filter Operator, we’ll see how easy it is to do ‘nothing’ when you need to. We’ll also see how the composition techniques available in RXJS allow us to control the UI in a declarative manner.

Instructor: [00:01] This application has a bug. If we search for "ship" here, you can see it made a network request, appending the search term as the query parameter be a name. If we delete all of the characters here, we get an error. The API has returned an error saying there are invalid query parameters.

[00:27] If we look here, we can see it's because we're not sending anything through. That's because on the input field, we just have this on-change handler. We are calling search every single time the value changes, regardless of what it is. When we delete all of the characters, it's the equivalent of calling that.

[00:46] That means in our epic, we call this search helper function, which appends the search term to the end of this. It ends up being an empty string. You might be tempted to add some logic in here to prevent this search function being called if this doesn't have a value.

[01:09] For example, you could open this up. You could start putting if statements in here, checking the value before you call it. That's not the Rx way. Instead, we are viewing the values coming out of this input field as simply a stream of values.

[01:26] Another way to think about this is that this input field is simply a data source. If we want to filter this data source, we can do that through composition. Back here in the epic, you can see we're already filtering this action stream with this of type. Then we're applying a debounce to drop any values that occur within 500 milliseconds of each other.

[01:47] Directly after that, we can apply a filter. Import that from RxJS operators. Then we get access to the action here. We can destructure the payload, then provide our own predicate. In this case, we're just going to trim the string and then check it's not equal to an empty string.

[02:08] You may have much more complicated filtering logic, which can be placed in a separate file or in a different function, since this is a pure function. This will do for this demo. That single line will prevent any search actions that have an empty payload from making it into the switch map, which is responsible for doing the side effect.

[02:26] If we check this in the browser, we can search for "ship" just like we did before. If we delete all the characters, nothing will happen. We can continue searching as normal.

egghead
egghead
~ 5 minutes ago

Member comments are a way for members to communicate, interact, and ask questions about a lesson.

The instructor or someone from the community might respond to your question Here are a few basic guidelines to commenting on egghead.io

Be on-Topic

Comments are for discussing a lesson. If you're having a general issue with the website functionality, please contact us at support@egghead.io.

Avoid meta-discussion

  • This was great!
  • This was horrible!
  • I didn't like this because it didn't match my skill level.
  • +1 It will likely be deleted as spam.

Code Problems?

Should be accompanied by code! Codesandbox or Stackblitz provide a way to share code and discuss it in context

Details and Context

Vague question? Vague answer. Any details and context you can provide will lure more interesting answers!

Markdown supported.
Become a member to join the discussionEnroll Today