sindresorhus/refined-github

Make file view in Pull Request show "file added/modified/deleted" status #3438

zbs posted onGitHub

When reviewing a PR and viewing all the files (with diffs collapsed) it's difficult to quickly tell which files were added/modified/removed. Some sort of status indicator, such as the A/M/D output in git show --raw, would be ideal.


Not a bad idea. We could just cross deleted files and make added files somehow. The rest of them would be unchanged.

The unfortunate part is that I don't think the page tells us whether a file is added at all, so we'd have to query the API for them ā˜¹ļø

posted by fregante over 4 years ago

Can't we see from here?

image

posted by yakov116 over 4 years ago

Indeed we can! But that's also loaded on demand, here's the fragment for example: https://github.com/sindresorhus/refined-github/pull/3420/show_toc?base_sha=0706bf161fa63580d628887d780af61901187703&sha1=0706bf161fa63580d628887d780af61901187703&sha2=1c5494edcf4be3678cf47f9c7ca2b4b98f0b7403

We can make the same network call that is triggered by clicking the button. I looked in the DevTools network tab and saw a call to /show-toc?...other_get_parameters.

posted by zbs over 4 years ago

Not a bad idea. We could just cross deleted files and make added files somehow. The rest of them would be unchanged.

I like @fregante's idea. I think adding an icon like in #3439 is redundant because the diffstat blocks are distinct enough. Also this can apply to all commits, not just PR.

posted by kidonng over 4 years ago

because the diffstat blocks are distinct enough

šŸ‘Ž

posted by yakov116 over 4 years ago

Well, how about change the filename's color like in git diff

posted by kidonng over 4 years ago

I am ok with that.

@fregante WDYT?

posted by yakov116 over 4 years ago

What it may look like:

image

The code:

document.querySelectorAll('.diffstat[aria-label]').forEach(diff => {
  const filename = diff.nextElementSibling
  const label = diff.getAttribute('aria-label')
  const noAddition = label.includes(': 0 additions')
  const noDeletion = label.includes('& 0 deletions') || label.includes('Empty file added')

  if (!noAddition && noDeletion) {
    filename.classList.remove('link-gray-dark')
    filename.classList.add('text-green')
  } else if (noAddition && !noDeletion) {
    filename.classList.remove('link-gray-dark')
    filename.classList.add('text-red')
  }
})
posted by kidonng over 4 years ago

Just because a file does not have deletions does not mean that its a new file...

posted by yakov116 over 4 years ago

Just because a file does not have deletions does not mean that its a new file...

So what's wrong with the code? I got what you mean now

posted by kidonng over 4 years ago

I think there's a lot less inference required if you parse the results of the "jump to..." network call. For example, the modification icon, which looks like this: image Has the following SVG:

<svg class="octicon octicon-diff-modified select-menu-item-icon" title="modified" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true">...</svg>

We could simply parse the title="modified" attribute.

posted by zbs over 4 years ago

if you parse the results of the "jump to..." network call

But parsing diff blocks works on regular commits as well.

posted by kidonng over 4 years ago

If it is accepted to add to regular commits we can take it from.

image

posted by yakov116 over 4 years ago

If it is accepted to add to regular commits we can take it from.

That means separate logic for the two pages (the PR one has lazyload logic while the one on commit page doesn't), and also it will need to loop through A list of elements to get status and then change B list of filenames, which is inefficient than just selecting diffblocks and matching substrings.

posted by kidonng over 4 years ago

hat means separate logic for the two pages (the PR one has lazyload logic while the one on commit page doesn't), and also it will need to loop through A list of elements to get status and then change B list of filenames, which is inefficient than just selecting diffblocks and matching substrings.

???

Did you see the pr?

which is inefficient than just selecting diffblocks and matching substrings.

Again you cannot see if a a file was created or deleted from a diff block. So i am not sure what info you want to take from there.

posted by yakov116 over 4 years ago

I think the icons as designed in https://github.com/sindresorhus/refined-github/pull/3439 are clean and clear enough. Coloring the text might be a bit much.

posted by fregante over 4 years ago

@kidonng the information weā€™re targeting is not available on the the PR Files page. Weā€™re only highlighting CREATED and DELETED files, not just ā€œall greenā€ and ā€œall redā€ files.

As for the regular commits page, I think itā€™s as easy as

if isPRFiles
  await deferred
else
  // nothing, itā€™s already on the page
posted by fregante over 4 years ago

Weā€™re only highlighting CREATED and DELETED files, not just ā€œall greenā€ and ā€œall redā€ files

My fault. Sorry @yakov116!

posted by kidonng over 4 years ago

Fund this Issue

$0.00
Funded

Pull requests