Skip to content

Instantly share code, notes, and snippets.

@manuelcoppotelli
Forked from ju5t/HasFormRequest.php
Created September 3, 2024 13:27
Show Gist options
  • Save manuelcoppotelli/7649b2e69e067773a9549e6d9bb3cb52 to your computer and use it in GitHub Desktop.
Save manuelcoppotelli/7649b2e69e067773a9549e6d9bb3cb52 to your computer and use it in GitHub Desktop.

Form Requests in Livewire

This is a simple implementation of Form Requests in Livewire.

Usage

Using this is pretty straight forward. Add the HasFormRequest trait to your component and set a protected variable named $request to your FormRequest.

class UserEdit extends Component
{
    use HasFormRequest;
  
    /**
     * @var class-string<FormRequest>
     */
    protected string $request = UserEditRequest::class;
}

Dynamic Validation

You can add additional validation rules in your Form Request depending on the value of a property in your Livewire component. This trait adds an attribute called __instance.

An example:

/** @var ?UserEdit $instance */
$instance = $this->attributes->get('__instance');

if ($instance && $instance->user->exists()) {
    // Additional rules
}
<?php
/** @noinspection PhpUnused */
namespace App\Http\Livewire\Traits;
use Exception;
use Illuminate\Foundation\Http\FormRequest;
use Illuminate\Support\Facades\Gate;
use Livewire\Component;
/**
* @mixin Component
*/
trait HasFormRequest
{
/**
* @noinspection PhpMissingReturnTypeInspection
*
* @throws Exception
*/
public function mountHasFormRequest()
{
Gate::allowIf(fn () => $this->isAuthorized());
}
/**
* @throws Exception
*/
protected function getRequestRules(): array
{
$request = $this->getFormRequest();
return method_exists($request, 'rules')
? $request->rules()
: [];
}
/**
* Get the messages from the form request.
*
* @throws Exception
*/
protected function getRequestMessages(): array
{
$messages = $this->getFormRequest()->messages();
return ! empty($messages)
? $messages
: [];
}
/**
* This is a near-copy of passesAuthorization on a standard
* FormRequest. It has been adjusted for Livewire.
*
* @return bool
*
* @throws Exception
*/
protected function isAuthorized(): bool
{
$request = $this->getFormRequest();
if (method_exists($request, 'authorize')) {
return app()->call([$request, 'authorize']);
}
return true;
}
/**
* Get the form request from the Livewire component.
*
* @return FormRequest
*
* @throws Exception
*/
protected function getFormRequest(): FormRequest
{
if (! property_exists($this, 'request')) {
throw new Exception('Please specify a `request` parameter and set it to a FormRequest');
}
if (! new $this->request instanceof FormRequest) {
throw new Exception("$this->request is not a valid `FormRequest`.");
}
/** @var FormRequest $request */
$request = $this->request::createFrom(request());
$request->attributes->set('__instance', $this);
return $request;
}
/**
* @throws Exception
*/
protected function getRules(): array
{
$rules = $this->getRequestRules();
if (! empty($rules)) {
return $rules;
}
if (method_exists($this, 'rules')) {
return $this->rules();
}
if (property_exists($this, 'rules')) {
return $this->rules;
}
return [];
}
/**
* @throws Exception
*/
protected function getMessages(): array
{
$messages = $this->getRequestMessages();
if (! empty($messages)) {
return $messages;
}
if (method_exists($this, 'messages')) {
return $this->messages();
}
if (property_exists($this, 'messages')) {
return $this->messages;
}
return [];
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment