F
Filament13mo ago
Zakhaev

Custom form component. But i want it to show a model.

I have a custom component. I want to show a button on my form. A button that shows a modal. I couldnt find anything related to this so i thought i could ask for some help or advice.
Solution:
yes.. create a livewire component called CreateDealer ```html <!-- resources/views/livewire/create-dealer.blade.php --> <div>...
Jump to solution
17 Replies
Zakhaev
Zakhaev13mo ago
ReportsNewDealer is the custom component. Code on the right side
Tin
Tin13mo ago
GitHub
How to use · filamentphp filament · Discussion #3419
Hi i have a complex, custom form page where on a click of a button i want to open a modal with some extra data. Can x-filament::modal be used for this? It's not an action so i need to be opened...
Tin
Tin13mo ago
Filament
Opening a modal in a blade with button outside it's trigger slot by...
Filament is a collection of tools for rapidly building beautiful TALL stack apps, designed for humans.
Tin
Tin13mo ago
Also this You need to dispatch this open-modal event
Zakhaev
Zakhaev13mo ago
Thank you i will try it out and let you know It wont work so i tried using a livewire component but that also doesnt work Here i call the custom filament component --------------------------------------------
Grid::make(2)->schema([
Heading::make('heading_field')
->setText('Dealer/Reparatiebedrijf'),
ReportsNewDealer::make('dealer'),
]),
Grid::make(2)->schema([
Heading::make('heading_field')
->setText('Dealer/Reparatiebedrijf'),
ReportsNewDealer::make('dealer'),
]),
this is the component that shows the view --------------------------------------------
namespace App\Forms\Components;

use Filament\Forms\Components\Component;

class ReportsNewDealer extends Component
{
protected string $view = 'forms.components.reports.new_dealer';

public static function make(): static
{
return new static();
}
}
namespace App\Forms\Components;

use Filament\Forms\Components\Component;

class ReportsNewDealer extends Component
{
protected string $view = 'forms.components.reports.new_dealer';

public static function make(): static
{
return new static();
}
}
this is the content of the view --------------------------------------------
<livewire:create-dealer-component />
<livewire:create-dealer-component />
this is the livewire component -------------------------------
namespace App\Http\Livewire;

use Filament\Forms;
use Illuminate\Contracts\View\View;
use Livewire\Component;

class CreateDealerComponent extends Component implements Forms\Contracts\HasForms
{
use Forms\Concerns\InteractsWithForms;
public $showModal = false;

public function openModal()
{
$this->showModal = true;
}

public function closeModal()
{
$this->showModal = false;
}
public function render()
{
return view('livewire.two-way-two-create-dealer-component');
}

public function submit(): void
{
// ...
}

}
namespace App\Http\Livewire;

use Filament\Forms;
use Illuminate\Contracts\View\View;
use Livewire\Component;

class CreateDealerComponent extends Component implements Forms\Contracts\HasForms
{
use Forms\Concerns\InteractsWithForms;
public $showModal = false;

public function openModal()
{
$this->showModal = true;
}

public function closeModal()
{
$this->showModal = false;
}
public function render()
{
return view('livewire.two-way-two-create-dealer-component');
}

public function submit(): void
{
// ...
}

}
this is the view of the livewire component -------------------------------------------
<div>
<button wire:click="openModal" class="filament-button filament-button-size-md inline-flex items-center justify-center py-1 gap-1 font-medium rounded-lg border transition-colors outline-none focus:ring-offset-2 focus:ring-2 focus:ring-inset min-h-[2.25rem] px-4 text-sm text-white shadow focus:ring-white border-transparent bg-primary-600 hover:bg-primary-500 focus:bg-primary-700 focus:ring-offset-primary-700 filament-page-button-action">
<span>Nieuw dealer/reparatiebedrijf aanmaken</span>
</button>

<x-filament::modal :open="$showModal" wire:ignore.self>
<x-slot name="header">
Custom modal:
</x-slot>

Modal content

<x-slot name="footer">
<button wire:click="closeModal" class="filament-button filament-button-size-md inline-flex items-center justify-center py-1 gap-1 font-medium rounded-lg border transition-colors outline-none focus:ring-offset-2 focus:ring-2 focus:ring-inset min-h-[2.25rem] px-4 text-sm text-white shadow focus:ring-white border-transparent bg-primary-600 hover:bg-primary-500 focus:bg-primary-700 focus:ring-offset-primary-700 filament-page-button-action">Close Modal</button>
</x-slot>
</x-filament::modal>
</div>
<div>
<button wire:click="openModal" class="filament-button filament-button-size-md inline-flex items-center justify-center py-1 gap-1 font-medium rounded-lg border transition-colors outline-none focus:ring-offset-2 focus:ring-2 focus:ring-inset min-h-[2.25rem] px-4 text-sm text-white shadow focus:ring-white border-transparent bg-primary-600 hover:bg-primary-500 focus:bg-primary-700 focus:ring-offset-primary-700 filament-page-button-action">
<span>Nieuw dealer/reparatiebedrijf aanmaken</span>
</button>

<x-filament::modal :open="$showModal" wire:ignore.self>
<x-slot name="header">
Custom modal:
</x-slot>

Modal content

<x-slot name="footer">
<button wire:click="closeModal" class="filament-button filament-button-size-md inline-flex items-center justify-center py-1 gap-1 font-medium rounded-lg border transition-colors outline-none focus:ring-offset-2 focus:ring-2 focus:ring-inset min-h-[2.25rem] px-4 text-sm text-white shadow focus:ring-white border-transparent bg-primary-600 hover:bg-primary-500 focus:bg-primary-700 focus:ring-offset-primary-700 filament-page-button-action">Close Modal</button>
</x-slot>
</x-filament::modal>
</div>
is it not possible to use a livewire component or am i doing something wrong
LeandroFerreira
LeandroFerreira13mo ago
please read #✅┊rules and share your code correctly..
Zakhaev
Zakhaev13mo ago
i changed the code format.
LeandroFerreira
LeandroFerreira13mo ago
try to add an id
<x-filament::modal id="myModal">
<x-filament::modal id="myModal">
and dispatch the event
<x-filament::button @click="$dispatch('open-modal', { id: 'myModal' })" type="button">Button</x-filament::button>
<x-filament::button @click="$dispatch('open-modal', { id: 'myModal' })" type="button">Button</x-filament::button>
Zakhaev
Zakhaev13mo ago
@Leandro Ferreira the livewire component wont show up in my form. i cant test if the modal works. Do you maybe know what the problem could be does anyone know what i should do im stuck with this problem
Patrick Boivin
Patrick Boivin13mo ago
Can you simplify your Livewire component and get it to render? Remove the modal code and show a simple message. I think this is your first step... Second, I think your modal should live outside of your form component. Outside of the entire form ideally.
Solution
LeandroFerreira
LeandroFerreira13mo ago
yes.. create a livewire component called CreateDealer
<!-- resources/views/livewire/create-dealer.blade.php -->
<div>
<x-filament::modal id="createDealer">
<x-slot name="heading">
Create Dealer
</x-slot>

<div>
Content...
</div>

<x-slot name="footer">
<x-filament::button type="button" @click="$dispatch('close-modal', {id: 'createDealer'})">Close</x-filament::button>
</x-slot>
</x-filament::modal>

<x-filament::button type="button" @click="$dispatch('open-modal', {id: 'createDealer'})">Open Modal</x-filament::button>
</div>
<!-- resources/views/livewire/create-dealer.blade.php -->
<div>
<x-filament::modal id="createDealer">
<x-slot name="heading">
Create Dealer
</x-slot>

<div>
Content...
</div>

<x-slot name="footer">
<x-filament::button type="button" @click="$dispatch('close-modal', {id: 'createDealer'})">Close</x-filament::button>
</x-slot>
</x-filament::modal>

<x-filament::button type="button" @click="$dispatch('open-modal', {id: 'createDealer'})">Open Modal</x-filament::button>
</div>
Use View to render the component
Grid::make(2)->schema([
Forms\Components\View::make('livewire.create-dealer'),
])
Grid::make(2)->schema([
Forms\Components\View::make('livewire.create-dealer'),
])
LeandroFerreira
LeandroFerreira13mo ago
@gestolen , if you don't need a livewire component, just use a custom view to render the modal.
<!-- resources/views/custom-view.blade.php -->
<div>
<x-filament::modal id="createDealer">
...
</div>
<!-- resources/views/custom-view.blade.php -->
<div>
<x-filament::modal id="createDealer">
...
</div>
Forms\Components\View::make('custom-view')
Forms\Components\View::make('custom-view')
You can also use $getRecord() inside the custom view or livewire component
botaviator1990
botaviator199013mo ago
@Leandro Ferreira , I want to create a static Button which will ideally open up a Modal window conditionally. I couldn't find any suitable component in Livewire. So anyone can suggest a way ?
LeandroFerreira
LeandroFerreira13mo ago
lets chat in your question...
botaviator1990
botaviator199013mo ago
Sure thing
Want results from more Discord servers?
Add your server