The issue has been closed

I use the "No Whitespace" button all the time (wish it was just ALWAYS enabled by default) and really miss it now.
posted by dpashkevich over 5 years ago
posted by fregante over 5 years ago 
posted by dpashkevich over 5 years ago 
Still not enough space if all of GitHub’s widgets are visible and the title is there too
posted by fregante over 5 years ago
At what screen width does it break?
posted by dpashkevich over 5 years ago
All of them. Look at the last screenshot I posted. Add the “Commit suggestions” widget and voila: no space left.
posted by fregante over 5 years ago
As a compromise, it could hide the 'files viewed' indicator maybe? Or we could reduce the amount of space the title has. Or we would increase the width the content has on the header.
I'm happy to mock up visualisations of these if you're interested.
posted by dylmye over 5 years ago
it could hide the 'files viewed' indicator maybe?
We shouldn't hide a useful feature (the feature's utility is debatable, but...)
Or we could reduce the amount of space the title has.
I don't wanna play that game. We tried it for the past 2 years and we've been just moving the problem and never resolving it.
Or we would increase the width the content has on the header.
This could work, but the compromises are:
- only works when the window fits it
- it might not look great since the header would be slightly longer than the content width
posted by fregante about 5 years ago
In the end, I think these are the safest to implement and they still bring down the total number of clicks to one (+ hover)
- dropping its "apply and reload" button (saves one click)
- opening the dropdown on hover (saves one more click)
posted by fregante about 5 years ago
+1 for dropping apply and reload, especially as only two settings live on that menu. Not sure about the latter, is the hover behaviour implemented anywhere else?
posted by dylmye about 5 years ago
is the hover behaviour implemented anywhere else?
It used to be implemented on the reactions popup, but it stopped working and we never readded it.
posted by fregante about 5 years ago
Can you at least re-add the shortcut? :slightly_smiling_face:
posted by bundyo almost 5 years ago
PR welcome for that. Most of the feature code can be dropped: https://github.com/sindresorhus/refined-github/blob/master/source/features/faster-pr-diff-options.tsx
Something as short as:
function init(): void {
const searchParameters = new URLSearchParams(location.search);
const isHidingWhitespace = searchParameters.get('w') === '1';
if (isHidingWhitespace) {
searchParameters.delete('w');
} else {
searchParameters.set('w', '1');
}
document.body.append(
<a
classNames="sr-only"
aria-label={`Show ${type} diffs`}
href={`?${String(parameters)}`}
/>
);
}
posted by fregante almost 5 years ago
Maybe something changed as I see plenty of space for those icons with my resolution (1920x1200)

Also when scrolled down (though in this mode the icons may need to be shorter)

Even on smaller resolutions there is enough space because GH removes some of the filters conveniently leaving room for the no-whitespace icon. (width: 640)

posted by jensf about 4 years ago
posted by fregante about 4 years ago 
We still could, however, replace the current gear icon with 2 icon toggles:
- unified diff toggle
- visible whitespace toggle
The icons will make absolutely no sense on their own but this would only take an extra 30px on the lower line. They'll probably only make sense with tooltips.
posted by fregante about 4 years ago
@fregante I see now. That last situation the gui is super tight.
I would be ok with ok with 2 toggle icons though it's not ideal due to vagueness of the their use. Perhaps a hover hint may be enough to clear up their purpose.
Some other ideas:
Move Commit suggestions
imo this is the problem. The PR name is almost removed with only 1.5 words showing, and the filters are all jammed together. Perhaps we can add an extra line to space things out a bit? or move the Comment Suggestions or files viewed beneath the Review Changes.
shrink the Commit suggestions
I'm struggling how this might be shrunk and still be useful, but if it wasn't so big it would likely solve our issue.
Add when enough space
Add the nice icons only when there's enough space. Say width > 1000 for the collapsed header and maybe always for the non collapsed header. I'm always reviewing on a large screen so this would be perfect for me.
posted by jensf about 4 years ago
Could you open new issue to clean up the file review header? There's indeed room for improvement to make more room, but it'd be a separate feature.
Once that's implemented, we could come up with an alternative solution here, but [🧍‍♂️|👫] [no whitespace]
is still pretty wide
posted by fregante about 4 years ago
I added another suggestion in my first issue to restore the feature almost as it was, with the exception that:
- the icons appear in a slightly different place
- the icons only appear on larger screens
This should avoid the wrapping issue on small resolutions.
posted by fregante almost 4 years ago