F
Filamentβ€’2mo ago
camya

Form in Livewire: Disable Submit-Button, while a file uploads?

Hi, im using the Filament Form inside a Livewire component. While uploading a large file, the user can still submit the main form. How can i disable the button while the upload runs. I search for a possiblity to listen for "livewire-upload-start | -finish| -cancel | -error | -progress" or some kind of variables available in filament. Something like this... (PSEUDO CODE)
<div>
<form wire:submit="create">
{{ $this->form }}

<button
type="submit"
disabled="{ $this->form->fileUploading }"
>
Submit
</button>
</form>

<x-filament-actions::modals />
</div>
<div>
<form wire:submit="create">
{{ $this->form }}

<button
type="submit"
disabled="{ $this->form->fileUploading }"
>
Submit
</button>
</form>

<x-filament-actions::modals />
</div>
Adding the Form documentation: https://filamentphp.com/docs/3.x/forms/adding-a-form-to-a-livewire-component#adding-the-form
8 Replies
Remi Hindriks
Remi Hindriksβ€’2mo ago
did you ever solve this?
Dennis Koch
Dennis Kochβ€’2mo ago
Isn't this just a wire:loading.attr="disabled" ?
btx
btxβ€’5w ago
I'm also struggeling with it, but my submit button is inside the wizard
LeandroFerreira
LeandroFerreiraβ€’5w ago
are you using the wizard in a custom page or resource?
btx
btxβ€’5w ago
Yes, I followed this guide to add a form to a livewire component. The form has two wizard steps, a name input and a file upload. Seems I can not prevent submitting before the upload is finished. And secondly if the user uploads 5GB, there will be a long lag after hitting submit, until the file is copied to S3. Seems it is not possible to make livewire upload it directly to S3 istead of copying? https://filamentphp.com/docs/3.x/forms/adding-a-form-to-a-livewire-component
LeandroFerreira
LeandroFerreiraβ€’5w ago
5GB 😡 😡 I think you can use ->moveFiles() to store as permanent files try to add wire:target: https://livewire.laravel.com/docs/wire-loading#targeting-specific-actions
Laravel
wire:loading | Laravel
A full-stack framework for Laravel that takes the pain out of building dynamic UIs.
Dennis Koch
Dennis Kochβ€’5w ago
Seems it is not possible to make livewire upload it directly to S3 istead of copying?
It's possible. Your need to switch temporary livewire files to S3, too, though. There's a setting for it in config/livewire.php
btx
btxβ€’5w ago
Thank you, got it working!
Want results from more Discord servers?
Add your server
More Posts