#55 2 rules to play by in SPFx


SharePoint Framework, also known as SPFx, is a versatile framework for building apps on Microsoft 365. You can use it to extend SharePoint with web parts and extensions, build tabs and messaging extensions for Teams and extend Viva Connections with Adaptive Card Extensions. What’s cool about SPFx is that it’s just web dev. Using React, or any other web framework, you’re building a web app, that will be exposed in Microsoft 365.

If you’re building a web part or an extension using SPFx, your app will share the page with other apps. And there are two rules of thumb that you must keep in mind to play nicely and don’t break the page.

1. Don’t use IDs

IDs are meant to uniquely identify DOM elements on pages. But if you’re building web parts or extensions, it’s possible that the user will add multiple instances of it. If you assume that there is only one instance of your app on the page, where in reality there are multiple, it could break the page. So to avoid this, you should never use IDs in your SharePoint Framework solutions. Instead, use CSS classes to identify your elements.

2. Query the DOM within your assigned DOM element

When working with the DOM, whether to manipulate what’s visible or to handle events, you might need to get a reference to a specific element. Typically, you’ll see it done using document.querySelector or document.querySelectorAll. In the context of SPFx, this is a bad approach, because it could return elements that you don’t own!

Instead, you should always query within the DOM element assigned to your web part or extension, like this.domElement.querySelector or this.myPlaceholder.domElement.querySelector. That way, you’ll be sure that the element you get belongs to the current instance of your web part or extension. Because the DOM query is scoped to your DOM element, you can be even sure that even if you’d want to query the element just using its CSS class name, you won’t get back an element with a colliding CSS class name but from a different app on the same page. Oh, and your code will be faster too because instead of traversing the whole page’s DOM, it will look for the element just within your root node.

When building SPFx solutions, keep in mind these two rules of thumb and you will avoid a lot of hard to debug issues!

Others found also helpful: