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

146 lines
7.0 KiB
Markdown
Raw Normal View History

2022-10-14 20:31:36 -04:00
# Zod
2022-09-25 07:26:40 -04:00
## Summary
2022-10-14 20:31:36 -04:00
This sample shows the usage of [Zod](https://zod.dev/) to eliminate manual cast and validation of the data coming from external API (e.g. SharePoint REST API, Graph API, etc.).
I have a `Form Results` list that has these columns:
2022-10-14 20:31:36 -04:00
Column|Type
-------|----
Title|Single line of text
Description|Multiple lines of text
Qty|Number (> 0)
Rating|Number (1 - 10)
Email|Single line of text
Status|Choice
PublishDate|Date
Contact|Person
When we get list items data from SharePoint REST API. It would be better to have fully typed data to eliminate runtime error and also make it easier to process the data in TypeScript.
2022-10-14 20:31:36 -04:00
So I used [Zod](https://zod.dev/) to automatically cast and validate type of the data.
Below is example on how to setup the schema for my data above ([Model.ts](/src/webparts/reactZod/utils/Models.ts)):
![Schema](assets/schema.png)
We can also generate TypeScript [Type](https://www.typescriptlang.org/docs/handbook/2/everyday-types.html) from the schema (See `FormResultModel` and `FormResultsModel`).
Below is how to cast and validate data based on the schema ([SharePointHelper.ts](/src/webparts/reactZod/utils/SharePointHelper.ts)):
![Parse Data](assets/parse-data.png)
That line of code will do the following:
- Cast
- `Id` as number
- `Title` as string
- `Description` as string
- `IsActive` as boolean
- `Qty` as number
- `Rating` as number
- `Email` as string
- `Status` as string
- `PublishDate` as string
- `Contact` as object
- Validate
- `Qty` should be non negative
- `Rating` should be between 1 - 10
- `Email` should be valid email
- `Status` should be "Active", "Done", or "Rejected"
- Transform
- `PublishDate` to be DateTime
- `Contact` to be Contact.Title value from API
Below is the result type from the parse operation:
![Result](assets/result.png)
When it's failed to parse (wrong type or not pass validation), it will throw error.
In this example I just simple render error message when it happens.
![Failed parse](assets/failed-parse.png)
In this example, I used the parsed result data to be displayed on a [DetailsList](https://developer.microsoft.com/en-us/fluentui#/controls/web/detailslist) component
![Data usage](assets/data-usage.png)
## Compatibility
![SPFx 1.15.2](https://img.shields.io/badge/SPFx-1.15.2-green.svg)
![Node.js v14 | v16](https://img.shields.io/badge/Node.js-v14%20%7C%20v16-green.svg)
![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")
![Local Workbench Unsupported](https://img.shields.io/badge/Local%20Workbench-Unsupported-red.svg "Local workbench is no longer available as of SPFx 1.13 and above")
![Hosted Workbench Compatible](https://img.shields.io/badge/Hosted%20Workbench-Compatible-green.svg)
![Compatible with Remote Containers](https://img.shields.io/badge/Remote%20Containers-Compatible-green.svg)
2022-09-25 07:26:40 -04:00
2022-10-14 20:31:36 -04:00
## Applies to
2022-09-25 07:26:40 -04:00
2022-10-14 20:31:36 -04:00
* [SharePoint Framework](https://docs.microsoft.com/sharepoint/dev/spfx/sharepoint-framework-overview)
* [Microsoft 365 tenant](https://docs.microsoft.com/sharepoint/dev/spfx/set-up-your-development-environment)
2022-09-25 07:26:40 -04:00
2022-10-14 20:31:36 -04:00
> Get your own free development tenant by subscribing to [Microsoft 365 developer program](http://aka.ms/o365devprogram)
2022-09-25 07:26:40 -04:00
2022-10-14 20:31:36 -04:00
## Solution
2022-09-25 07:26:40 -04:00
2022-10-14 20:31:36 -04:00
Solution|Author(s)
--------|---------
react-zod | [Ari Gunawan](https://github.com/AriGunawan) ([@arigunawan3023](https://twitter.com/arigunawan3023))
2022-09-25 07:26:40 -04:00
2022-10-14 20:31:36 -04:00
## Version history
Version|Date|Comments
-------|----|--------
1.0|October 15, 2022|Initial release
2022-09-25 07:26:40 -04:00
## Prerequisites
2022-10-14 20:31:36 -04:00
Create a `Form Results` list that has these columns:
Column|Type
-------|----
Title|Single line of text
Description|Multiple lines of text
Qty|Number (> 0)
Rating|Number (1 - 10)
Email|Single line of text
Status|Choice
PublishDate|Date
Contact|Person
2022-09-25 07:26:40 -04:00
2022-10-14 20:31:36 -04:00
## Minimal path to awesome
2022-09-25 07:26:40 -04:00
2022-10-14 20:31:36 -04:00
* Clone this repository (or [download this solution as a .ZIP file](https://pnp.github.io/download-partial/?url=https://github.com/pnp/sp-dev-fx-webparts/tree/main/samples/react-zod) then unzip it)
* From your command line, change your current directory to the directory containing this sample (`react-zod`, located under `samples`)
* in the command line run:
* `npm install`
* `gulp serve`
2022-09-25 07:26:40 -04:00
2022-10-18 05:28:15 -04:00
## Features
2022-10-18 05:28:15 -04:00
This Web Part illustrates the following concepts:
- Use [PnPJS](https://pnp.github.io/pnpjs/) for getting associated sites
- Use [Zod](https://zod.dev/) to cast value type from SharePoint REST API
- Use [Zod](https://zod.dev/) to validate value from SharePoint REST API
- Use [Zod](https://zod.dev/) to transform value from SharePoint REST API
- Use [DetailsList](https://developer.microsoft.com/en-us/fluentui#/controls/web/detailslist) component to display data
- Use [SPFx Fast Serve](https://github.com/s-KaiNet/spfx-fast-serve) for improving development productivity
2022-09-25 07:26:40 -04:00
2022-10-14 20:31:36 -04:00
## Help
2022-09-25 07:26:40 -04:00
2022-10-14 20:31:36 -04:00
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.
2022-09-25 07:26:40 -04:00
2022-10-14 20:31:36 -04:00
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.
2022-09-25 07:26:40 -04:00
2022-10-14 20:31:36 -04:00
You can try looking at [issues related to this sample](https://github.com/pnp/sp-dev-fx-webparts/issues?q=label%3A%22sample%3A%20react-zod%22) to see if anybody else is having the same issues.
2022-09-25 07:26:40 -04:00
2022-10-14 20:31:36 -04:00
You can also try looking at [discussions related to this sample](https://github.com/pnp/sp-dev-fx-webparts/discussions?discussions_q=react-zod) and see what the community is saying.
2022-09-25 07:26:40 -04:00
2022-10-14 20:31:36 -04:00
If you encounter any issues 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-zod&template=bug-report.yml&sample=react-zod&authors=@AriGunawan&title=react-zod%20-%20).
2022-09-25 07:26:40 -04:00
2022-10-14 20:31:36 -04: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-zod&template=question.yml&sample=react-zod&authors=@AriGunawan&title=react-zod%20-%20).
2022-09-25 07:26:40 -04:00
2022-10-14 20:31:36 -04: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-zod&template=suggestion.yml&sample=react-zod&authors=@AriGunawan&title=react-zod%20-%20).
2022-09-25 07:26:40 -04:00
2022-10-14 20:31:36 -04:00
## Disclaimer
2022-09-25 07:26:40 -04:00
2022-10-14 20:31:36 -04:00
**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.**
2022-09-25 07:26:40 -04:00
2022-10-14 20:31:36 -04:00
<img src="https://pnptelemetry.azurewebsites.net/sp-dev-fx-webparts/samples/react-zod" />