In this article, I am trying to cover the following topics
1) React Code Splitting
2) React Lazy Loading
3) Suspense in React
4) Error Boundary in React
The React app bundled their files using tools like Webpack or Browserfy. Bundling is a process that takes multiple files and merges them into a single file, which is called a bundle. The bundle is responsible for loading an entire app at once on the webpage. We can understand it from the below example.
App.js
import { add } from './add.js';
console.log(add(16, 26)); // 42
add.js
export function add(a, b) {
return a + b;
}
Bundle file as like below:
function add(a, b) {
return a + b;
}
console.log(add(16, 26)); // 42
As our app grows, our bundle will grow too, especially when we are using large third-party libraries. If the bundle size gets large, it takes a long time to load on a webpage. For avoiding the large bundling, it?s good to start? splitting? your bundle.
React 16.6.0, released in October 2018, and introduced a way of performing code splitting. Code-Splitting is a feature supported by Webpack and Browserify, which can create multiple bundles that can be dynamically loaded at runtime.
Code splitting uses React. lazy and Suspense tool/library, which helps you to load a dependency lazily and only load it when needed by the user.
Advantage of code splitting:
The performance of the app
The impact on memory
The downloaded Kilobytes (or Megabytes) size
React.lazy
The best way for code splitting into the app is through the dynamic import() syntax. The React.lazy function allows us to render a dynamic import as a regular component.
Before
import ExampleComponent from './ExampleComponent';
function MyComponent() {
return (
<div>
<ExampleComponent />
</div>
);
}
After
const ExampleComponent = React.lazy(() => import('./ExampleComponent'));
function MyComponent() {
return (
<div>
<ExampleComponent />
<AbcComponent />
<HelloComponent />
</div>
);
}
The above code snippet automatically loads the bundle which contains the ExampleComponent when the ExampleComponent gets rendered.
What is Suspense in React
If the module which contains the ExampleComponent is not yet loaded by the function component(MyComponent), then we need to show some fallback content while we are waiting for it to load. We can do this using the suspense component. In other words, the suspense component is responsible for handling the output when the lazy component is fetched and rendered.
import {Suspense,React,lazy} from 'react';
The fallback prop accepts the React elements which you want to render while waiting for the component to load. We can combine multiple lazy components with a single Suspense component. It can be seen in the below example.
const ExampleComponent = React.lazy(() => import('./ ExampleComponent'));
const ExamComponent = React.lazy(() => import('./ ExamComponent'));
function MyComponent() {
return (
<div>
<Suspense fallback={<div>Loading...</div>}>
<section>
<ExampleComponent />
<ExamComponent />
</section>
</Suspense>
</div>
);
}
Note: React. lazy and Suspense components are not yet available for server-side rendering. For code-splitting in a server-rendered app, it is recommended to use Loadable Components.
What Error boundaries in React JS
If any module fails to load, for example, due to network failure, we will get an error. We can handle these errors with Error Boundaries. Once we have created the Error Boundary, we can use it anywhere above our lazy components to display an error state.
import MyErrorBoundary from './MyErrorBoundary';
const ExampleComponent = React.lazy(() => import('./ ExampleComponent'));
const ExamComponent = React.lazy(() => import('./ ExamComponent'));
const MyComponent = () => (
<div>
<MyErrorBoundary>
<Suspense fallback={<div>Loading...</div>}>
<section>
<ExampleComponent />
<ExamComponent />
</section>
</Suspense>
</MyErrorBoundary>
</div>
);
Code of MyErrorBoundary.js
import React from "react";
Example of Code Splitting using lazy ad Suspense?
Code of Exception handing under Event handler method:-
React provide try and catch block to handle error, try to write the code and catch block to define the error message.
Example
1) create function component:-
2) Create App.js top define suspense ad lazy
3) Code of Index.js file
POST Answer of Questions and ASK to Doubt