Page index isn't reset when use AJAX for Views module

Created on 24 November 2022, over 2 years ago
Updated 30 January 2023, about 2 years ago

When I use Views module and enable pager and use exposed filters, they will not work in case you go to the view page with ?page=[number] query parameter.

How to recreate it:

1. Add Article content type or use another one.
2. Create several Article nodes. In my case I created 50 nodes. One of the article should have unique name, for example Test123.
3. Create View, that shows all Article content, add page with /test path, enable Pager (full or mini) and show 10 items per page, enable Ajax, add Exposed filter for Title field and use Contains operator.
4. Go to the /test?page=4 page, in my case it shows the latest page, because I have 50 items and 10 items per page.
5. Try to use Title filtering and type existed article name, in my case Test123. Then you will see empty page.

It happens because Views Ajax uses query param and grab page from it and sends it to the server. So it filters all articles by Test123 title and shows result of the 5th page, and since we have only one result, the 5th page is empty.

🐛 Bug report
Status

Needs work

Version

9.5

Component
Views 

Last updated 31 minutes ago

Created by

🇺🇦Ukraine lobodacyril

Live updates comments and jobs are added and updated live.
  • Needs tests

    The change is currently missing an automated test that fails when run with the original code, and succeeds when the bug has been fixed.

Sign in to follow issues

Merge Requests

Comments & Activities

Not all content is available!

