- Issue created by @ishore
- πΊπΈUnited States kevinquillen
This does not work and breaks the API for intercepting the submit event.
- πΊπΈUnited States kevinquillen
This doesn't make sense:
// Load Methods. $projectsThatImplementsHookModalSubmit = $this->projectHandler->getImplementations('modal_submit'); if (empty($projectsThatImplementsHookModalSubmit)) { echo FALSE; exit; } $hookNameModalIdModalSubmit = $modalId . '_modal_submit'; $this->projectHandler->invokeAll($hookNameModalIdModalSubmit, $argsToHookModalSubmit);
First, the hook should be invoked regardless if any module was detected defining the hook. The 'getImplementations' method doesn't exist anyway, echo FALSE doesn't do anything and exiting gives no indication of successful execution. A few lines later, echo TRUE, same thing.
The docs for hook_modal_submit mention nothing about needing a specific modal id:
/** * Implements hook_modal_submit(). */ function hook_modal_submit($modal, $modal_state, $modal_id) { // Your AJAX here. \Drupal::logger('modal_page')->notice('Modal Submit was triggered'); }
Hooks of this nature typically follow modulename_modal_submit. The modal id is passed to the function anyway. Otherwise this is never going to work and developers have to write long and specific function names that they shouldn't have to do.
- π¦π·Argentina tguerineau
I've been working on addressing the issue as described, and here's a summary of the changes I made:
Improved Response Handling: Instead of directly echoing TRUE or FALSE and exiting, I transitioned to using structured JSON responses. This approach provides more context on the outcome, whether it's a success or a failure, and offers additional information that can be helpful for debugging.return new \Symfony\Component\HttpFoundation\JsonResponse([ 'success' => TRUE/FALSE, 'message' => 'Reason for success or failure', ... ]);
Handling non-scalar $modalState Values: To avoid issues with non-scalar values in $modalState, I implemented a check. If the $modalState contains an array or an object, the response will indicate that it holds 'Array/Object Data' rather than trying to serialize the data directly.
$responseModalState = is_scalar($modalState) ? $modalState : 'Array/Object Data';
Removed Unnecessary Check: I removed the getImplementations('modal_submit') check as suggested, as it was causing issues and not adding any real value.
While testing, I did come across a potential new issue related to the $modalState. Specifically, when the $modalState contains a non-scalar value, the system throws the following error:
Symfony\Component\HttpKernel\Exception\BadRequestHttpException: Input value "modal_state" contains a non-scalar value. in Symfony\Component\HttpKernel\HttpKernel->handle() (line 81 of /app/vendor/symfony/http-kernel/HttpKernel.php).
I believe this section requires further examination, and I'd appreciate input on the intended purpose of $modalState.
I've tried to handle it in the code to prevent any immediate issues, but I believe we need to investigate this further. It could be symptomatic of a deeper problem or an unintended use case. Has anyone else experienced this?
Question:
1. What's the primary goal or use-case for the $modalState variable?Attached is the patch with the changes I've made. Feedback and further testing are appreciated!
- π§π·Brazil renatog Campinas
Thanks for reporting and providing feedbacks, we really appreciate
first problem:
undefined method Drupal\Core\Extension\ModuleHandler::getImplementations()
is the same of #3293221: D10: ModuleHandler::getImplementations() deprecation β
second one:Input value contains a non-scalar value
is the same of π Ajax pager - Input value "viewsreference" contains a non-scalar value FixedThis patch contains the same fixes
-
renatog β
authored 4cb042da on 5.0.x
Issue #3363861 by tguerineau, renatog, ishore, kevinquillen: undefined...
-
renatog β
authored 4cb042da on 5.0.x
- Status changed to Fixed
over 1 year ago 10:50pm 13 August 2023 - π§π·Brazil renatog Campinas
Moved to the dev branch
@tguerineau great suggestion of using JSON instead of "integer" on AJAX response. I created this separated issue π Update the ModalAjaxController::hookModalSubmit() to return JSON instead of int value Fixed and we can work there
Automatically closed - issue fixed for 2 weeks with no activity.