pawsitiwe / sulu-frontend-validation-bundle
A bundle for Sulu form frontend validation
Installs: 2
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:sulu-form-bundle
Requires
- php: ^8.2
- sulu/form-bundle: ^2.0
- symfony/framework-bundle: ^6.0
README
Installation
composer require pawsitiwe/sulu-frontend-validation-bundle
Setup
Service Registration
The extension needs to be registered as symfony service.
services: Pawsitiwe\Controller\ValidationController: arguments: $formBuilder: '@sulu_form.builder' tags: ['controller.service_arguments']
Bundle Registration
return [ Pawsitiwe\SuluFrontendValidationBundle::class => ['all' => true], ]
Route Registration
sulu_frontend_validation: resource: '@SuluFrontendValidationBundle/Resources/config/routes.yaml' prefix: /
Usage
The route /validate-form-field returns the form validation as JSON
Example Response
When the form has validation errors, the response will be in the following format:
{ "errors": { "email": [ "This value is not a valid email address." ], "lastName": [ "This value should not be blank." ] } }
Each key in the errors object represents a form field, and the value is an array of error messages for that field.
Successful Validation
When the form is valid, the response will be:
{ "message": "The form is valid!" }
Error Handling
If no form data is found in the request, the response will be:
{ "message": "No form data found" }