sp-dev-fx-webparts/samples/react-taxonomypicker-panel
Hugo Bernier 7e97daab76 Added more contributions 2023-03-15 01:23:34 -04:00
..
.devcontainer Added 1.5.1 containers 2022-02-16 20:23:19 -05:00
assets Changed docs links to learn 2022-10-24 09:42:45 -04:00
config Taxonomy panel picker webpart (#546) 2018-07-02 12:46:54 +03:00
src/webparts/reactTaxonomypickerPanel Taxonomy picker - version upgrade and bug fix (#601) 2018-09-10 13:10:38 +03:00
.editorconfig Taxonomy panel picker webpart (#546) 2018-07-02 12:46:54 +03:00
.gitignore Taxonomy panel picker webpart (#546) 2018-07-02 12:46:54 +03:00
.yo-rc.json Taxonomy panel picker webpart (#546) 2018-07-02 12:46:54 +03:00
README.md Added more contributions 2023-03-15 01:23:34 -04:00
gulpfile.js Taxonomy panel picker webpart (#546) 2018-07-02 12:46:54 +03:00
package.json Taxonomy picker - version upgrade and bug fix (#601) 2018-09-10 13:10:38 +03:00
tsconfig.json Taxonomy panel picker webpart (#546) 2018-07-02 12:46:54 +03:00

README.md

SPFx web part with Taxonomy picker Office UI Fabric Panel.

Summary

Sample web part with Single and Multi-select taxonomy pickers using Office UI Fabric panel. The web part uses the Taxonomy API support available in the @pnp/taxonomy.

TaxonomyPickerPanel web part

Compatibility

⚠️ Important
Every SPFx version is only compatible with specific version(s) of Node.js. In order to be able to build this sample, please 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.

SPFx 1.5.1 Node.js v8 | v6 Compatible with SharePoint Online Does not work with SharePoint 2019 Does not work with SharePoint 2016 (Feature Pack 2) Local Workbench Compatible Hosted Workbench Compatible Compatible with Remote Containers

Applies to

Prerequisites

  • @pnp/sp
  • Office UI Fabric React

Contributors

Version history

Version Date Comments
1.0 June 22, 2018 Initial release
1.1 August 20, 2018 Bug fix and version upgrade

Minimal Path to Awesome

  • Clone this repository

  • Navigate to the file 'src/webparts/components/TermsPickerComponent.tsx'

  • In the method "GetTerms", replace the <TERM_STORE_NAME> with the term store name in your tenant.

  • Navigate to the file 'src/webparts/components/ReactTaxonomyPickerpanel.tsx'

  • In the RENDER method of the web part, a custom taxonomy picker component is used. Please replace the "TermSetId" property with the desired term set id in your tenant.

  • in the command line run:

    • npm install
    • gulp serve
  • Navigate to - /_layouts/workbench.aspx and add the "react-taxonomypicker-panel"

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

Features

  • This web part demonstrates the use of a custom taxonomy picker control built with Office UI Fabric React Panel and Tagpicker that enables users to select terms for a single-select or multi-select taxonomy field in a controlled manner.

  • The custom taxonomy picker control is a reusable React component and can be easily placed in a SPFx web part just by providing the TermSetId as a property to the component.

    <TermsPickerComponent IsMultiValue={false} TermSetId='' LabelText='Single-select field' SelectedTerms={}/>

  • By supplying the "SelectedTerms" property, the control can also be used in scenarios where pre-filled choices are to be shown such as the Edit form of a list item etc.

  • The selected terms can be supplied as an array of a custom object

    { name : "", key : "" }

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.