Validation
Learn how to start using Precognition form validation in your Nuxt projects!
Laravel Precognition allows you to anticipate the outcome of a future HTTP request. One of the primary use cases of Precognition is the ability to provide "live" validation for your frontend JavaScript application without having to duplicate your application's backend validation rules.
You can also check the official Laravel documentation for more details about this feature - Laravel Precognition.
Live validation
First, to enable Precognition for a route, the HandlePrecognitiveRequests
middleware should be added to the route definition. You should also create a form request to house the route's validation rules:
With nuxt-sanctum-precognition
module installed, you can now create a form object using Precognition's usePrecognitionForm
composable, providing the HTTP method (post
), the target URL (/users
), and the initial form data.
Then, to enable live validation, invoke the form's validate
method on each input's change
event, providing the input's name:
Now, as the form is filled by the user, Precognition will provide live validation output powered by the validation rules in the route's form request. When the form's inputs are changed, a debounced "precognitive" validation request will be sent to your Laravel application. You may configure the debounce timeout by changing the validationTimeout
config in nuxt.config.ts
:
When a validation request is in-flight, the form's validating
property will be true
:
Any validation errors returned during a validation request or a form submission will automatically populate the form's errors
object:
You can determine if the form has any errors using the form's hasErrors
property:
You may also determine if an input has passed or failed validation by passing the input's name to the form's valid
and invalid
functions, respectively:
If you are validating a subset of a form's inputs with Precognition, it can be useful to manually clear errors. You may use the form's forgetError
function to achieve this:
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.
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
, onError
or onValidationError
callbacks:
Of course, you may also execute code in reaction to the response to the form submission. The form's submit
function returns an ofetch
response promise. This provides a convenient way to access the response payload, reset the form inputs on successful submission, or handle a failed request:
There is a way also to leverage async-await syntax to submit the form:
You may determine if a form submission request is in-flight by inspecting the form's processing
property:
This overview covers most of the use cases. For more details about the composable or error handling, click on the corresponding link!
Last updated