JSX is a powerful extension to JavaScript that allows us to define UI components. But it doesn’t support loops or conditional expressions directly (although the addition of conditional expressions has been discussed before).
If you want to iterate over a list to render more than one component or implement some conditional logic, you have to use pure Javascript. You don’t have a lot of options with looping either. Most of the time,
map
will cover your needs.
But conditional expressions?
That’s another story.
You’ve got options
There’s more than one way to use conditional expressions in React. And, as with most things in programming, some are better suited than others depending on the problem you’re trying to solve.
This tutorial covers the most popular conditional renderings methods:
- If/Else
- Prevent rendering with
null
- Element variables
- Ternary operator
- Short-circuit operator (&& )
- Immediately-Invoked Function Expressions (IIFE)
- Subcomponents
- High Order Components (HOCs)
As an example of how all these methods work, a component with a view/edit functionality will be implemented:
You can try and fork all the examples in JSFiddle.
Let’s start with the most naive implementation using an if/else block and build it from there.
If/else
Let’s create a component with the following state:
You’ll use one property for the saved text and another one or the text that is being edited. A third property will indicate if you are in
edit
or view
mode.
Next, add some methods for handling input text and the save and edit events:
Now for the
render
method, check the mode
state property to either render an edit button or a text input and a save button, in addition to the saved text:
Here’s the complete fiddle to try it out:
An if/else block is the easiest way to solve the problem, but I’m sure you know this is not a good implementation.
It works great for simple use cases and every programmer knows how it works. But there’s a lot of repetition and the
render
method looks crowded.
So let’s simplify it by extracting all the conditional logic to two render methods, one to render the input box and another one to render the button:
Here’s the complete fiddle to try it out:
Notice that the method
renderInputField
returns an empty div
element when the app is in view mode.
However, this is not necessary.
Prevent rendering with null
If you want to hide a component, you can make its render method return
null
, there’s no need to render an empty (and different) element as a placeholder.
One important thing to keep in mind when returning
null
is that even though the component doesn’t show up, its lifecycle methods are still fired.
Take, for example, the following fiddle that implements a counter with two components:
The
Number
component only renders the counter for even values, otherwise, null
is returned. However, when you look at the console, you’ll see that componentDidUpdate
is always called regardless of the value returned by render
.
Back to our example, change the
renderInputField
method to look like this:
Here’s the complete fiddle:
One advantage of returning
null
instead of an empty element is that you’ll improve a little bit the performance of your app because React won’t have to unmount the component to replace it.
For example, when trying the fiddle that renders the empty
div
element, if you open the Inspector tab, you’ll see how the div
element under the root is always updated:
Unlike the case when
null
is returned to hide the component, where that div
element is not updated when the Edit
button is clicked:
Here, you can learn more about how React updates the DOM elements and how the “diffing” algorithm works.
Maybe in this simple example, the performance improvement is insignificant, but when working when big components, there can be a difference.
I’ll talk more about the performance implications of conditional rendering later. For now, let’s continue to improve this example.
Element variables
One thing I don’t like is having more than one
return
statement in methods.
So I’m going to use a variable to store the JSX elements and only initialize it when the condition is
true
:
This gives the same result as returning
null
from those methods.
Here’s the fiddle to try it out:
The main
render
method is more readable this way but maybe it isn’t necessary to use if/else blocks (or something like a switch
statement) and secondary render methods.
Let’s try a simpler approach.
Ternary operator
Instead of using an if/else block we can use the ternary conditional operator:
condition ? expr_if_true : expr_if_false
The operator is wrapped in curly braces and the expressions can contain JSX, optionally wrapped in parentheses to improve readability.
And it can be applied in different parts of the component. Let’s apply it to the example so you can see this in action.
I’m going to remove
renderInputField
and renderButton
and in the render
method, I’m going to add a variable to know if the component is in view
or edit
mode:
Now you can use the ternary operator to return `null` if the `view` mode is set, or the input field otherwise:
Using a ternary operator, you can declare one component to render either a save or edit button by changing its handler and label correspondingly:
As said before, this operator can be applied in different parts of the component.
Here’s the fiddle to try it out:
Short-circuit operator
The ternary operator has a special case where it can be simplified.
When you want to render either something or nothing, you can only use the
&&
operator.
Unlike the
&
operator, &&
doesn’t evaluate the right-hand side expression if just by evaluating the left-hand expression can decide the final result.
For example, if the first expression evaluates to false (
false && …
), it’s not necessary to evaluate the next expression because the result will always be false
.
In React, you can have expressions like the following:
If
showHeader
evaluates to true
, the <Header/>
component will be returned by the expression.
If
showHeader
evaluates to false
, the <Header/>
component will be ignored and an empty div
will be returned.
This way, the following expression:
Can be turned into:
Here’s the complete fiddle:
Looks better, right?
However, the ternary operator doesn’t always look better.
Consider a complex, nested set of conditions:
This can become a mess pretty quickly.
For that reason, sometimes you might want to use other techniques, like immediately-invoked functions.
Immediately-invoked function expressions (IIFE)
As the name implies, IIFEs are functions that are executed immediately after they are defined, there’s no need to call them explicitly.
Generally, this is how you define and execute (at a later point) a function:
function myFunction() {
// ...
}
myFunction();
But if you want to execute the function immediately after it is defined, you have to wrap the whole declaration in parenthesis (to convert it to an expression) and execute it by adding two more parentheses (passing any arguments the function may take.
Either this way:
Or this way:
Since the function won’t be called in any other place, you can drop the name:
Or you can also use arrow functions:
In React, you use curly braces to wrap an IIFE, put all the logic you want inside it (if/else, switch, ternary operators, etc), and return whatever you want to render.
For example, here’s how the logic to render the save/edit button could look with an IIFE:
Here’s the complete fiddle:
Subcomponents
Sometimes, an IFFE might seem like a hacky solution.
After all, we’re using React, where the recommended approaches are things like splitting up the logic of your app in as many components as possible and using functional programming instead of imperative programming.
So moving the conditional rendering logic to a sub-component that renders different things based on its props would be a good option.
But here, I’m going to do something a bit different to show you how you can go from an imperative solution to more declarative and functional solutions.
I’m going to start by creating a
SaveComponent
:
As properties, it receives everything it needs to work. In the same way, there’s an
EditComponent
:
Now the
render
method can look like this:
Here’s the complete fiddle:
If component
There are libraries like JSX Control Statements that extend JSX to add conditional statements like:
<If condition={ true }>
<span>Hi!</span>
</If>
These libraries provide more advanced components, but if we need something like a simple if/else, we can do something like what Michael J. Ryan showed in one of the comments of this issue:
Here’s the complete fiddle:
Higher-order components
A higher-order component (HOC) is a function that that takes an existing component and returns a new one with some added functionality:
const EnhancedComponent = higherOrderComponent(component);
Applied to conditional rendering, an HOC could return a different component than the one passed based on some condition:
There’s an excellent article about HOCs by Robin Wieruch that digs deeper into conditional renderings with higher order components.
For this article, I’m going to borrow the concepts of the
EitherComponent
.
In functional programming, the
Either
type is commonly used as a wrapper to return two different values.
So let’s start by defining a function that takes two arguments, another function that will return a boolean value (the result of the conditional evaluation), and the component that will be returned if that value is
true
:
It’s a convention to start the name of the HOC with the word
with
.
This function will return another function that will take the original component to return a new one:
The component (function) returned by this inner function will be the one you’ll use in your app, so it will take an object with all the properties that it will need to work:
The inner functions have access to the outer functions’ parameters, so now, based on the value returned by the function
conditionalRenderingFn
, you either return the EitherComponent
or the original Component
:
Or, using arrow functions:
This way, using the previously defined
SaveComponent
and EditComponent
, you can create a withEditConditionalRendering
HOC and with this, create a EditSaveWithConditionalRendering
component:
That you can use in the
render
method passing all the properties needed:
Here’s the complete fiddle:
Performance considerations
Conditional rendering can be tricky. As I showed you before, the performance of each option can be different.
However, most of the time, the differences don’t matter a lot. But when they do, you’ll need a good understanding of how React works with the Virtual DOM and a few tricks to optimizing performance.
Here’s a good article about optimizing conditional rendering in React, I totally recommend you read it.
The essential idea is that changing the position of the components due to conditional rendering can cause a reflow that will unmount/mount the components of the app.
Based on the example of the article, I created two fiddles.
The first one uses an if/else block to show/hide the
SubHeader
component:
The second one uses the short circuit operator (
&&
) to do the same:
Open the Inspector and click on the button a few times.
You’ll see how the
Content
component is treated differently by each implementation.Conclusion
Just as with many things in programming, there are many ways to implement conditional rendering in React.
I’d say that with exception of the first method (if/else with many returns), you’re free to choose whatever method you want.
0 comments:
Post a Comment
Note: only a member of this blog may post a comment.