Use the filter and pairwise operators to determine when to show and hide the spinner

Rares Matei
InstructorRares Matei
Share this video with your friends

Social Share Links

Send Tweet
Published 4 years ago
Updated 3 years ago

Having access now to an observable that tells us when the in-progress task count changes, we will use it to create two even more specialized streams that will bring us close to solving our initial problem: an event stream that fires when we need to show the spinner and another that fires when we need to hide it. We will be using the pairwise and filter operators.

Instructor: [0:00] We solved this problem, and now we can move up one floor of obstruction. I'll copy this to our source page, and I'll copy this comment over here just to mark that we're moving up one level of obstruction in our code as well. We're building an observable that's going to answer this question. Let's name it accordingly.

[0:22] When the count of async tasks goes, we'll start with our current load count, and once that goes to , we want to emit. I'll pipe this to the filter operator and we'll just go to the top and import it and it's only going to let values through that are . We don't care that this emits . We don't care what it emits. We just care when it emits because that's the time to hide the spinner.

[0:46] Let's pick our second requirement. I'll just paste it here. Now we'll build an observable that answers this question and we'll name it Should Show Spinner. Again, we need to listen to the count, and we'll pipe this to a filter function again that will only let emissions go through when the load is 1.

[1:05] This is not right because we can go from a count of 2 to a count of 1 and then this will emit but that doesn't really mean that we have to show it. It's already showing. This part is important. We need to keep track of the previous value as well as the current one and only emit when the previous is and the current is 1.

[1:26] This is not going to work as it is. Filter only works with the current value. How do we keep track of the previous? Well, scan is one option, right? It allows us to keep track of previous state, but RxJS has a lot of operators that are named well.

[1:41] If we can pretend for a moment that we just looked through the RxJS API, we notice that we can import the pairwise operator. If I go back and add it, we'll see that it emits a [inaudible] of the previous and the current value. We're just going to use some destructuring here to get the previous and the current count from pairwise.

[2:01] Even though we could have done this with scan, with pairwise we signal our intent much better to other developers reading this. The more operators we know, the bigger the chance that we're going to find a nicely named obstruction that signifies intent much better than a custom solution.

egghead
egghead
~ 2 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