sp-dev-fx-webparts/samples/react-pnpjsexplorer/README.md

111 lines
7.5 KiB
Markdown
Raw Normal View History

2021-10-30 23:42:41 -04:00
# Test PnPjs SharePoint Methods
2021-10-30 23:42:41 -04:00
This web part will allow SPFx developers to test [PnPjs](https://pnp.github.io/pnpjs/getting-started/) methods and it displays response in JSON viewer to identify properties/attributes returned by method/API. This web part can be used as separate component to test PnPjs methods and know the response returned by a particular method/API. To maximize productivity, we should package and deploy it to a test(developer) site collection which then can be used side by side when we are doing development of SPFx solutions.
2021-10-30 23:42:41 -04:00
Note - As of now it only supports to test PnPjs method from sp(SharePoint) packages which contains the fluent API used to call the SharePoint rest services.
2020-10-08 00:18:38 -04:00
You can refer to this blog [link](https://siddharthvaghasia.com/2020/08/16/usage-guide-on-spfx-pnpjs-tester-web-part/) for usage guidance on How to use this web part.
2020-10-08 00:18:38 -04:00
![Web part in action](assets/pnpjstesterinaction.gif?raw=true "Web part in action")
2020-08-18 18:04:11 -04:00
Idea behind this web part
2021-10-30 23:42:41 -04:00
- Most of the SharePoint developers are using PnPjs to develop SPFx solutions.
2020-10-05 05:54:52 -04:00
- During the development, there are times when we wanted to know what properties/attributes will be returned in response
- To get these details, we either use console.log to log response or debug the JavaScript and check what properties/attributes are returned etc.
2021-10-30 23:42:41 -04:00
- This web part can be used so that we can quickly test any SharePoint REST API methods using PnPjs.
Feel free to connect on twitter:@siddh_me or twitter:@sanganikunj for any details.
2020-10-08 00:18:38 -04:00
## Notes on Web part
2021-10-30 23:42:41 -04:00
- Web Part to test PnPjs SharePoint package methods
2020-10-05 05:54:52 -04:00
- Response will be displayed in a code format.
- By default, it will run in context of current site collection.
2021-10-30 23:42:41 -04:00
- Optional option to enter different site collection or sub site url to set PnPjs context to different url(other than current context)
2020-10-05 05:54:52 -04:00
- Support for Get and Post methods.
- Option to see some examples which can be copied and tested just by changing list/libraries/column names.
2021-10-30 23:42:41 -04:00
## Compatibility
2021-10-30 23:42:41 -04:00
![SPFx 1.11](https://img.shields.io/badge/SPFx-1.11.0-green.svg)
2021-11-01 21:07:49 -04:00
![Node.js v10](https://img.shields.io/badge/Node.js-v10-green.svg)
2021-10-30 23:42:41 -04:00
![Compatible with SharePoint Online](https://img.shields.io/badge/SharePoint%20Online-Compatible-green.svg)
![Does not work with SharePoint 2019](https://img.shields.io/badge/SharePoint%20Server%202019-Incompatible-red.svg "SharePoint Server 2019 requires SPFx 1.4.1 or lower")
![Does not work with SharePoint 2016 (Feature Pack 2)](https://img.shields.io/badge/SharePoint%20Server%202016%20(Feature%20Pack%202)-Incompatible-red.svg "SharePoint Server 2016 Feature Pack 2 requires SPFx 1.1")
![Teams Incompatible](https://img.shields.io/badge/Teams-Incompatible-lightgrey.svg)
![Local Workbench Incompatible](https://img.shields.io/badge/Local%20Workbench-Incompatible-red.svg "The solution requires access to SharePoint resources")
![Hosted Workbench Compatible](https://img.shields.io/badge/Hosted%20Workbench-Compatible-green.svg)
2022-02-15 00:37:36 -05:00
![Compatible with Remote Containers](https://img.shields.io/badge/Remote%20Containers-Compatible-green.svg)
## Applies to
2020-10-05 05:54:52 -04:00
- [SharePoint Framework](http://dev.office.com/sharepoint/docs/spfx/sharepoint-framework-overview)
- [Office 365 tenant](http://dev.office.com/sharepoint/docs/spfx/set-up-your-developer-tenant)
### Package and Deploy
Note - If you don't want to build and package on your own, you can directly download package at this [location](./sharepoint/solution/react-pnpjsexplorer.sppkg) and upload to app catalog and install app on required site collection. Skip below steps and directly go to How to use section.
Clone the solution and make sure there is no error before packaging. Try first on local work bench.
```bash
git clone the repo
npm i
gulp serve
```
2020-08-18 18:04:11 -04:00
- Execute the following gulp task to bundle your solution. This executes a release build of your project by using a dynamic label as the host URL for your assets. This URL is automatically updated based on your tenant CDN settings:
2020-08-18 18:04:11 -04:00
```bash
gulp bundle --ship
```
2020-08-18 18:04:11 -04:00
2021-04-26 02:08:59 -04:00
- Execute the following task to package your solution. This creates an updated web part `.sppkg` package on the `sharepoint/solution` folder.
2020-08-18 18:04:11 -04:00
```bash
gulp package-solution --ship
```
2020-08-18 18:04:11 -04:00
- Upload or drag and drop the newly created client-side solution package to the app catalog in your tenant.
2020-08-18 18:04:11 -04:00
- Based on your tenant settings, if you would not have CDN enabled in your tenant, and the `includeClientSideAssets` setting would be true in the `package-solution.json`, the loading URL for the assets would be dynamically updated and pointing directly to the `ClientSideAssets` folder located in the app catalog site collection.
## Solution
2020-10-05 05:54:52 -04:00
| Solution | Author(s) |
| ----------------- | ---------------------------------------------------------------------------------------------------------------------------------- |
2021-10-30 23:42:41 -04:00
| react-pnpjsTester | [Siddharth Vaghasia](https://www.linkedin.com/in/siddharthvaghasia/) and [Kunj Sangani](https://www.linkedin.com/in/kunj-sangani/) |
| react-pnpjsTester | [Abderahman Moujahid](https://github.com/Abderahman88)|
## Version history
2020-10-05 05:54:52 -04:00
| Version | Date | Comments |
| ------- | ------------ | --------------- |
| 1.0.0 | Aug 14, 2020 | Initial Release |
| 2.1.0 | October 05, 2020 | Update to SPFx 1.11.0 |
2020-10-30 22:46:11 -04:00
| 2.1.1 | October 30, 2020 | Fixed button formatting issues |
2021-11-06 14:12:24 -04:00
## Video
2021-11-06 14:12:24 -04:00
[![Introduction to PnPjs Tester Web Part](./assets/video-thumbnail.jpg)](https://www.youtube.com/watch?v=mdgkyxeayY0 "Introduction to PnPjs Tester Web Part")
2021-10-30 23:42:41 -04:00
## Help
We do not support samples, but we 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](https://pnp.github.io/cli-microsoft365/cmd/spfx/spfx-doctor/) from within the solution folder to diagnose incompatibility issues with your environment.
2021-11-20 23:55:10 -05:00
If you encounter any issues while using this sample, [create a new issue](https://github.com/pnp/sp-dev-fx-webparts/issues/new?assignees=&labels=Needs%3A+Triage+%3Amag%3A%2Ctype%3Abug-suspected%2Csample%3A%20react-pnpjsexplorer&template=bug-report.yml&sample=react-pnpjsexplorer&authors=@Abderahman88%20@siddharth-vaghasia%20@kunj-sangani&title=react-pnpjsexplorer%20-%20).
2021-10-30 23:42:41 -04:00
2021-11-20 23:55:10 -05:00
For questions regarding this sample, [create a new question](https://github.com/pnp/sp-dev-fx-webparts/issues/new?assignees=&labels=Needs%3A+Triage+%3Amag%3A%2Ctype%3Aquestion%2Csample%3A%20react-pnpjsexplorer&template=question.yml&sample=react-pnpjsexplorer&authors=@Abderahman88%20@siddharth-vaghasia%20@kunj-sangani&title=react-pnpjsexplorer%20-%20).
2021-10-30 23:42:41 -04:00
2021-11-20 23:55:10 -05:00
Finally, if you have an idea for improvement, [make a suggestion](https://github.com/pnp/sp-dev-fx-webparts/issues/new?assignees=&labels=Needs%3A+Triage+%3Amag%3A%2Ctype%3Aenhancement%2Csample%3A%20react-pnpjsexplorer&template=question.yml&sample=react-pnpjsexplorer&authors=@Abderahman88%20@siddharth-vaghasia%20@kunj-sangani&title=react-pnpjsexplorer%20-%20).
2021-10-30 23:42:41 -04:00
For any issue or help, Buzz us on twitter:([siddh_me](https://twitter.com/siddh_me/)) or ([sanganikunj](https://twitter.com/sanganikunj))
2021-11-07 02:11:17 -05:00
## 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.**
2021-12-20 10:25:30 -05:00
<img src="https://pnptelemetry.azurewebsites.net/sp-dev-fx-webparts/samples/react-pnpjsexplorer" />