Understanding Generics with RxJS

Shane Osbourne
InstructorShane Osbourne
Share this video with your friends

Social Share Links

Send Tweet
Published 8 years ago
Updated 5 years ago

Libraries such as RxJS use generics heavily in their definition files to describe how types flow through different interfaces and function calls. We can provide our own type information when we create Observables to enable all of the auto-complete & type-safety features that you would expect from Typescript. This can be achieved with minimal annotations thanks to the power of generics.

[00:00] Generics allow types to flow through your program. It's one of the most important things you can learn about TypeScript. Libraries such as RxJS use generics heavily, let's look at how they do it, but more importantly, why?

[00:15] Let's create an observable that will produce a value every second. Then, if we subscribe to that and try to log it to the console, you can see in the overlay there that TypeScript knows that parameter X here is a number. How exactly does it know that? It's not like we've provided any type information here.

[00:38] For example, if we did this, then we would expect TypeScript to know it's a number, because we've told it so. How is this working? It's not some kind of magic, it's simply due to the power of generics, but to fully understand this, we're going to have to dive into the type definition files that RxJS ships with.

[00:58] If we search for interval, we can see that the first parameter should be a number like this, which is exactly how we called it. But the important part is the return type, here, we return observable of type number.

[01:17] Let's just copy this line into our code so we can start to understand this. This line here returns an observable of type number. Then, we call subscribe on this observable, how does this number get into this subscribe method?

[01:34] Let's go back to the definition file, and this time search for subscribe. Here is the observable interface, we know it's a generic interface by the use of these two brackets and the capital T here.

[01:52] You can think of the T here as simply a placeholder for a type. In our case, we said we were returning an observable of type number so that now any methods that are designed inside this block can re-use this type in their signatures, then, it all starts coming together.

[02:10] If you look at the second definition of the subscribe method, which is the one we're using, in which we pass a fallback function as the first parameter, this is the onNext method, you can see when that callback is called, it will receive a single parameter which is of type T.

[02:28] This is what I mean, why I say that the types flow through the program? Because the observable interface has declared itself as generic, it takes a single generic type, that allows that type to be used throughout all of its methods. That's how TypeScript can give us type information on this parameter without any annotations.

[02:49] As you can see, this is an incredibly powerful feature. This is just pure JavaScript, we haven't written any annotations of type information, and we're getting all the auto-complete and type safety that we would expect from TypeScript. This works because RX ships with its own definition files.

[03:08] How can we get the same type safety with observables that we create ourselves? First, let's create an observable as you would if you were wrapping some kind of external service. We use the create method, that takes a function that has an observer, and we'll just produce a single value from this stream.

[03:31] The value will just be an object literal with two properties, "path," which will be a string, and "event," which will also be a string.

[03:41] Now, if we subscribe to this, and then try to log it to the console, when we type x., you see we get no type information, no auto-complete, even though we know for a fact that this is the object literal that's coming through and it will have the path and event properties. Now, it's up to us to teach TypeScript about the shape of this object literal.

[04:10] Let's first model it with an interface, and we'll call it "fileEvent." It has a path which is a string, and we'll say that the event can be either add or change. Now, to use the type information from this interface, we could actually put it on the parameter here. This will give you the auto-complete and type checking that you're expecting.

[04:38] The problem here is that if you have multiple subscribers you don't want to have to keep repeating this annotation everywhere in your code, let's find a better place for this. We could actually annotate the object literal directly, like this, what's interesting about this technique is that it will provide type checking on this object literal.

[05:02] For example, we would have to provide either add or change as a string here, that works, but you can see that even when this is correct, we still don't get the type information on this down here. This isn't appropriate, and this is where we can utilize generics. We can actually do it in two ways here.

[05:21] First, the observer that is given here is actually itself a generic interface, if we go back to the type definitions and search for observer, you can see that if a type is given when it's used, that type flows through this interface into the onNext method as you see here. We can annotate this parameter to say that it's an Rx observer of type fileEvent.

[05:55] There we have the best of both worlds. We have type checking on this method call, and the type also flows through the system so that we get auto-complete and type checking on properties within the subscribe method.

[06:08] That's one way to use generics to solve this problem, but in this case, what we should really do is provide it at the highest level you can. In this case, you can provide the type information directly when you call the create method.

[06:22] We can put here "fileEvent," and that will work. We have a single annotation here, a single interface, for the amount of help that this gives us is incredible.

[06:34] We can never make a typo in here, or send the wrong string value, and because we're utilizing generics, we can continue to get the same help even later on in our code in different methods without providing any extra annotations.

[06:50] To recap, create is a generic function which means we can pass a type when we call it. Then, thanks to the type definitions that are provided by the RxJS library, this type can now flow into the observer as you can see here, it enables type safety on the onNext method, and even makes it all the way through to the subscribe method.

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