Conditional requiresConfirmation ignored

I have a conditional requiresConfirmation, but it seems to be overruled by modalDescription. Even if I do requiresConfirmation(false) or remove it entirely, the confirmation pops up. The only way I can get it to work is by putting the condition in modalDescription, but that doesnt make sense for other users. Pseudo code:
Action::make()
->requiresConfirmation(fn (User $user) => $user->shouldShowConfirmation)
->modalDescription('foo')
Action::make()
->requiresConfirmation(fn (User $user) => $user->shouldShowConfirmation)
->modalDescription('foo')
requiresConfirmation is ignored if modalDescription is not null
43 Replies
bernhard
bernhard3mo ago
Can't reproduce. I just added the Action to the getHeaderActions array on a Edit-Page:
use Filament\Actions\Action;

Action::make("xx")
->requiresConfirmation(fn (User $user) => true)
->modalDescription(null)
use Filament\Actions\Action;

Action::make("xx")
->requiresConfirmation(fn (User $user) => true)
->modalDescription(null)
And I get the confirmation modal.
rgeraads
rgeraadsOP3mo ago
what do you get if you flip it around? requiresConfirmation resulting in false and modalDescription being filled
bernhard
bernhard3mo ago
same
rgeraads
rgeraadsOP3mo ago
that's wrong, the modal should not be shown
bernhard
bernhard3mo ago
What? There is no modal at all, because there is no modal content
rgeraads
rgeraadsOP3mo ago
use Filament\Actions\Action;

Action::make("xx")
->requiresConfirmation(fn (User $user) => false)
->modalDescription('test')
use Filament\Actions\Action;

Action::make("xx")
->requiresConfirmation(fn (User $user) => false)
->modalDescription('test')
do you get the modal if you try this?
bernhard
bernhard3mo ago
yes because now you have a modal content
rgeraads
rgeraadsOP3mo ago
isn't the modal content just placeholder text? ->modalDescription('are you sure you want to do this?')
bernhard
bernhard3mo ago
Ok. I think you missunderstand the thing. An Action is just an Action, not necessarily a Modal Opener. So Action::make("xx") does nothing at all
rgeraads
rgeraadsOP3mo ago
i want to have a conditional confirmation, and i want to have a customized confirmation message
bernhard
bernhard3mo ago
Adding a requiresConfirmation to it, just makes a confirmation modal, to confirm that you dont do anything at all Adding a modalDescription will open another modal - if confirmed. confirmation message -> use filament notifications instead
rgeraads
rgeraadsOP3mo ago
I get the same behaviour if I do this:
use Filament\Actions\Action;

Action::make("xx")
->modalDescription('test')
use Filament\Actions\Action;

Action::make("xx")
->modalDescription('test')
rgeraads
rgeraadsOP3mo ago
yes this is exactly what i did that's why i think this is a bug
LeandroFerreira
LeandroFerreira3mo ago
where is the action() method in your code? where are you using this action?
rgeraads
rgeraadsOP3mo ago
in my form as a suffixAction on a textInput and in protected function getFormActions(): array
rgeraads
rgeraadsOP3mo ago
I do use that the example is merely an example
bernhard
bernhard3mo ago

TextInput::make('zip')
->suffixAction(
\Filament\Forms\Components\Actions\Action::make("xxx")
->requiresConfirmation(fn() => true)
->modalDescription("test")
),

