sp-dev-fx-webparts/samples/react-property-pane-navigation
Hugo Bernier 6f5bd8f5cd
Merge pull request #4953 from pnp/dependabot/npm_and_yarn/samples/react-property-pane-navigation/follow-redirects-1.15.6
2024-03-25 21:40:00 -04:00
..
assets Updated README 2024-02-27 11:58:17 +01:00
config Added react-property-pane-navigation sample 2024-02-27 11:42:36 +01:00
src Added react-property-pane-navigation sample 2024-02-27 11:42:36 +01:00
teams Added react-property-pane-navigation sample 2024-02-27 11:42:36 +01:00
.eslintrc.js Added react-property-pane-navigation sample 2024-02-27 11:42:36 +01:00
.gitignore Added react-property-pane-navigation sample 2024-02-27 11:42:36 +01:00
.npmignore Added react-property-pane-navigation sample 2024-02-27 11:42:36 +01:00
.nvmrc Added react-property-pane-navigation sample 2024-02-27 11:42:36 +01:00
.yo-rc.json Added react-property-pane-navigation sample 2024-02-27 11:42:36 +01:00
README.md Update README.md 2024-02-29 12:50:17 +01:00
gulpfile.js Added react-property-pane-navigation sample 2024-02-27 11:42:36 +01:00
package-lock.json Merge pull request #4953 from pnp/dependabot/npm_and_yarn/samples/react-property-pane-navigation/follow-redirects-1.15.6 2024-03-25 21:40:00 -04:00
package.json Added react-property-pane-navigation sample 2024-02-27 11:42:36 +01:00
tsconfig.json Added react-property-pane-navigation sample 2024-02-27 11:42:36 +01:00

README.md

Property Pane Navigation

Summary

This sample showcase how to handle the navigation between property pane pages.

Property pane navigation in action

Property pane navigation

Property pane navigation

Property pane navigation

Compatibility

⚠️ Important
Every SPFx version is optimally compatible with specific versions of Node.js. In order to be able to build this sample, you need to ensure that the version of Node on your workstation matches one of the versions listed in this section. This sample will not work on a different version of Node.
Refer to https://aka.ms/spfx-matrix for more information on SPFx compatibility.

This sample is optimally compatible with the following environment configuration:

SPFx 1.18.2 Node.js v16 | v18 Compatible with SharePoint Online Does not work with SharePoint 2019 Does not work with SharePoint 2016 (Feature Pack 2) Local Workbench Unsupported Hosted Workbench Compatible Compatible with Remote Containers

Applies to

Get your own free development tenant by subscribing to Microsoft 365 developer program

Contributors

Version history

Version Date Comments
1.0 February 27, 2024 Initial release

Prerequisites

Minimal path to awesome

  • Clone this repository (or download this solution as a .ZIP file then unzip it)
  • From your command line, change your current directory to the directory containing this sample (react-property-pane-navigation, located under samples)
  • in the command line run:
    • npm install
    • gulp serve

This sample can also be opened with VS Code Remote Development. Visit https://aka.ms/spfx-devcontainer for further instructions.

Features

This sample showcase how to handle the navigation between property pane pages using the web part getPropertyPaneConfiguration method like the following:

protected getPropertyPaneConfiguration(): IPropertyPaneConfiguration {
	return {
		pages: [{
			header: { ... },
			groups: [ ... ],
		},
  		{
    			header: { ... },
			groups: [ ... ],
		},
		{
			header: { ... },
			groups: [ ... ],
		}],
	};
  }

Each element in the pages array represents a property pane page, the SharePoint Framework will enable navigation and will render the pages in the order they are defined in the array. The first page in the array will be the first page to be rendered, and so on.

Help

We do not support samples, but this community is always willing to help, and we want to improve these samples. We use GitHub to track issues, which makes it easy for community members to volunteer their time and help resolve issues.

If you're having issues building the solution, please run spfx doctor from within the solution folder to diagnose incompatibility issues with your environment.

You can try looking at issues related to this sample to see if anybody else is having the same issues.

You can also try looking at discussions related to this sample and see what the community is saying.

If you encounter any issues using this sample, create a new issue.

For questions regarding this sample, create a new question.

Finally, if you have an idea for improvement, make a suggestion.

Disclaimer

THIS CODE IS PROVIDED AS IS WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING ANY IMPLIED WARRANTIES OF FITNESS FOR A PARTICULAR PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT.