Page MenuHomePhabricator

Allow inline comments to be individually hidden
ClosedPublic

Authored by epriestley on May 25 2015, 6:58 PM.
Tags
None
Referenced Files
F13091345: D13009.diff
Thu, Apr 25, 2:53 AM
Unknown Object (File)
Thu, Apr 11, 10:20 AM
Unknown Object (File)
Mon, Apr 8, 10:29 PM
Unknown Object (File)
Wed, Apr 3, 11:45 AM
Unknown Object (File)
Sun, Mar 31, 2:49 AM
Unknown Object (File)
Sun, Mar 31, 2:49 AM
Unknown Object (File)
Mar 21 2024, 1:34 AM
Unknown Object (File)
Mar 1 2024, 1:10 AM

Details

Summary

Ref T7447. Implements per-viewer comment hiding. Once a comment is obsolete or uninteresting, you can hide it completely.

This is sticky per-user.

My hope is that this will strike a better balance between concerns than some of the other approaches (conservative porting, summarization, hide-all).

Specifically, this adds a new action here:

hide.png (383×789 px, 47 KB)

Clicking it completely collapses the comment into a small icon on the previous line, and saves the comment state as hidden for you:

show.png (138×824 px, 15 KB)

You can click the icon to reveal all hidden comments below the line.

Test Plan
  • Hid comments.
  • Showed comments.
  • Created, edited, deleted and submitted comments.
  • Used Diffusion comments (hiding is not implemented there yet, but I'd plan to bring it there eventually if it works out in Differential).

Diff Detail

Repository
rP Phabricator
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

epriestley retitled this revision from to Allow inline comments to be individually hidden.
epriestley updated this object.
epriestley edited the test plan for this revision. (Show Details)
epriestley added reviewers: btrahan, chad.

In theory, this lets us enjoy the advantages of liberal comment porting (like easy verification of small changes by reviewers) while mitigating the disadvantages (by letting users dismiss uninteresting or obsolete comments).

It removes hidden comments from the source listing completely, so it might be a good enough step toward "hide all comments" that we don't really need that. It dodges the technical difficulty of summarizing comments. It also has proper UI, rather than being tucked away in a keyboard shortcut, which is desirable.

It uses explicit user action to decide when comments are obsolete/uninteresting, so it should avoid some of the pitfalls we ran into with autohide/autocollapse.

It might be pushing too much manual work on the user, but the interaction is pretty simple and the perspectives on T7447 are so diverse that I suspect the are very few good rules for making these distinctions automatically.

btrahan edited edge metadata.

Good stuff. The part of this interaction as is I am unsure of is how you reveal all the hidden comments at once. I'd think maybe folks would just want to reveal them one at a time? I'd say ship it and that's my best guess at a possible minor iteration here.

src/applications/differential/query/DifferentialInlineCommentQuery.php
60

use $need here just in case someone later tries to use the same query object twice with true / false values specified

This revision is now accepted and ready to land.May 27 2015, 4:55 PM

Yeah, we might want a "show everything" / "hide everything" still, either as part of this or as a separate layer on top. This felt plausible as-is to me locally, but I'm not sure if/how users will actually use it.

I think there might be some issues with handling anchors, too, but I can look at that in a followup.

src/applications/differential/query/DifferentialInlineCommentQuery.php
60

Oops, thanks!

epriestley edited edge metadata.
  • Fix needHidden().

Slight concern on space now in that inline-header, but I can likely resolve that in redesign branch.

This revision was automatically updated to reflect the committed changes.