It's likely this issue predates Contrib.social: some issue and comment data are missing.

  • The Needs Review Queue Bot tested this issue. It either no longer applies to Drupal core, or fails the Drupal core commit checks. Therefore, this issue status is now "Needs work".

    Apart from a re-roll or rebase, this issue may need more work to address feedback in the issue or MR comments. To progress an issue, incorporate this feedback as part of the process of updating the issue. This helps other contributors to know what is outstanding.

    Consult the Drupal Contributor Guide to find step-by-step guides for working with issues.

  • 🇺🇦Ukraine lobodacyril

    I'm not sure that's possible to solve without changing JS code since each AJAX request is sent using URL. Look at the JS code, it takes window.location.search and sends all the URL query parameters via AJAX. It means if the query contains page parameter, it will be sent also. That's why we need to remove sending page param.

  • 🇺🇦Ukraine lobodacyril

    The patch stopped working so I changed and it works on 9.5.3

  • 🇺🇦Ukraine lobodacyril

    Sorry wrong patch

  • 🇳🇱Netherlands Lendude Amsterdam

    Well, at least it doesn't break any existing test, that's positive.

    We do need test coverage for this bug though, so setting back to needs work for that.

  • 🇺🇦Ukraine lobodacyril

    This is a patch for 10.1.x version

  • last update over 1 year ago
    29,672 pass
  • 🇧🇪Belgium p-neyens

    This is a patch for 10.2.x version.

  • First commit to issue fork.
  • I'm not sure this or the original behaviour works as expected when the query parameter is not the first entry, or the first query ends with a q or render.

    I've provided some example test cases to showcase the behaviour here: https://playcode.io/1830989

    const queryStrings = [
      'q=/path',
      'faq=should_not_be_affected',
      'myrender=should_also_not_be_affected',
      'q=/path&a=1&q=/second-path',
      'q=/path&render=value',
      'q=/path1&q=/path1&faq=true&dont_render=1&q=/path&render=render_value&page=1&final_value=1',
    ];
    for (const queryString of queryStrings) {
      const output = [];
      output.push(queryString.replace(/q=[^&]+&?|&?render=[^&]+/, ''));
      output.push(queryString.replace(/q=[^&]+&?|page=[^&]+&?|&?render=[^&]+/, ''));
      output.push(queryString.replace(/(^|&)(q|render|page)=[^&]+/g, '').replace(/^&/, ''))
      console.log(output);
    }
    

    This might be potentially supeceded by 🐛 Query string is appended multiple time after each AJAX request Needs work which now attempts to use a URLSearchParams object to remove those same values. But we may also look into using the updated regex provided instead, and leave that as a follow-up.

    I also believe the render query parameter might be legacy code and no longer relevant in D9+, so can probably be removed since I can't find any references to it in core.

  • Merge request !7485Resolve #3323574 "Page index isnt" → (Closed) created by phthlaap
  • Pipeline finished with Success
    12 months ago
    Total: 720s
    #146214
  • Status changed to Needs review 12 months ago
  • 🇻🇳Vietnam phthlaap

    I created a merge request and added tests.

  • 🇻🇳Vietnam phthlaap

    I updated the issue summary to the correct format.

  • First commit to issue fork.
  • Pipeline finished with Success
    12 months ago
    Total: 2216s
    #147187
  • Status changed to RTBC 12 months ago
  • 🇺🇸United States smustgrave

    Appears tests have been added

    Added a nitpicky missing void return.

    Verified the issue following the steps and that the MR addresses the issue.

    Hiding unused MR.

  • 🇮🇳India pravesh_poonia

    @smustgrave, Applied mr changes are looking good to me, @
    lobodakyrylon you can check it is good to go

  • Status changed to Needs work 12 months ago
  • 🇳🇿New Zealand quietone

    Sorry folks, but this does need a title that better describes what is being fixed and be in proper English.

  • I think the points raised in #15 regarding the regex only working if the paramter is the first entry are still relevant.

  • Status changed to Needs review 12 months ago
  • 🇺🇸United States smustgrave

    @codebymikey do you want to open an MR to try your idea of removing.

  • Status changed to Needs work 11 months ago
  • 🇺🇸United States smustgrave

    Think maybe we should have test coverage for the points in #15.

  • First commit to issue fork.
  • 🇬🇧United Kingdom the_g_bomb

    As mentioned in the MR.
    I have opened an MR using the latest changes introduced by smustgrave in #21, but with the alternate regex supplied by codebymikey in #15.

    I have yet not added the test coverage as requested in #27.

  • Pipeline finished with Failed
    7 months ago
    Total: 2360s
    #267021
  • First commit to issue fork.
  • 🇮🇳India vinmayiswamy

    Hi, I updated the test to cover scenarios with multiple query parameters in the request, specifically adding extra parameters like foo and q alongside the page parameter. This change ensures that pagination resets correctly when there are additional parameters in the URL, which is common in real-world cases.

    Hi, I updated the test to simulate scenarios where multiple query parameters are involved in the request. Specifically, I added test cases that include extra parameters like foo and q alongside the page parameter. This was necessary because, in real-world scenarios, URLs often contain additional parameters, and I wanted to ensure that the pagination reset behaves correctly even with these variations.

    I started by filtering content by title and confirming the correct result. Then, I tested the page with both foo and page parameters, applying the filter again to check that the additional parameters didn’t affect the pagination. Lastly, I included a case where both q and page parameters appear in different positions, ensuring the pagination resets as expected.

    These updates help cover edge cases with query parameters, preventing issues with pagination and ensuring that the filtered content is returned correctly.

    Additionally, I verified the fix in Drupal 11.x fresh install and attached before and after screenshots for reference.

    Kindly review the changes and please let me know if any further adjustments are needed. Your feedback and suggestions for improvements are greatly appreciated.

    Thanks!

  • 🇺🇸United States smustgrave

    Before moving to review please make sure pipeline is passing and tags addressed.

  • Need to reconfirm whether this is still an issue in >= 10.3x since the merging of 🐛 Media Library widget display doesn't return to first page on applying filters Needs work

  • First commit to issue fork.
  • 🇬🇧United Kingdom oily Greater London

    Rebased both MR's. Both pipelines all green. Test-only tests work, too.

    Now need to determine which of the 2x versions of the regex in the MR's is the 'correct' or 'best' version. Also need to manually test (via UI) this issue in Drupal 11.x to see if it has been fixed in core.

  • 🇬🇧United Kingdom oily Greater London

    oily changed the visibility of the branch 3323574-Remove-pagination-in-ajax-15 to hidden.

  • 🇬🇧United Kingdom the_g_bomb

    After the comment in #34 by codebymikey. I have re-tested 11.x branch and created the view as described.

    Using the pager works fine as the pages also use ajax.

    The issue still exists if you visit the page:
    /test?page=4 and then using the title filter. The page=4 remains after the filtering by ajax happens and so there is no results.

  • 🇬🇧United Kingdom oily Greater London

    Looks like we can move to 'Needs review' after #39?

  • 🇬🇧United Kingdom the_g_bomb

    Using:

    composer config --json --merge extra.patches.drupal/core '{"Issue #3323574: Fixing regex": "https://git.drupalcode.org/project/drupal/-/merge_requests/9355.diff"}'
    

    The view works and shows the articles with test in the name, even though the ?page=4 remains.

  • 🇬🇧United Kingdom the_g_bomb

    Also using:

    composer config --json --merge extra.patches.drupal/core '{"Issue #3323574: Fixing regex": "https://git.drupalcode.org/project/drupal/-/merge_requests/7485.diff"}'
    

    The view still works and shows the articles with test in the name, even though the ?page=4 remains.

  • 🇬🇧United Kingdom the_g_bomb

    Could do with a confirmation and a decision on which regex to use

  • 🇳🇱Netherlands johnv

    Please confirm that this issue is about 'Pager shows empty/nonexistent page N after applying an exposed filter, so new result has And that it is an identical/similar problem to 🐛 Views pager doesn't return to previous page when deleting the content from last page Needs review , which has a solution in core/modules/views/src/Plugin/views/query/Sql.php.

    Should both use cases benefit from the same solution?

  • Status changed to Needs review 30 days ago
  • 🇮🇳India KumudB Ahmedabad

    After enabling AJAX in a Views page in Drupal 11.x-dev version that lists Articles with an exposed Article Title filter, pagination behaves unexpectedly. The issue occurs under the following conditions:

    1. The pager is set to display 10 items per page.
    2. Navigating through multiple pages (e.g., reaching the 4th or 5th page)
    3. Performing a search for a unique item results in a blank page instead of displaying the expected results.

    A screen recording has been provided to demonstrate the issue.

    https://www.drupal.org/files/issues/2025-03-05/pagination_search_issue_w...

  • 🇺🇸United States smustgrave

    Believe feedback has been addressed

    • catch committed e81a3e5b on 10.4.x
      Issue #3323574 by lobodakyrylo, the_g_bomb, phthlaap, oily, vinmayiswamy...
    • catch committed f56de53c on 10.5.x
      Issue #3323574 by lobodakyrylo, the_g_bomb, phthlaap, oily, vinmayiswamy...
    • catch committed 082069a1 on 11.1.x
      Issue #3323574 by lobodakyrylo, the_g_bomb, phthlaap, oily, vinmayiswamy...
    • catch committed c8c538e7 on 11.x
      Issue #3323574 by lobodakyrylo, the_g_bomb, phthlaap, oily, vinmayiswamy...
  • 🇬🇧United Kingdom catch

    Makes sense to do the quick fix here, the additional test coverage will ensure 🐛 Query string is appended multiple time after each AJAX request Needs work covers everything.

    Committed/pushed to 11.x, cherry-picked to 11.1.x, 10.5.x, 10.4.x, thanks!

  • 🇫🇷France prudloff Lille

    I merged this in Enable bookmarking of AJAX views Needs work and I believe the failing PaginationAJAXTest shows the new regex might cut query parameters that contain "page".
    For example '?items_per_page=gezgez&foo=bar'.replace(/q=[^&]+&?|page=[^&]+&?|&?render=[^&]+/, '') will return "?items_per_foo=bar".
    Should I open a followup?

Production build 0.71.5 2024