@pnp/sp - navigation¶
Navigation Service¶
getMenuState¶
The MenuState service operation returns a Menu-State (dump) of a SiteMapProvider on a site. It will return an exception if the SiteMapProvider cannot be found on the site, the SiteMapProvider does not implement the IEditableSiteMapProvider interface or the SiteMapNode key cannot be found within the provider hierarchy.
The IEditableSiteMapProvider also supports Custom Properties which is an optional feature. What will be return in the custom properties is up to the IEditableSiteMapProvider implementation and can differ for for each SiteMapProvider implementation. The custom properties can be requested by providing a comma separated string of property names like: property1,property2,property3\,containingcomma
NOTE: the , separator can be escaped using the \ as escape character as done in the example above. The string above would split like:
- property1
- property2
- property3,containingcomma
import { spfi } from "@pnp/sp";
import "@pnp/sp/navigation";
const sp = spfi(...);
// Will return a menu state of the default SiteMapProvider 'SPSiteMapProvider' where the dump starts a the RootNode (within the site) with a depth of 10 levels.
const state = await sp.navigation.getMenuState();
// Will return the menu state of the 'SPSiteMapProvider', starting with the node with the key '1002' with a depth of 5
const state2 = await sp.navigation.getMenuState("1002", 5);
// Will return the menu state of the 'CurrentNavSiteMapProviderNoEncode' from the root node of the provider with a depth of 5
const state3 = await sp.navigation.getMenuState(null, 5, "CurrentNavSiteMapProviderNoEncode");
getMenuNodeKey¶
Tries to get a SiteMapNode.Key for a given URL within a site collection. If the SiteMapNode cannot be found an Exception is returned. The method is using SiteMapProvider.FindSiteMapNodeFromKey(string rawUrl) to lookup the SiteMapNode. Depending on the actual implementation of FindSiteMapNodeFromKey the matching can differ for different SiteMapProviders.
import { spfi } from "@pnp/sp";
import "@pnp/sp/navigation";
const sp = spfi(...);
const key = await sp.navigation.getMenuNodeKey("/sites/dev/Lists/SPPnPJSExampleList/AllItems.aspx");
Web Navigation¶
Scenario | Import Statement |
---|---|
Selective 1 | import "@pnp/sp/webs"; import "@pnp/sp/navigation"; |
The navigation object contains two properties "quicklaunch" and "topnavigationbar". Both have the same set of methods so our examples below show use of only quicklaunch but apply equally to topnavigationbar.
Get navigation¶
import { spfi } from "@pnp/sp";
import "@pnp/sp/webs";
import "@pnp/sp/navigation";
const sp = spfi(...);
const top = await sp.web.navigation.topNavigationBar();
const quick = await sp.web.navigation.quicklaunch();
For the following examples we will refer to a variable named "nav" that is understood to be one of topNavigationBar or quicklaunch:
import { spfi } from "@pnp/sp";
import "@pnp/sp/webs";
import "@pnp/sp/navigation";
const sp = spfi(...);
// note we are just getting a ref to the nav object, not executing a request
const nav = sp.web.navigation.topNavigationBar;
// -- OR --
// note we are just getting a ref to the nav object, not executing a request
const nav = sp.web.navigation.quicklaunch;
getById¶
import "@pnp/sp/navigation";
const node = await nav.getById(3)();
add¶
import "@pnp/sp/navigation";
const result = await nav.add("Node Title", "/sites/dev/pages/mypage.aspx", true);
moveAfter¶
Places a navigation node after another node in the tree
import "@pnp/sp/navigation";
const node1result = await nav.add(`Testing - ${getRandomString(4)} (1)`, url, true);
const node2result = await nav.add(`Testing - ${getRandomString(4)} (2)`, url, true);
await nav.moveAfter(node1result.Id, node2result.Id);
Delete¶
Deletes a given node
import "@pnp/sp/navigation";
const node1result = await nav.add(`Testing - ${getRandomString(4)}`, url, true);
let nodes = await nav();
// check we added a node
let index = nodes.findIndex(n => n.Id === node1result.Id)
// index >= 0
// delete a node
await nav.getById(node1result.Id).delete();
nodes = await nav();
index = nodes.findIndex(n => n.Id === node1result.Id)
// index = -1
Update¶
You are able to update various properties of a given node, such as the the Title, Url, IsVisible.
You may update the Audience Targeting value for the node by passing in Microsoft Group IDs in the AudienceIds array. Be aware, Audience Targeting must already be enabled on the navigation.
import "@pnp/sp/navigation";
await nav.getById(4).update({
Title: "A new title",
AudienceIds:["d50f9511-b811-4d76-b20a-0d6e1c8095f7"],
Url:"/sites/dev/SitePages/home.aspx",
IsVisible:false
});
Children¶
The children property of a Navigation Node represents a collection with all the same properties and methods available on topNavigationBar or quicklaunch.
import "@pnp/sp/navigation";
const childrenData = await nav.getById(1).children();
// add a child
await nav.getById(1).children.add("Title", "Url", true);