Page MenuHomePhabricator

[web] Reintroduce `MessageTimestampTooltip` in `ChatMessageList`
ClosedPublic

Authored by abosh on Jul 7 2022, 10:41 AM.
Tags
None
Referenced Files
F2152749: D4481.id.diff
Sun, Jun 30, 3:47 PM
Unknown Object (File)
Sun, Jun 30, 1:34 AM
Unknown Object (File)
Sat, Jun 29, 7:25 PM
Unknown Object (File)
Sat, Jun 29, 6:34 PM
Unknown Object (File)
Wed, Jun 26, 5:21 AM
Unknown Object (File)
Tue, Jun 18, 8:06 AM
Unknown Object (File)
Wed, Jun 12, 2:57 PM
Unknown Object (File)
May 20 2024, 5:54 AM

Details

Summary

This diff is the first part in a stack of commits that will work to fix the timestamp bug outlined in this Linear issue. Also see @ashoat's comment on D3567 for more context.

This diff removes the timestamp from MessageTooltip and instead reintroduces MessageTimestampTooltip in ChatMessageList, thus reverting the visual aspect of this change to what the timestamp tooltip used to look like before MessageActionButtons was introduced.

The reason this was done is:

  1. Start the new stack of diffs to fix the timestamp bug
  2. By moving the timestamp out of MessageTooltip, the component is no longer inside the messageContainer in ChatMessageList which has a overflow-y: auto property. This overflow-y property was causing the timestamp to be cut off within the ChatMessageList container since it did not allow any elements to extend beyond its perimeter.
  3. This reverts the code to a familiar place that we have seen before. This diff should be fairly easy to review -- although there are added files, these are mostly just copied over from the old version of the tooltip/timestamp and the front-end changes are identical.
Test Plan

Tested on Chrome/Safari and looks as expected.

Diff Detail

Repository
rCOMM Comm
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

abosh edited the test plan for this revision. (Show Details)
web/chat/message-timestamp-tooltip.react.js
33 ↗(On Diff #14290)

This file was mostly copied over from the version of the codebase prior to D3567, with a few changes (like making a new CSS file for this component specifically, see line 9).

web/chat/message-tooltip.css
12–29 ↗(On Diff #14290)

These were for the old timestamp in MessageTooltip which was deleted in this diff. However, in the future the timestamp and action buttons could be put back into the same component (that is outside the messageContainer in ChatMessageList to escape the overflow-y: auto property), but that will be handled in later diffs.

atul added a subscriber: atul.

Resigning and adding @ashoat as blocking review since he has far more context on tooltip positioning and the layout nuances involved.

If resigning and adding @ashoat isn't the right thing to do here, feel free to add me back as blocking reviewer and I'll take a closer look.

This diff is the first part in a stack of commits that will work to fix the timestamp bug

Makes sense, but we should avoid landing this one until the whole stack is up / accepted, since it will otherwise result in a regression (if I'm not mistaken).

This revision is now accepted and ready to land.Jul 17 2022, 1:12 PM

In D4434, there were certain changes made that made D4481 broken since ChatMessageList was refactored. This update brings ChatMessageList up to date and out of a broken state. Since this is the first in a stack of diffs that will resolve the timestamp bug (Linear issue here), it doesn't need to be landed yet since I plan on getting the rest of the diffs up. I have abandoned D4700 since those changes have been made as an update in here.

abosh removed a reviewer: ashoat.

Re-requesting review since the entire stack for the new MessageTimestampTooltip has been pushed, and this diff was only amended to work with the changes made in D4434. Removing @ashoat since he already accepted the old code/has context on this issue and probably doesn't need to be a first-pass reviewer on this stack.

This revision is now accepted and ready to land.Aug 4 2022, 6:59 AM

Adding @atul and @jacek as blocking to get at least one more reviewer on this.

This revision now requires review to proceed.Aug 4 2022, 7:42 AM
atul added inline comments.
web/chat/message-timestamp-tooltip.react.js
36 ↗(On Diff #15162)

We typically don't want to leave console.log(...) statements in the codebase.

Was this intentional, or was it just included for whatever debugging/troubleshooting purposes as you were working?

abosh marked an inline comment as done.
abosh added inline comments.
web/chat/message-timestamp-tooltip.react.js
36 ↗(On Diff #15162)

Ah nice catch! That was for debugging, will remove.

This revision is now accepted and ready to land.Aug 4 2022, 9:25 AM
abosh marked an inline comment as done.

Remove extraneous console.log(...) statement, per @atul's feedback.