Use Lifecycle Events with Functional Components with Inferno

Josh Burgess
InstructorJosh Burgess
Share this video with your friends

Social Share Links

Send Tweet
Published 7 years ago
Updated 5 years ago

Inferno is an insanely fast, 9kb React-like library for building high-performance user interfaces on both the client & server. Outside of performance, Inferno also offers some nice features that aren't currently available in React, like the ability to use lifecycle events with stateless/pure functional components, which is great for people who prefer functions over classes. In this lesson, we demonstrate how this is accomplished.

[00:00] Here we have a boilerplate app generated by the create-inferno-app CLI tool. This is just a normal starter project meant to get you up and running with some generated code and a functioning build system. This is pretty much the same thing you'd get with React's create-react-app CLI.

[00:18] Here in index.js, not much is going on. We're just importing render from Inferno, our app component from app.js in the same directory, and some basic styling from index.css. We're just using the render function to mount our app component to a div with the ID app, and render it to the screen.

[00:38] Now, let's switch over to app.js, and we see that we're using an ES6 class component, just like you would React, only it comes from a separate package called Inferno component when using Inferno. That's just because the Inferno team wanted to keep Inferno's core a little bit smaller and more focused.

[00:57] Another thing to make note of here is this constant call to welcome, which is just a string using ES6 string interpolation to print out a welcome message containing the current version of Inferno. That version is just coming from a named export called version from the Inferno core package.

[01:15] We can see that this welcome message is being used in two separate places in this file. It's directly being used as the inner text of an H2 header that gets rendered at the top of the page, and it's also being passed to an alert in the body of this arrow function called mounted.

[01:33] That mounted function is being used in the componentDidMount life cycle method of our app component. This is a really simple and straightforward way to demonstrate using life cycle events, but it's perfectly fine for our use case here.

[01:46] Let's go ahead and edit some text here in this P tag and save the app so that the hot reloading triggers a rerender. We'll see that componentDidMount is firing, and we're getting a welcome message alert as expected.

[02:00] Now, let's delete this class component, and just paste in basically the same thing in the form of a stateless functional component. The only real difference here is that now we no longer have that active life cycle method, but we're about to change that.

[02:14] First, let's come up here to the top and delete this class component import, because we're no longer using it. Then over here in our browser, let's switch from our app to the Inferno docs for a moment.

[02:25] There's two important things to notice here. In the table we see a list of supported life cycle methods with names very similar to class component life cycle methods, but they're all prefixed with the word on.

[02:38] Below the table this highlighted text says that functional life cycle events must be explicitly assigned via props. If we look down here where their example functional component is being used, we see that onComponentDidMount is being set within the JSX, just like any other prop would be.

[02:57] Let's go ahead and switch back to our app to try this out. First, we need to export this mounted function as a named export to make it available where we're actually using this app component.

[03:09] Then let's switch back over to index.js. Just like we saw in the docs, we simply type onComponentDidMount here as a prop, and assign it our mounted function.

[03:23] We'll briefly see an error here, because I haven't imported mounted yet. Let's fix that, and then save the file. It looks like the alert message fired, and the life cycle event is working, but let's switch back over to app.js to test it again, just to be sure.

[03:40] Just like earlier with the class component, we can edit the text in this P tag, and save the file so that hot reloading triggers a rerender on save. As expected, the alert message fired again right after the app component mounted.

[03:55] This is how all life cycle methods work with functional components in Inferno. It's a really nice feature for people who prefer working with functions over classes. This isn't currently possible in React without using a higher order component library, like Recompose.

egghead
egghead
~ an hour 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