Fixing React Component Errors in SPFx Application Customizer: The Modern Way! šŸš€

Sandeep P SSandeep P S
2 min read

If youā€™ve ever worked on creating an Application Customizer with a React component in SharePoint Framework (SPFx), chances are youā€™ve encountered an error like the one in the console below:

The Culprit Behind the Error šŸ•µļøā€ā™‚ļø

The error typically occurs when the React dependenciesā€”namely react and react-domā€”havenā€™t been installed in your SPFx project. If youā€™re new to this, you might spend hours scratching your head wondering why the component isnā€™t loading as expected.

Hereā€™s the thing: React isnā€™t included automatically in every SPFx project, especially when dealing with plain typescript scaffolds. Without these libraries, the browser simply doesnā€™t know how to render your React-based customizer, resulting in the dreaded console errors. šŸ˜°

The Traditional Fix šŸ”§

The classic solution involves manually installing these dependencies. Youā€™d run the following command:

npm install react@17.0.1 react-dom@17.0.1

Why 17.0.1?

This version is specifically compatible with SPFx versions 1.15.2 and above. Installing a different version of React could lead to compatibility issues, so always double-check your SPFx version(https://learn.microsoft.com/en-us/sharepoint/dev/spfx/compatibility#spfx-development-environment-compatibility) before proceeding.

While this method works perfectly fine, thereā€™s now a better way to handle this dependency issue without manual intervention. šŸŽ‰

The Modern Fix: SharePoint Framework Toolkit āš™ļø

The latest pre-release version (4.3.3) of SharePoint Framework Toolkit introduces a modern approach that eliminates the hassle of manually managing dependencies for application customizer scaffolding. During the scaffolding process, the pre-release version provides an additional step to automatically install required React dependencies. šŸ‘Œ

Why Go Modern? šŸŒŸ

Hereā€™s why adopting the SPFx Toolkitā€™s modern approach is a no-brainer:

  1. Saves Time: Dependency management becomes an automatic process.

  2. Prevents Errors: No more mismatched React versions or forgotten installations.

  3. Boosts Productivity: Focus on writing code instead of troubleshooting dependency issues.

Bonus Tips šŸ’”

  • Always check the SPFx version before installing dependencies. The compatibility matrix is key to avoiding errors.

  • Consider upgrading to the latest SPFx version to leverage all modern tooling benefits.

0
Subscribe to my newsletter

Read articles from Sandeep P S directly inside your inbox. Subscribe to the newsletter, and don't miss out.

Written by

Sandeep P S
Sandeep P S