pawsitiwe/sulu-frontend-validation-bundle

A bundle for Sulu form frontend validation

0.1.1 2024-07-28 15:33 UTC

This package is auto-updated.

Last update: 2025-03-28 17:21:27 UTC


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"
}