Skip to content

Commit 8561390

Browse files
authored
Improve wizard documentation (#10058)
1 parent e72cad4 commit 8561390

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed

precognition.md

+9-6
Original file line numberDiff line numberDiff line change
@@ -152,12 +152,13 @@ If you are validating a subset of a form's inputs with Precognition, it can be u
152152

153153
As we have seen, you can hook into an input's `change` event and validate individual inputs as the user interacts with them; however, you may need to validate inputs that the user has not yet interacted with. This is common when building a "wizard", where you want to validate all visible inputs, whether the user has interacted with them or not, before moving to the next step.
154154

155-
To do this with Precognition, you should mark the fields you wish to validate as "touched" by passing their names to the `touch` method. Then, call the `validate` method with `onSuccess` or `onValidationError` callbacks:
155+
To do this with Precognition, you should call the `validate` method passing the field names you wish to validate to the `only` configuration key. You may handle the validation result with `onSuccess` or `onValidationError` callbacks:
156156

157157
```html
158158
<button
159159
type="button"
160-
@click="form.touch(['name', 'email', 'phone']).validate({
160+
@click="form.validate({
161+
only: ['name', 'email', 'phone'],
161162
onSuccess: (response) => nextStep(),
162163
onValidationError: (response) => /* ... */,
163164
})"
@@ -338,12 +339,13 @@ If you are validating a subset of a form's inputs with Precognition, it can be u
338339

339340
As we have seen, you can hook into an input's `blur` event and validate individual inputs as the user interacts with them; however, you may need to validate inputs that the user has not yet interacted with. This is common when building a "wizard", where you want to validate all visible inputs, whether the user has interacted with them or not, before moving to the next step.
340341

341-
To do this with Precognition, you should mark the fields you wish to validate as "touched" by passing their names to the `touch` method. Then, call the `validate` method with `onSuccess` or `onValidationError` callbacks:
342+
To do this with Precognition, you should call the `validate` method passing the field names you wish to validate to the `only` configuration key. You may handle the validation result with `onSuccess` or `onValidationError` callbacks:
342343

343344
```jsx
344345
<button
345346
type="button"
346-
onClick={() => form.touch(['name', 'email', 'phone']).validate({
347+
onClick={() => form.validate({
348+
only: ['name', 'email', 'phone'],
347349
onSuccess: (response) => nextStep(),
348350
onValidationError: (response) => /* ... */,
349351
})}
@@ -531,12 +533,13 @@ You may also determine if an input has passed or failed validation by passing th
531533
532534
As we have seen, you can hook into an input's `change` event and validate individual inputs as the user interacts with them; however, you may need to validate inputs that the user has not yet interacted with. This is common when building a "wizard", where you want to validate all visible inputs, whether the user has interacted with them or not, before moving to the next step.
533535

534-
To do this with Precognition, you should mark the fields you wish to validate as "touched" by passing their names to the `touch` method. Then, call the `validate` method with `onSuccess` or `onValidationError` callbacks:
536+
To do this with Precognition, you should call the `validate` method passing the field names you wish to validate to the `only` configuration key. You may handle the validation result with `onSuccess` or `onValidationError` callbacks:
535537

536538
```html
537539
<button
538540
type="button"
539-
@change="form.touch(['name', 'email', 'phone']).validate({
541+
@click="form.validate({
542+
only: ['name', 'email', 'phone'],
540543
onSuccess: (response) => nextStep(),
541544
onValidationError: (response) => /* ... */,
542545
})"

0 commit comments

Comments
 (0)