- 🇨🇭Switzerland DonAtt
#5 works for me together with the Facets 2.x AJAX fix: https://www.drupal.org/project/facets/issues/3052574#comment-15050142 🐛 Facets with AJAX not working in most of situations Needs work
-
joseph.olstad →
committed cac9943d on 8.x-1.x authored by
voleger →
Issue #3129632 by colorfield, voleger, DonAtt, kachinsky, spuky,...
-
joseph.olstad →
committed cac9943d on 8.x-1.x authored by
voleger →
- Status changed to Fixed
over 1 year ago 11:18pm 8 September 2023 Automatically closed - issue fixed for 2 weeks with no activity.
- Status changed to Fixed
over 1 year ago 5:59pm 14 November 2023 - 🇩🇪Germany szeidler Berlin
With Drupal 10.1 views is using GET AJAX requests by default → , when AJAX is enabled.
In my case we're using
views_infinite_scroll
and the path context is lost, because of the POST limitation in this commit. I think we would need to make it work with GET requests as well now. - 🇨🇦Canada joseph.olstad
@szeider, if you could kindly share a solution to this, I'll review it.
- Status changed to Active
over 1 year ago 6:27pm 14 November 2023 - 🇩🇪Germany szeidler Berlin
Yes, the problem is tied to Drupal 10.1 where the support for AJAX GET requests has been introduced and made the default for example pagination.
It's essentially about this line.
if ($q === NULL && $this->request->isMethod('POST') && !empty($_REQUEST['view_path'])) {
I don't know why the limitation to the method was made, but in my test case changing it to the following resolved the issue
if ($q === NULL && !empty($_REQUEST['view_path'])) {
- 🇨🇭Switzerland colorfield Lausanne
Thanks @szeidler for mentioning the core changelog and the fix, works for me too. I don't think that removing POST limitation would cause any issue. Here is a patch, it should also apply to 2.0.x branch https://git.drupalcode.org/project/facets_pretty_paths/-/blob/2.0.x/src/...
- Status changed to Needs review
over 1 year ago 2:52pm 21 December 2023 - last update
over 1 year ago Patch Failed to Apply - last update
over 1 year ago Patch Failed to Apply - last update
over 1 year ago 7 pass - last update
over 1 year ago 7 pass - last update
over 1 year ago Composer require failure - last update
over 1 year ago 7 pass - last update
over 1 year ago 7 pass - Status changed to RTBC
over 1 year ago 11:44am 22 December 2023 - 🇨🇭Switzerland dan2k3k4 Zurich
Removing the `$this->request->isMethod('POST')` check seems like the best approach. We could have checked if `POST or GET request` but I don't see any reason for such limitation.
Tested on one client project and working as expected.
- 🇨🇦Canada joseph.olstad
This seems like an important fix.
Would someone be willing to wrap this new condition in a version check?
if (version_compare(\Drupal::VERSION, '10.1', '>=')) { // Run the Drupal 10.1+ logic } else { // Run the original logic. }
- Status changed to Needs review
about 1 year ago 8:25am 29 February 2024 - last update
about 1 year ago 7 pass - 🇬🇧United Kingdom rossb89 Bristol
Re done the patch with the additional logic check requested above :)
-
joseph.olstad →
committed 067c6369 on 8.x-1.x authored by
voleger →
Issue #3129632 by colorfield, voleger, rossb89, joseph.olstad: FPP lost...
-
joseph.olstad →
committed 067c6369 on 8.x-1.x authored by
voleger →
- Status changed to Fixed
about 1 year ago 11:14pm 29 February 2024 -
joseph.olstad →
committed 067c6369 on 2.0.x authored by
voleger →
Issue #3129632 by colorfield, voleger, rossb89, joseph.olstad: FPP lost...
-
joseph.olstad →
committed 067c6369 on 2.0.x authored by
voleger →
Automatically closed - issue fixed for 2 weeks with no activity.