forked from edmundhung/conform
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #36 from coji/gitlocalize-28574
getYupConstraint.md translated to Japanese.
- Loading branch information
Showing
1 changed file
with
34 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# getYupConstraint | ||
|
||
Yupスキーマをイントロスペクトすることで、各フィールドの検証属性を含むオブジェクトを返すヘルパーです。 | ||
|
||
```tsx | ||
const constraint = getYupConstraint(schema); | ||
``` | ||
|
||
## パラメーター | ||
|
||
### `schema` | ||
|
||
イントロスペクトされるべき Yup スキーマです。 | ||
|
||
## 例 | ||
|
||
```tsx | ||
import { getYupConstraint } from '@conform-to/yup'; | ||
import { useForm } from '@conform-to/react'; | ||
import * as yup from 'yup'; | ||
|
||
const schema = yup.object({ | ||
title: yup.string().required().min(5).max(20), | ||
description: yup.string().optional().min(100).max(1000), | ||
}); | ||
|
||
function Example() { | ||
const [form, fields] = useForm({ | ||
constraint: getYupConstraint(schema), | ||
}); | ||
|
||
// ... | ||
} | ||
``` |