Migrating JSLink customizations to SharePoint Framework Field Customizers

The SharePoint Framework (SPFx) is the recommended model for extending and building SharePoint customizations. If you customized SharePoint fields and list views with JSLink, you might wonder what's the advantage to migrate these customizations to SPFx is.

First, let's introduce the available options when developing SharePoint Framework extensions:

  • Application Customizer: Extend the native "modern" UI of SharePoint by adding custom HTML elements and client-side code to pre-defined placeholders of "modern" pages. For more information on application customizers, see Build your first SharePoint Framework Extension (Hello World part 1).
  • Command Set: Add custom Edit Control Block (ECB) menu items or custom buttons to the command bar of a list view for a list or a library. You can associate any client-side action to these commands. For more information on command sets, see Build your first ListView Command Set extension.
  • Field Customizer: Customize the rendering of a field in a list view by using custom HTML elements and client-side code. For more information on field customizers, see Build your first Field Customizer extension.

Depending on what is the target of your customization, you can leverage any of the above flavors. For example, the Field Customizers are a good replacement for the JSLink customizations of fields.

Tip

While field customizers are the natural migration path from JSLink, you should also evaluate using list and column formatting to customize the list view. Both technologies have their individual advantages and disadvantages and one may be simpler to implement and maintain than the other depending on your scenario.

You can learn more here: Use column formatting to customize SharePoint

The SharePoint Framework was built to extend the SharePoint "modern" experience. The "modern" experience is available on the "modern" team sites and "modern" communication sites, and which targets any device and any platform.

The only supported way of customizing "modern" lists and libraries

One of the main benefits of migrating legacy JSLink customizations to the SharePoint Framework is that it's the only supported option available. In fact, the "modern" lists and libraries, because of their rendering infrastructure and because of the no-script flag enabled on the "modern" sites, can't rely on legacy JSLink customizations. If you really want to extend the "modern" UI, you need to migrate the JSLink solution to a SharePoint Framework field customizer.

Easier access to information in SharePoint and Microsoft 365

Another fundamental topic to consider is that in the legacy JSLink customizations it wasn't easy to consume SharePoint content and data. The only way of doing that was by using JavaScript client-side object model (JSOM) or low-level REST APIs. It was almost impossible to consume the full set of services of Microsoft 365 unless you used ADAL.JS (Azure Active Directory Authentication Library for JavaScript) and custom JavaScript code.

Now, with the SharePoint Framework and the SharePoint Framework extensions, it's easy and straightforward to consume both the SharePoint REST API and Microsoft Graph. You can now create more powerful solutions, which can consume and interact with the full ecosystem of services provided by Microsoft 365.

Similarities between SharePoint Framework solutions and SharePoint Feature Framework customizations

Both the JSLink customizations and the SharePoint Feature Framework customizations share some similarities.

Provisioning model

Both SharePoint Framework extensions and user custom actions or the ECB menu item solutions use an XML manifest file, which is written with the SharePoint Feature Framework syntax. Thus, the deployment is based on the same techniques. However, with the new Field Customizers, you can customize the rendering of a field, and not the rendering of a single view of a list or library. The custom field can be used in as many lists and libraries as you like.

Run as a part of the page

Similar to user custom actions and ECB of SharePoint Feature Framework, SharePoint Framework extensions are a part of the page. This gives these solutions access to the page's DOM and allows them to communicate with other components on the same page. Also, it allows developers to more easily make their solutions responsive to adapt to the different form factors on which a SharePoint page could be displayed, including the SharePoint mobile app.

Because SharePoint Framework extensions run as part of the page, whatever resources the customization have access to, other elements on the page can access as well. This is important to keep in mind when building solutions that rely on OAuth implicit flow with bearer access tokens or use cookies or browser storage for storing sensitive information. Because SharePoint Framework extensions run as a part of the page, other elements on that page can access all these resources as well.

Use any library to build your extensions

When building page customizations by using user custom actions, you might have used libraries such as jQuery or Knockout to make your customization dynamic and better respond to user interaction. When building SharePoint Framework extensions, you can use any client-side library to enrich your solution, the same way you would have done in the past.

An additional benefit that the SharePoint Framework offers you is isolation of your script. Even though the web part is executed as a part of the page, its script is packaged as a module allowing, for example, different extensions on the same page to use a different version of jQuery without colliding with each other. This is a powerful feature that allows you to focus on delivering business value instead of technical migrations and compromising on functionality.

Run as the current user

In customizations built by using JSLink, whenever you needed to communicate with SharePoint, all you had to do was to call its API. The client-side solution was running in the browser in the context of the current user, and by automatically sending the authentication cookie along with the request, your solution could directly connect to SharePoint. No additional authentication, such as when using SharePoint Add-ins, was necessary to communicate with SharePoint.

The same mechanism applies to customizations built on the SharePoint Framework that also run under the context of the currently authenticated user and don't require any additional authentication steps to communicate with SharePoint. The security context is that of the currently connected user, which implies that from a security perspective, you need to be careful when installing any SharePoint Framework Extension in any target site collection.

Use only client-side code

