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

Build fully reactive APIs in Angular 2 with Observables

Share this video with your friends

Social Share Links

Send Tweet
Published 8 years ago
Updated 2 months ago

In this video you'll learn how Observables can improve the overall API design by designing APIs that accept Observables as arguments

[00:00] Now that we've built an instant search that deals with all this tricky stuff, wouldn't it be actually better if we had a smarter Wikipedia search service that would handle all these details behinds the scenes?

[00:10] As a component outdoor, I shouldn't have to worry about debalancing, deduplicating, and dealing with out of order responses. Because observables are first class objects, we can put APIs that not only return observables, but also accept observables as arguments. Let's make our Wikipedia search service smarter.

[00:26] We'll keep the search method, but rename it raw search. We'll build a smarter one on top of it. We call the smarter one simply search, and it accepts two arguments. We name the first one terms, but instead of being a simple string, it's an observable of string. The second one we call debalance MS, and it gets a default value of 100.

[00:45] We'll use that to configure the debalancing but allow the caller to override the default value. We also have to write another import to pull in the observable type. We import that one from axjs/observable.

[00:59] Inside our new search method, we just paste all the observable apparatus that we previously used from inside out component to apply them on top of the terms observable that we get past as an argument. I switched my panhandler to invoke the URL search method, and remove the subscribe part.

[01:17] Now we jump back to our component, and here we can use our smarter search service. We invoked this search method which now expects us to pass an observable of string as its first parameter, and we have that. It's this dot term which is the raw, unprocessed observable from our text box.

[01:33] Then we subscribe to the observable, and we get access to the results which are on area of strings just as before. We exposed them on the items property of our component, and then we remove all the rest of the code that the component doesn't have to care about anymore.

[01:48] Once the browser's ready, let's see if it still works. I can type. It's still debalancing. It handles out of order responses, and it's all nicely hidden behind a service.

Vitalie Andries
Vitalie Andries
~ 7 years ago

Hi, could you help me with a hint (code are always welcome) how to and another operator (which?) to hold the request (like debounceTime did) until e.g. term.length is > 2.

Thank you.

Andrei Ivanovici
Andrei Ivanovici
~ 7 years ago

Really nice quick course, thank you :). As a last step in the refactoring, maybe we can use the observable directly in the template, using the async pipe. I think that cleans to code eve further and also deals with managing the subscription in our component

vtechmonkey
vtechmonkey
~ 7 years ago

I had to add => to the search function

search = (terms: Observable<string>, debounceMs = 400)=>{
  	return terms
  	.debounceTime(400)
  	.distinctUntilChanged()
  	.switchMap (term => this.rawSearch(term));
  }
Markdown supported.
Become a member to join the discussionEnroll Today