Our Blog:

React Application: From Server Fetch to First Paint


Senior
Andrej Vajagic

Andrej Vajagic

08.04.2024, 17:17

Read time: undefined mins

React Application: From Server Fetch to First Paint

React applications are known for their responsiveness and efficiency, largely due to their unique ways of fetching data and managing initial renders. Let's take a detailed journey through the process from when a user first interacts with a React application, focusing particularly on data retrieval from the server, and leading up to the first content paint on the user's screen.

Initial Request and Server Response

When a user opens a React web page, the first interaction is typically the browser requesting the necessary HTML, CSS, and JavaScript files from the server. This is the starting point for every web application, and how quickly these resources are delivered affects the entire user experience.

Critical Rendering Path

The critical rendering path is the sequence of steps the browser goes through to convert the HTML, CSS, and JavaScript into pixels on the screen. This includes:

  • Requesting the Page: When a user enters the URL or clicks a link to a React application, the user's browser makes a network request to the server hosting the application.
  • Receiving Response: The server sends back the initial HTML document, along with the necessary CSS files, JavaScript files (including React and other libraries), and other assets like images.
  • Parsing HTML: The browser starts parsing the HTML document it receives. This parsing involves reading the HTML markup and building the Document Object Model (DOM). The DOM represents the page structure, which the browser uses to render the content.
  • Fetching JavaScript and CSS: As the browser parses the HTML, it identifies and fetches external resources like CSS and JavaScript files. These files may be fetched in parallel, depending on how they are referenced in the HTML (async or defer attributes can affect this).
  • Parsing CSS: Once the CSS files are downloaded, the browser parses the CSS to build the CSS Object Model (CSSOM). The CSSOM, along with the DOM, is used to determine the visual presentation of the HTML elements.
  • Executing JavaScript: After fetching the JavaScript files, the browser executes the JavaScript code. This step is critical in a React application as the JavaScript includes the React library and the application-specific code. React starts by initializing the application, setting up any required state management, and preparing to render components.
  • React Renders Components: Using the application’s JavaScript, React begins rendering components. This process involves creating a virtual DOM, which is a lightweight JavaScript representation of the actual DOM.
  • Creating the DOM: React components are rendered into HTML elements in the virtual DOM. React then compares the virtual DOM with the actual DOM (initially empty for the root component) and calculates the most efficient way to update the browser's actual DOM to match the virtual DOM.
  • Initial Display: The browser displays the web page based on the DOM that React has constructed. This is the first view that users see, also known as the "initial render."
  • Handling Interactions: As users interact with the page, events trigger React to update the application state and re-render the necessary components. These updates alter the virtual DOM.
  • Updating the DOM: After re-rendering components, React calculates the differences between the previous virtual DOM and the new one. It then applies these differences in the most efficient way to the actual DOM, a process known as reconciliation.
  • Continuous Updates: React continues to listen for user interactions and data changes, efficiently updating the DOM as necessary. This keeps the user interface responsive and ensures that the display is always in sync with the application state.

These steps highlight how HTML, CSS, and JavaScript are intricately linked to deliver the dynamic and interactive experiences that React applications are known for.

Fetching data from server after rendering

Fetching data from the server in a React application is a crucial process that typically involves several steps to retrieve, display, and update data dynamically based on user interactions or other events. Here's a detailed overview of what happens when a React application fetches data from a server:

1. Triggering Data Fetch

Data fetching can be triggered by various events, such as:

  • A user action (like clicking a button or loading a page).
  • Component lifecycle events (for example, when a component mounts in the case of class components or during effect hooks in functional components).
  • Scheduled updates (such as polling the server at regular intervals).

2. Making HTTP Request

Once the need for data fetching is determined, the React application typically makes an HTTP request to the server. This is often done using JavaScript APIs or libraries such as:

  • Fetch API: A browser method to make asynchronous requests. It's native to modern browsers and returns promises.
  • Axios: A popular JavaScript library that simplifies making HTTP requests and handling responses.
  • XMLHttpRequest: An older API for making HTTP requests, less commonly used in modern applications but still relevant.

3. Asynchronous Operation

Data fetching is an asynchronous operation. React itself does not dictate how to handle asynchronous events but integrates well with async/await in JavaScript, or libraries like Axios, Redux, or React Query can be used for managing asynchronous logic and state.

4. Handling Server Response

Once the HTTP request is sent, the application waits for the server to respond. The response can be handled in various ways:

  • Success: The server sends back the requested data, usually in JSON format. The application then parses this data and uses it to update the state of the components. This could involve setting the state directly in a component or updating a global state management store (like Redux or Context API).
  • Error: If there's an error (e.g., server not reachable, data not found, permissions error), the application needs to handle these gracefully, typically by setting an error state and displaying error messages to the user.
  • Loading State: During the wait time between the request and response, the application often maintains a loading state. Displaying loading indicators or placeholders improves the user experience by informing them that data is being fetched.

5. Updating the State

After receiving the data, React components will update their internal state or a global state, triggering a re-render to display the new data. This is often managed within React using useState or useReducer hooks, or through more complex state management libraries:

  • Local State: Directly setting the state in components using setState in class components or useState in functional components.
  • Global State: Using context or external state management libraries to handle more complex or shared state across components.

6. Re-rendering Components

With the new data incorporated into the state, React initiates a re-rendering process for affected components. React efficiently updates the DOM to reflect the changes based on its reconciliation algorithm. Only components that depend on the changed state or their children will typically re-render.

7. Displaying Updated Content

Finally, the updated components with the new data are rendered on the screen. Users see the updated information without needing to reload the page, providing a seamless interactive experience.

Share:

Accelerating Digital Success. Experience the future of web development – faster, smarter, better. Lets innovate together.

©2024 Dreit Technologies | All rights reserved

Contact

  • +38 64 577 3034
  • Serbia
  • Marka Pericina Kamenjara 11A, Ruma
  • Contact us