Can't close modal from custom cancel action

I have the following field with a suffix action
TextInput::make('search')
->suffixAction(Action::make('foo')
->modalCancelAction(
Action::make('cancel')
->action(function (Set $set,Action $action, $component, $livewire) {

//Why won't you close! (╯▔皿▔)╯
$livewire->close();
$action->cancelParentActions();
$action->halt();
return;
})
->cancelParentActions( )
// ->close()
// ->after(function() {...})
)
TextInput::make('search')
->suffixAction(Action::make('foo')
->modalCancelAction(
Action::make('cancel')
->action(function (Set $set,Action $action, $component, $livewire) {

//Why won't you close! (╯▔皿▔)╯
$livewire->close();
$action->cancelParentActions();
$action->halt();
return;
})
->cancelParentActions( )
// ->close()
// ->after(function() {...})
)
As you can see, I tried everything I could think of but the modal refuses to close! The only thing that works is the commented out ->close() call, but then the code in the ->action() is not actually executed
3 Replies
ChesterS
ChesterSOP5w ago
Any ideas or suggestions welcome because I'm losing it Ok nvm, the action doesn't appear to work at all. Don't know what I'm doing wrong tbh.
->extraModalFooterActions([
Action::make('wtf')
->action(function() {
dd('WTF is going on? Why not work?');
}),
])
->extraModalFooterActions([
Action::make('wtf')
->action(function() {
dd('WTF is going on? Why not work?');
}),
])
toeknee
toeknee5w ago
Going to guess the 'Action' Class is the wrong action type to run in a footer.
ChesterS
ChesterSOP5w ago
Honestly, I don't even know. I opened another help thread because I couldn't get any action to work https://discord.com/channels/883083792112300104/1346809893239259147 In those, I use different types of actions and none of them works I'm guessing I'm doing something wrong, but I'm not sure what. Some of the examples are straight from the docs.

Did you find this page helpful?