TextInput::make('zip')
->suffixAction(
\Filament\Forms\Components\Actions\Action::make("xxx")
->requiresConfirmation(fn() => true)
->modalDescription("test")
),
this shows me the confirmation modal without the modalDescription as well
LeandroFerreira
LeandroFerreira3mo ago
are you using this in the Panel builder or only in the Form Builder? custom page or resource?
rgeraads
rgeraadsOP3mo ago
resource -> form builder
LeandroFerreira
LeandroFerreira3mo ago
👆 Didn't it work?
rgeraads
rgeraadsOP3mo ago
i dont want the confirmation to show in some conditions but it always pops up
TextInput::make('test')
->suffixAction(
Action::make('test')
->requiresConfirmation(fn () => false)
->modalDescription(function () {
return 'test';
})
)
TextInput::make('test')
->suffixAction(
Action::make('test')
->requiresConfirmation(fn () => false)
->modalDescription(function () {
return 'test';
})
)
the modal still pops up the only way i can make it to work is by putting the condition in the modalDescription callback. but i find that weird, why doesn't requiresConfirmation overrule the modalDescription? this does what i want
Action::make('generatePassword')
->modalDescription(function (User $user) {
if (! $user->isAdmin()) {
return 'are you sure?';
}
})
Action::make('generatePassword')
->modalDescription(function (User $user) {
if (! $user->isAdmin()) {
return 'are you sure?';
}
})
which is weird, because the if (! $user->isAdmin()) { logic should be in requiresConfirmation
LeandroFerreira
LeandroFerreira3mo ago
\Filament\Forms\Components\Actions\Action::make('test')
->requiresConfirmation(false)
->modalDescription('Are you sure you want to do this?')
->modal(false)
->action(function () {})
\Filament\Forms\Components\Actions\Action::make('test')
->requiresConfirmation(false)
->modalDescription('Are you sure you want to do this?')
->modal(false)
->action(function () {})
this?
bernhard
bernhard3mo ago
Maybe I am stupid, but this is exactly how it works for me. Lets say the following field:
TextInput::make('zip')
->suffixAction(
\Filament\Forms\Components\Actions\Action::make("xxx")
->requiresConfirmation(fn($record) => $record->id == 105)
->modalDescription("This will be shown if confirmed or if no confirmation is required.")
),
TextInput::make('zip')
->suffixAction(
\Filament\Forms\Components\Actions\Action::make("xxx")
->requiresConfirmation(fn($record) => $record->id == 105)
->modalDescription("This will be shown if confirmed or if no confirmation is required.")
),
On a recor 105 I see a confirmation. When I accept it, I see the "This will" modal When I cancel it, i dont see it
LeandroFerreira
LeandroFerreira3mo ago
use the same condition here ->modal(false)
rgeraads
rgeraadsOP3mo ago
that condition causes no modal in any case
bernhard
bernhard3mo ago
On record 200 I dont see the confirmation but the modal "This..."
LeandroFerreira
LeandroFerreira3mo ago
could you share the whole code?
bernhard
bernhard3mo ago
This was just an example. I dont know if you have a record with ID = 105
rgeraads
rgeraadsOP3mo ago
Action::make('generatePassword')
->requiresConfirmation(true)
->modalDescription('Are you sure you want to do this?')
->modal(false)
->action(function () {}),
Action::make('generatePassword')
->requiresConfirmation(true)
->modalDescription('Are you sure you want to do this?')
->modal(false)
->action(function () {}),
LeandroFerreira
LeandroFerreira3mo ago
if requiresConfirmation is true, modal should be true true/true false/false
rgeraads
rgeraadsOP3mo ago
requiresConfirmation can be omitted and you'd have the same result, only using modal true/ false requiresConfirmation is ignored even, because this does show a modal
Action::make('generatePassword')
->requiresConfirmation(false)
->modalDescription('Are you sure you want to do this?')
->modal(true)
->action(function () {}),
)
Action::make('generatePassword')
->requiresConfirmation(false)
->modalDescription('Are you sure you want to do this?')
->modal(true)
->action(function () {}),
)
and this doesn't
Action::make('generatePassword')
->requiresConfirmation(true)
->modalDescription('Are you sure you want to do this?')
->modal(false)
->action(function () {}),
)
Action::make('generatePassword')
->requiresConfirmation(true)
->modalDescription('Are you sure you want to do this?')
->modal(false)
->action(function () {}),
)
so what does requiresConfirmation do?
LeandroFerreira
LeandroFerreira3mo ago
didn't you expect this result?
$admin = true;
\Filament\Forms\Components\Actions\Action::make('test')
->requiresConfirmation($admin)
->modalDescription('Are you sure you want to do this?')
->modal(! $admin)
->action(fn () => dd($admin))
$admin = true;
\Filament\Forms\Components\Actions\Action::make('test')
->requiresConfirmation($admin)
->modalDescription('Are you sure you want to do this?')
->modal(! $admin)
->action(fn () => dd($admin))
rgeraads
rgeraadsOP3mo ago
requiresConfirmation doesn’t do anything in that example. It is overruled by modalDescription
LeandroFerreira
LeandroFerreira3mo ago
admin true - there is no confirmation admin false - requires confirmation ?
rgeraads
rgeraadsOP3mo ago
What do you get if you remove requiresConfirmation?
LeandroFerreira
LeandroFerreira3mo ago
what about this?
$admin = false;
\Filament\Forms\Components\Actions\Action::make('test')
->requiresConfirmation(! $admin)
->modalDescription(! $admin ? 'Are you sure you want to do this?' : null)
->action(fn () => dd($admin))
$admin = false;
\Filament\Forms\Components\Actions\Action::make('test')
->requiresConfirmation(! $admin)
->modalDescription(! $admin ? 'Are you sure you want to do this?' : null)
->action(fn () => dd($admin))
rgeraads
rgeraadsOP3mo ago
Yeah that works, I said that above. But even in this example if you remove requiresConfirmation you will get the same result
LeandroFerreira
LeandroFerreira3mo ago
you mean, we will get a modal without the requiresconfirmation format, right?
rgeraads
rgeraadsOP3mo ago
Yes, requiresConfirmation is ignored
josef
josef3mo ago
afaik
requiresConfirmation()
requiresConfirmation()
just sets some default modal content for the confirmation dialog, it does not determine whether to show the modal in principle
awcodes
awcodes3mo ago
RequiresConfirmation intersects the original action callback and halts it until it is confirmed. It’s typical use case would be on delete actions or actions with forms. Sounds like you might be trying to merge 2 concepts into one. I could be wrong on that though.

Did you find this page helpful?