This article provides steps to implement the Tree view navigation using PnP Treeview control in the SharePoint Framework (SPFx), generally, Treeview control allows to present a hierarchical view of information. Each tree item can have a number of subitems. This is often visualized by an indentation in a list. A tree item can be expanded to reveal subitems (if exist), and collapsed to hide subitems. in this article, we building the dynamic treeview navigation and data stored in the SharePoint list

Create a new web part project
Open power shell and run following comment to create a new web part by running the Yeoman SharePoint Generator
yo @microsoft/sharepoint
When prompted:
Enter the webpart name as your solution name, and then select Enter.
Select Create a subfolder with solution name for where to place the files.
Select Y to allow the solution to be deployed to all sites immediately.
Select N on the question if solution contains unique permissions.
Select WebPart as the client-side component type to be created.
The next set of prompts ask for specific information about your web part:
Enter your web part name, and then select Enter.
Enter your web part description, and then select Enter.
Select React framework as the framework you would like to use, and then select Enter.
Start Visual Studio Code (or your favorite code editor) within the context of the newly created project folder.
cd .\web part name\
code .
Install the library and required dependencies
npm install @pnp/sp --save
npm install @pnp/spfx-controls-react --save --save-exact
Import the library into your application, update constructor, and access the root sp object in render for PnPjs libraries.
sp.setup({spfxContext: this.props.spcontect});
Configure the custom properties
Create a new source code file under the src\webparts\<Webpart name>\components\ folder of the solution. Create the new file I<web part name>State.ts and use it to create a TypeScript Interface
import { ITreeItem } from "@pnp/spfx-controls-react/lib/TreeView";
export interface ISpfxPnpTreeviewState {
TreeLinks: ITreeItem[];
}
In addition, you need to update the render method of the client-side web part to create a properly configured instance of the React component for rendering. The following code shows the updated method definition.
public render(): void {
const element: React.ReactElement<ISpfxPnpTreeviewProps> = React.createElement(
SpfxPnpTreeview,
{
description: this.properties.description,
context:this.context
}
);
ReactDom.render(element, this.domElement);
}
Update the tsx file located under the components. First, add some import statements to import the types you defined earlier. Notice the import for I<web part name>Props and I<web part name>State. There are also some imports for the PnP components used to render the UI of the PnP React component and pnp sp imports.
import * as React from 'react';
import styles from './SpfxPnpTreeview.module.scss';
import { ISpfxPnpTreeviewProps } from './ISpfxPnpTreeviewProps';
import { ISpfxPnpTreeviewState } from './ISpfxPnpTreeviewState';
import { TreeView, ITreeItem, TreeViewSelectionMode, TreeItemActionsDisplayMode } from "@pnp/spfx-controls-react/lib/TreeView";
import { sp } from "@pnp/sp";
import "@pnp/sp/webs";
import "@pnp/sp/lists";
import "@pnp/sp/items";
Replace this render function with the following code.
public render(): React.ReactElement<ISpfxPnpTreeviewProps> {
return (
<div className={styles.spfxPnpTreeview}>
<TreeView
items={this.state.TreeLinks}
defaultExpanded={false}
selectionMode={TreeViewSelectionMode.None}
selectChildrenIfParentSelected={true}
showCheckboxes={false}
treeItemActionsDisplayMode={TreeItemActionsDisplayMode.Buttons}
onExpandCollapse={this.onTreeItemExpandCollapse}
onRenderItem={this.renderCustomTreeItem} />
</div>
);
}
Update the React component type declaration and add a constructor, as shown in the following example.
export default class SpfxPnpTreeview extends React.Component<ISpfxPnpTreeviewProps, ISpfxPnpTreeviewState> {
constructor(props: ISpfxPnpTreeviewProps) {
super(props);
sp.setup({
spfxContext: this.props.context
});
this.state = {
TreeLinks: []
}
this._getLinks();
}
place the below code inside the react component code, these functions using PnPjs to get links from the SharePoint list
private async _getLinks() {
const allItems: any[] = await sp.web.lists.getByTitle("TreeLinks").items.getAll();
var treearr: ITreeItem[] = [];
allItems.forEach(function (v, i) {
if (v["ParentId"] == null) {
const tree: ITreeItem = {
key: v.Id,
label: v["Title"],
data: v["Link"],
children: []
}
treearr.push(tree);
}
else {
const tree: ITreeItem = {
key: v.Id,
label: v["Title"],
data: v["Link"]
}
var treecol: Array<ITreeItem> = treearr.filter(function (value) { return value.key == v["ParentId"] })
if (treecol.length != 0) {
treecol[0].children.push(tree);
}
}
console.log(v);
});
console.log(treearr);
this.setState({ TreeLinks: treearr });
}
private renderCustomTreeItem(item: ITreeItem): JSX.Element {
return (
<span>
<a href={item.data} target={'_blank'}>
{item.label}
</a>
</span>
);
}
private onTreeItemExpandCollapse(item: ITreeItem, isExpanded: boolean) {
console.log((isExpanded ? "Item expanded: " : "Item collapsed: ") + item);
}
Deploy the solution
You’re now ready to build, bundle, package, and deploy the solution.
Run the gulp commands to verify that the solution builds correctly.
gulp build
Use the following command to bundle and package the solution.
gulp bundle --ship
gulp package-solution --ship
Browse to the app catalog of your target tenant and upload the solution package. You can find the solution package under the sharepoint/solution folder of your solution. It is the .sppkg file. After you upload the solution package in the app catalog. you can find and the web part anywhere across the tenant.
Sharing is caring!
If you have any questions, feel free to let me know in the comments section.
Happy coding!!!
Hi,
After adding this webpart, the navigation elements supposed to display on the left side of the page(Left side site navigation bar) or it just displays on the page as a normal webpart?
Because in the picture above it’s showing on the left side of the page just as the managed navigation or structural navigation. I was also expecting it to be on the left side but I got it in the center of the page itself.
LikeLike
Hi,
This is just SPFx web part, so you have to place where you want.
LikeLike
HI,
I tried and added the webpart and it somehow worked. But here in this image(https://lh3.googleusercontent.com/-x-n7oe4eZMY/WDMnnIBx69I/AAAAAAAAEPo/ydb_Fjyth0A/s1600-h/News%252520page%25255B3%25255D.png) there’s a quick launch with links for Home, Notebook, Documents, etc,. I wonder if it’s possible to add this tree view navigation webpart there in the left quick launch pane? I can’t add this webpart there in the quick launch. Am I missing anything here?
LikeLike
Hi,
You can use SharePoint framework’s application customizer under extension category for do this change.
LikeLiked by 1 person
Hi, how to implement this if there is 3rd level of child in data from SharePoint list. Parent- child- grandchild
LikeLiked by 1 person
Hi Orbitter,
If you follow this logic, you can build the infinite child
allItems.forEach(function (v, i) {
addchild(v.item,v.parent)
});
function addchild(treeitem, parentitem)
{
add value to the array
}
LikeLiked by 1 person
Hi Ravi,
I was able to follow your example and managed to implement the treeview to load the terms under a termset from my managed metadata service. It works on both my SP2016 on prem and on my spo tenant. But the icons to expand and collapse a treeitem does not display on Prem but work fine in SPO.. any ideas on that?
LikeLiked by 1 person
Hi Karthik,
I’m not sure about the reason this issue, I don’t prem environment for test this
LikeLiked by 1 person