sindresorhus/refined-github

Add way to load *all* comments when some are hidden due to number of comments #1892

pnkfelix posted onGitHub

Look at https://github.com/rust-lang/rfcs/pull/2544

Scroll down the the "Load more ..." (below "NNN hidden items" for some NNN).

The link there only loads some of the comments. It would be great to have a way to load all of them (e.g. it would help for people who then use search to find text in the page).

(I did try Alt-click; it did not work for me in this context.)


Funnily enough, I came searching for this feature request for the exact same reason (searching for a string in Rust RFCs, and not finding them because the comments are collapsed).

What makes this even more awkward is that searching for that string in the repo itself does return issues containing that string as a result, but then opening that issue, the string can no longer be found, because it is collapsed.

Personally, I'd like to have a "load all" button, or even better yet "always load all", but I can see how that might be detremental to page loading times (although the current workflow described by @pnkfelix of having to grep for "load more" clicking it, and repeating that several times takes way more time than an initial load all would cost).

posted by JeanMertz over 5 years ago

I would really appreciate this feature. For now, here's a recursive user script that works for me:

function loadAllComments() {
    let needRescheduling = false;
    const buttons = Array.from(document.querySelectorAll('button'));
    buttons.forEach((button) => {
        if (button.classList.contains('ajax-pagination-btn')) {
            if(!button.hasAttribute('disabled') && button.innerText === 'Load more…') {
                console.log("found", button);
                needRescheduling = true;
                button.dispatchEvent(new MouseEvent('click', {
                    bubbles: true,
                    cancelable: true
                }));                
            }
            else if(button.hasAttribute('disabled') && button.innerText === 'Loading…') {
                console.log("waiting", button);
                needRescheduling = true;
            }
            else {
                console.log("unrecognized 'Load more' button", button);
            }
        }
    });
    if (needRescheduling) {
        setTimeout(loadAllComments, 200)
    }
    else {
        console.log("all comments loaded");
    }
}

loadAllComments();

Here's a version that also expands "Show resolved" comments:

function loadAllCommentsAndShowResolved() {
  let needRescheduling = false;
  const elems = Array.from(document.querySelectorAll('button, .btn-link.Details-content--closed'));
  elems.forEach((elem) => {
    if (elem.classList.contains('ajax-pagination-btn')) {
      if (!elem.hasAttribute('disabled') && elem.innerText === 'Load more…') {
        console.log("found", elem);
        needRescheduling = true;
        elem.dispatchEvent(new MouseEvent('click', {
          bubbles: true,
          cancelable: true
        }));
      }
      else if (elem.hasAttribute('disabled') && elem.innerText === 'Loading…') {
        console.log("waiting", elem);
        needRescheduling = true;
      }
      else {
        console.log("unrecognized 'Load more' button", elem);
      }
    }
    else if (elem.classList.contains('Details-content--closed') && elem.innerText === 'Show resolved') {
      elem.dispatchEvent(new MouseEvent('click', {
        bubbles: true,
        cancelable: true
      }));
    }
  });
  if (needRescheduling) {
    setTimeout(loadAllCommentsAndShowResolved, 200)
  }
  else {
    console.log("all comments loaded");
  }
}

loadAllCommentsAndShowResolved();
posted by warpech over 5 years ago

Fund this Issue

$0.00
Funded

Pull requests