Enable bookmarking of AJAX views

Created on 6 December 2008, over 16 years ago
Updated 30 January 2023, about 2 years ago

Currently we don't track the state of AJAX views. Users trigger reloads, but no state information is logged. Specifically, it is not possible for users to return to a particular state, short of repeating the steps to get there (e.g., load page, click a particular pager link).

Ideally we'd have full browser history support, but that's difficult given the state of jQuery history plugins (sketchy).

An interim approximation would be:

* set a URL fragment when loading by AJAX
* on initial page load, look for a fragment and, finding one, load it.

โœจ Feature request
Status

Needs work

Version

10.1 โœจ

Component
Viewsย  โ†’

Last updated about 3 hours ago

Created by

๐Ÿ‡จ๐Ÿ‡ฆCanada nedjo

Live updates comments and jobs are added and updated live.
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.

  • ๐Ÿ‡ซ๐Ÿ‡ทFrance prudloff Lille

    Here is a reroll for Drupal 10.0.

  • Status changed to Needs review about 2 years ago
  • Status changed to Needs work about 2 years ago
  • 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.

  • Status changed to Needs review about 2 years ago
  • ๐Ÿ‡ฎ๐Ÿ‡ณIndia pooja saraah Chennai

    Fixed failed commands on #70
    Attached patch against Drupal 10.1.x

  • Status changed to Needs work almost 2 years ago
  • ๐Ÿ‡บ๐Ÿ‡ธUnited States webdrips

    Re-rolling #65 for 9.5.9

  • last update almost 2 years ago
    Custom Commands Failed
  • ๐Ÿ‡ง๐Ÿ‡พBelarus kachinsky

    Hi @webdrips
    Your patch doesn't work, the view returns the error after applying:
    Error: Class "Drupal\views\Ajax\SetBrowserUrl" not found in Drupal\views\Controller\ViewAjaxController->ajaxView() (line 219 of /code/web/core/modules/views/src/Controller/ViewAjaxController.php)

  • ๐Ÿ‡ฎ๐Ÿ‡ณIndia shabana.navas

    Is there a quick way we can clean up the URL that is built? Right now, I only have a couple of exposed filters and the URL already looks like this: ?date%5Bmin%5D%5Bdate%5D=2023-05-29&date%5Bmax%5D%5Bdate%5D=2023-06-16&promotion_type%5B6%5D=6&promotion_type%5B1%5D=1

  • ๐Ÿ‡ซ๐Ÿ‡ทFrance prudloff Lille

    #72 does not apply to 10.1.0. Here is a reroll.

    (I tried to generate an interdiff but it fails for some reason.)

  • ๐Ÿ‡ฐ๐Ÿ‡ฌKyrgyzstan elaman

    The most recent patch causes a bug if user visits bookmarked url and tries to uncheck the existing filter. The main reason is that queryString is preserved when performing request to the ajax callback page:

        this.element_settings = {
          url: ajaxPath + queryString,
          submit: settings,
          httpMethod: 'GET',
          setClick: true,
          event: 'click',
          selector,
          progress: { type: 'fullscreen' },
        };
    

    So you can't really reset bookmarked filters.

    Also it is better to push new filter state into history, so you can use browser navigation to restore previous filter state.

  • ๐Ÿ‡ฐ๐Ÿ‡ฌKyrgyzstan elaman
  • ๐Ÿ‡ฐ๐Ÿ‡ฌKyrgyzstan elaman
  • ๐Ÿ‡ฐ๐Ÿ‡ฌKyrgyzstan elaman

    Instead of removing queryString that caused issues, now remove only params that represent exposed filters.

  • ๐Ÿ‡ซ๐Ÿ‡ทFrance prudloff Lille

    #82 causes a problem with pagination, for example :

    1. Check a filter that returns 3 page of results.
    2. Browse to page 3.
    3. Check another filter that only has one page of results.
    4. The view stays on page 3 and displays no result.

    Remove the page param from the query string seems to fix it.

  • ๐Ÿ‡ฐ๐Ÿ‡ฌKyrgyzstan elaman
  • ๐Ÿ‡ซ๐Ÿ‡ทFrance prudloff Lille

    Here is a reroll of #83 for Drupal 10.2.

  • First commit to issue fork.
  • ๐Ÿ‡ฎ๐Ÿ‡ณIndia sakthi_dev

    sakthi_dev โ†’ changed the visibility of the branch 10.0.x to hidden.

  • ๐Ÿ‡ฎ๐Ÿ‡ณIndia sakthi_dev

    Re rolled with 11.x.

  • ๐Ÿ‡ซ๐Ÿ‡ทFrance GaรซlG Lille, France

    GaรซlG โ†’ made their first commit to this issueโ€™s fork.

  • Merge request !7074Draft: Resolve #343535 "11.x" โ†’ (Open) created by GaรซlG
  • Pipeline finished with Failed
    about 1 year ago
    Total: 206s
    #122230
  • Pipeline finished with Failed
    about 1 year ago
    Total: 174s
    #122253
  • Pipeline finished with Failed
    about 1 year ago
    #122302
  • ๐Ÿ‡ซ๐Ÿ‡ทFrance GaรซlG Lille, France

    I made a fix so that browser URL is not updated if the view is in a dialog/modal, because in that case the browser URL is not the URL containing the view parameters.
    It's like there's an URL for the page which is behind the modal (the one shown in the browser URL field), and one other URL ("hidden") for the "page" shown in the modal.
    Without this fix, we got a strange behavior when using media library search in modal: it works the first time, but as soon as params are added to the browser URL, subsequent search is buggy until the whole page is reloaded.
    I guess a test should be added for the modal case? Like just test that browser URL is not updated when an AJAX exposed form is used inside a modal.

    And automated tests do not pass, I guess it's just some test code that needs to be updated for compatibility with current 11.x.

    Then, I believe the merge request will be ready for review again.

  • Pipeline finished with Failed
    12 months ago
    Total: 585s
    #141660
  • First commit to issue fork.
  • Pipeline finished with Failed
    9 months ago
    Total: 530s
    #221644
  • ๐Ÿ‡ซ๐Ÿ‡ทFrance prudloff Lille

    prudloff โ†’ changed the visibility of the branch 11.x to hidden.

  • ๐Ÿ‡ซ๐Ÿ‡ทFrance prudloff Lille

    prudloff โ†’ changed the visibility of the branch 343535-ajax to hidden.

  • Pipeline finished with Canceled
    19 days ago
    Total: 87s
    #449063
  • Pipeline finished with Canceled
    19 days ago
    Total: 246s
    #449066
  • Pipeline finished with Failed
    19 days ago
    Total: 187s
    #449073
  • Pipeline finished with Failed
    19 days ago
    Total: 150s
    #449074
  • Pipeline finished with Failed
    19 days ago
    Total: 571s
    #449100
  • Pipeline finished with Failed
    19 days ago
    Total: 783s
    #449131
  • Pipeline finished with Success
    19 days ago
    Total: 784s
    #449138
  • ๐Ÿ‡ซ๐Ÿ‡ทFrance prudloff Lille

    I rebased and fixed tests but I can't remove the draft status on the MR.

    I had to change the order of GET params in some related tests, I'm not sure why.
    I suppose that's because the code generating the SetBrowserUrl command does not process them in the same order as the code generating the pager links.
    I'm not sure it is a problem as long as the GET params themselves are still the same.

  • Pipeline finished with Success
    17 days ago
    Total: 803s
    #450485
  • ๐Ÿ‡บ๐Ÿ‡ธUnited States smustgrave

    Have not reviewed as the issue summary needs some attention please.

  • ๐Ÿ‡ซ๐Ÿ‡ทFrance prudloff Lille

    I updated the summary but now the MR has a conflict.

  • Pipeline finished with Failed
    9 days ago
    Total: 689s
    #457042
  • Pipeline finished with Failed
    9 days ago
    Total: 132s
    #457071
  • Pipeline finished with Failed
    9 days ago
    Total: 591s
    #457073
  • Pipeline finished with Canceled
    9 days ago
    Total: 267s
    #457087
  • Pipeline finished with Failed
    9 days ago
    Total: 551s
    #457090
  • Pipeline finished with Success
    9 days ago
    Total: 678s
    #457102
  • ๐Ÿ‡ซ๐Ÿ‡ทFrance prudloff Lille

    I fixed the conflict (it was caused by ๐Ÿ› Pagination not working correctly in AJAX view with exposed filters Needs review ).

    I also noticed we were mixing two ways to remove parameters from the query (a regex and parsing it as an array). I moved everything to the new way.

Production build 0.71.5 2024