@microsoft/mgt-spfx-utils
v4.4.0
Published
Helper utilities for loading MGT based libraries and web parts in a SPFx context
Downloads
1,823
Readme
Utilities for SharePoint Framework Web Parts using Microsoft Graph Toolkit
Helper functions to simplify lazy loading of Microsoft Graph Toolkit components when using disambiguated web components in SharePoint Framework web parts. For more information on disambiguation in MGT see https://github.com/microsoftgraph/microsoft-graph-toolkit/tree/main/packages/mgt-components#disambiguation
Installation
To lazy load Microsoft Graph Toolkit components in a React web part add both the @microsoft/mgt-spfx-utils
and @microsoft/mgt-react
packages as dependencies to your SharePoint Framework project:
npm install @microsoft/mgt-spfx-utils @microsoft/mgt-react
or
yarn add @microsoft/mgt-spfx-utils @microsoft/mgt-react
Usage
Disambiguation is intended to provide developers with a mechanism to use a specific version of MGT in their solution without encountering collisions with other solutions that may be using MGT. Developers building SharePoint customization using MGT should use disambiguation to ensure that their applications function as intended.
By disambiguating tag names of Microsoft Graph Toolkit components you avoid colliding with SharePoint Framework components built by other developers. When disambiguating tag names, MGT is included in the generated SPFx bundle, increasing its size. It is strongly recommended that you use a disambiguation value unique to your organization and solution to avoid collisions with other solutions, e.g. contoso-hr-extensions
.
Important: Since a given web component tag can only be registered once this approach must be used along with the
customElementHelper.withDisambiguation('foo')
as this allows developers to create disambiguated tag names.
When using no framework web parts
When building SharePoint Framework web parts without a JavaScript framework the customElementHelper.withDisambiguation('foo')
function must be called before registering the desired components.
Below is a minimal example web part that demonstrates how to use MGT with disambiguation in SharePoint Framework Web parts. A more complete example is available in the No Framework Web Part Sample.
import { BaseClientSideWebPart } from '@microsoft/sp-webpart-base';
import { Providers, customElementHelper } from '@microsoft/mgt-element';
import { SharePointProvider } from '@microsoft/mgt-sharepoint-provider';
import { registerMgtAgendaComponent } from '@microsoft/mgt-components';
export default class MgtWebPart extends BaseClientSideWebPart<Record<string, unknown>> {
protected onInit(): Promise<void> {
if (!Providers.globalProvider) {
Providers.globalProvider = new SharePointProvider(this.context);
}
// Use the solution name to ensure unique tag names
customElementHelper.withDisambiguation('spfx-solution-name');
registerMgtAgendaComponent();
return super.onInit();
}
public render(): void {
this.domElement.innerHTML = `
<section class="${styles.helloWorld} ${this.context.sdks.microsoftTeams ? styles.teams : ''}">
<mgt-spfx-solution-name-agenda></mgt-spfx-solution-name-agenda>
</section>`;
}
}
When using React to build web parts
When building SharePoint Framework web parts using React any component that imports from the @microsoft/mgt-react
library must be asynchronously loaded after configuring the disambiguation setting. The lazyLoadComponent
helper function exists to facilitate using React.lazy
and React.Suspense
to lazy load these components from the top level web part.
Below is a minimal example web part that demonstrates how to use MGT with disambiguation in React based SharePoint Framework Web parts. A complete example is available in the React SharePoint Web Part Sample.
// [...] trimmed for brevity
import { Providers, customElementHelper } from '@microsoft/mgt-element';
import { SharePointProvider } from '@microsoft/mgt-sharepoint-provider';
import { lazyLoadComponent } from '@microsoft/mgt-spfx-utils';
// Async import of component that imports the React Components
const MgtDemo = React.lazy(() => import('./components/MgtDemo'));
export interface IMgtDemoWebPartProps {
description: string;
}
// set the disambiguation before initializing any webpart
// Use the solution name to ensure unique tag names
customElementHelper.withDisambiguation('spfx-solution-name');
export default class MgtDemoWebPart extends BaseClientSideWebPart<IMgtDemoWebPartProps> {
// set the global provider
protected async onInit() {
if (!Providers.globalProvider) {
Providers.globalProvider = new SharePointProvider(this.context);
}
}
public render(): void {
const element = lazyLoadComponent(MgtDemo, { description: this.properties.description });
ReactDom.render(element, this.domElement);
}
// [...] trimmed for brevity
}
The underlying components can then use MGT components from the @microsoft/mgt-react
package as usual. Because of the earlier setup steps the the MGT React components will render html using the disambiguated tag names:
import { Person } from '@microsoft/mgt-react';
// [...] trimmed for brevity
export default class MgtReact extends React.Component<IMgtReactProps, {}> {
public render(): React.ReactElement<IMgtReactProps> {
return (
<div className={ styles.mgtReact }>
<Person personQuery="me" />
</div>
);
}
}