sindresorhus/refined-github

Do you want to work on this issue?

You can request for a bounty in order to promote it!

`show-whitespace` doesn’t work on newly sent suggestions #2852

szmarczak posted onGitHub

Peek 2020-03-03 16-01


No, I checked that for PRs (hence the "start a review" button).

posted by szmarczak almost 5 years ago

Checked again, the issue still persists.

posted by szmarczak almost 5 years ago

I am only seeing it on the PR Files Tab.

That's what I'm talking about... Files changed... I guess I could've said that at the beginning :P

posted by szmarczak almost 5 years ago

While looking for this I figured out an easy way to see GitHub's event names:

d = Node.prototype.dispatchEvent;
Node.prototype.dispatchEvent = function (...a) {
    console.log(...a);
    // debugger; // Uncomment when necessary
    d.apply(this, a);
}

<img width="379" alt="screen" src="https://user-images.githubusercontent.com/1402241/79168882-406ea100-7deb-11ea-9e9c-ad657202422f.png">

posted by fregante almost 5 years ago

Anyway, no special events seem to be available. The only solution I can think of:

o = new MutationObserver(runUpdates);

for commentHolders of select.all('.diff-table tbody, .js-comments-holder')
    o.observe(commentHolders, {childList: true})

This should probably be part of on-new-comments somehow. After #2987

posted by fregante almost 5 years ago

I really think that https://github.com/sindresorhus/refined-github/issues/3084 should fix all of our problems, it should be revisited: https://github.com/sindresorhus/refined-github/pull/3092

That PR probably just needs an efficient mechanism to avoid applying changes to the same element.

posted by fregante almost 5 years ago

@fregante any reason we can't listen on socket:message events and handle everything from there?

posted by notlmn almost 5 years ago

If it works, sure, but I think updates can happen seconds after the event.

posted by fregante almost 5 years ago

Fund this Issue

$0.00
Funded
Only logged in users can fund an issue

Pull requests