sp-dev-fx-webparts/samples/react-copy-views
Hugo Bernier 8e6bd1404b Added web part to every sample 2024-04-18 01:51:29 -04:00
..
.devcontainer Updated container, readme, sample.json 2023-02-10 15:28:17 -05:00
assets Added web part to every sample 2024-04-18 01:51:29 -04:00
config Add Sorting to list and view pickers 2023-02-15 10:44:52 +01:00
sharepoint/assets Adds copy views solution 2022-09-02 08:35:24 +02:00
src Add Sorting to list and view pickers 2023-02-15 10:44:52 +01:00
teams Adds copy views solution 2022-09-02 08:35:24 +02:00
.eslintrc.js Adds copy views solution 2022-09-02 08:35:24 +02:00
.gitignore Adds copy views solution 2022-09-02 08:35:24 +02:00
.npmignore Adds copy views solution 2022-09-02 08:35:24 +02:00
.yo-rc.json Updates react-copy-views sample to SPFx 1.16.1 2023-02-09 10:30:33 +01:00
README.md Updated links to devprogram 2024-02-06 11:16:44 -05:00
gulpfile.js Updated sample.json and readme 2022-09-05 17:33:15 -04:00
package-lock.json Bump follow-redirects from 1.15.4 to 1.15.6 in /samples/react-copy-views 2024-03-16 22:59:44 +00:00
package.json Updates react-copy-views sample to SPFx 1.16.1 2023-02-09 10:30:33 +01:00
tsconfig.json Adds copy views solution 2022-09-02 08:35:24 +02:00

README.md

Copy Views

Summary

This solution enables a user to copy views from one list/library to another across site collections. It can be used as a web part on a page, or as a ListView Command Set extension. The user can select multiple views to copy to multiple target lists.

Copy Views extension

Copy Views

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.

This sample is optimally compatible with the following environment configuration:

SPFx 1.16.1 Node.js v16 | v14 | v12 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.2.0 Feb 9, 2023 Upgraded to SPFx version 1.16.1
1.0.1.5 August 29, 2022 Initial release

Minimal Path to Awesome

  • Clone this repository
  • Ensure that you are at the solution folder
  • in the command-line run:
    • npm install
    • gulp serve
  • To package and deploy:
    • Use gulp bundle --ship & gulp package-solution --ship
    • Add the .sppkg to your SharePoint App Catalog

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

Features

  • Views can be copied from one list or library to other lists or libraries across site collections.
  • List views can only be copied to other lists and library views can only be copied to other libraries.
  • When opening the component using the List view Command Set extension, the current site, list and view will be preselected. When opening the component from a webpart, the current site will be preselected.
  • When copying views, the following things will be included:
    • Field references.
    • Sort and filter settings.
    • Column formatting and view formatting.
  • Fields that are not available on the target list are excluded from the copied view. The view query is cleaned of these fields so as not to break the view when columns are used to filter on. *
  • Views of type 'Kanban board' and 'modern calendar' are currently not supported.
  • Views that are set to default on the source list will not automatically be set to default on the target list. The checkbox 'Set as default' will need to be used.

*The component uses the DOM parser to parse the ViewQuery XML, and removes any filter conditions that reference fields that are not available on the target list. The component can even clean filter queries with multiple And/Or CAML-conditions.

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.