Both SharePoint Framework extensions and JSLink customizations run in the browser and can contain only client-side JavaScript code. Client-side solutions have several limitations, such as not being able to elevate permissions in SharePoint, or reach out to external APIs that don't support cross-origin communication (CORS), or authentication using OAuth implicit flow. In such cases, the client-side solution could leverage a remote server-side API to do the necessary operation and return the results to the client.

Hosting model self-consistent and based on Microsoft 365

Both SharePoint Framework extensions and JavaScript files for JSLink customizations can be hosted on SharePoint Online, and eventually in the Microsoft 365 CDN service, avoiding any need for external services or hosting environments.

While hosting SharePoint Framework solutions on a CDN offers many advantages, it isn't required, and you could choose to host the code in a SharePoint document library. SharePoint Framework packages (*.sppkg files) deployed to the App Catalog specify the URL at which SharePoint Framework can find the solution's code. If the user browsing the page with the extension can download the script from the specified location, there are no restrictions with regards to what that URL must be.

Microsoft 365 offers the public CDN capability that allows you to publish files from a specific SharePoint document library to a CDN. Microsoft 365 public CDN strikes a nice balance between the benefits of using a CDN and the simplicity of hosting code files in a SharePoint document library. If your organization doesn't mind their code files being publicly available, using the Microsoft 365 public CDN is an option worth considering.

However, between the two development models there are also some significant differences, which you should consider when designing the architecture of your solutions.

Run in no-script sites and in "modern" lists and libraries

Because SharePoint Framework solutions, including Extensions, are deployed through the App Catalog with a prior approval, they aren't subject to the no-script restrictions and work on all "modern" sites. As we already saw, the Field Customizers of SharePoint Framework work in "modern" lists and libraries, while the legacy JSLink doesn't.

Field Customizers support view only scenarios

A JSLink customization can be used to customize not only the view of a field in a list or library, but also the display and edit views of a field while showing a single item.

At the time of this writing, a Field Customizer of SharePoint Framework can customize the rendering of a field only in the list view rendering mode, while in the display and edit views of a single item you aren't able to leverage the customization.

Use TypeScript for building more robust and easier to maintain solutions

When building customizations using JSLink, developers often used plain JavaScript. Often such solutions didn't contain any automated tests, and refactoring the code was error-prone.

SharePoint Framework allows developers to benefit from the TypeScript type system when building solutions. Thanks to the type system, errors are caught during development rather than at runtime. Also, refactoring code can be done more easily because changes to the code are safeguarded by TypeScript. Because all JavaScript is valid TypeScript, the entry barrier is low, and you can migrate your plain JavaScript to TypeScript gradually over time, increasing the maintainability of your solutions.

No access to SharePoint JavaScript Object Model by default

When building client-side customizations for the classic SharePoint user experience, many developers used the JSOM to communicate with SharePoint. The JSOM offered them IntelliSense and easy access to the SharePoint API in a way similar to the Client-Side Object Model (CSOM). In classic SharePoint pages, the core piece of the JSOM was by default present on the page, and developers could load additional pieces to communicate with SharePoint Search, for example.

The modern SharePoint user experience doesn't include SharePoint JSOM by default. While developers can load it themselves, the recommendation is to use the REST API instead, or the SharePoint Patterns and Practices JavaScript Core Library (PnPJS), which internally uses the SharePoint REST API. Using REST is more universal and interchangeable between the different client-side libraries such as jQuery, Angular, or React.

Microsoft isn't actively investing in the JSOM. If you prefer working with an API, you can use the PnP JS Library, which offers you a fluent API and TypeScript type declarations.

Migrate existing customization to the SharePoint Framework extensions

Migrating existing customizations to the SharePoint Framework extensions offers both end-users and developers many benefits. When considering migrating existing customizations to the SharePoint Framework, you can either choose to reuse as many of the existing JavaScript scripts as possible, or to completely rewrite the customization by using TypeScript.

Reuse existing scripts

When migrating existing customizations to the SharePoint Framework extensions, you can choose to reuse your existing scripts. Even though the SharePoint Framework encourages using TypeScript, you can use plain JavaScript and gradually transform it to TypeScript. If you need to support a solution for a limited period or have a limited budget, this approach might be good enough for you.

Reusing existing scripts in a SharePoint Framework solution isn't always possible. For example, given the variety of JavaScript libraries, there is no easy way to tell upfront if your existing scripts can be reused in a SharePoint Framework solution or if you need to rewrite them after all. The only way to determine this is by trying to move the different pieces to a SharePoint Framework solution and see if they work as expected.

Rewrite the customization

If you need to support your solution for a longer period or would like to make better use of the SharePoint Framework, or if it turns out that your existing scripts can't be reused with the SharePoint Framework, you might need to completely rewrite your customization. While it's costlier than reusing existing scripts, it offers you better results over a longer period: a solution that is better performing and easier to maintain and to use.

When rewriting an existing customization to a SharePoint Framework solution, you should start with the wanted functionality in mind. For implementing the user experience, you should consider using the Office UI Fabric so that your solution looks like an integral part of SharePoint.

See also