Page MenuHomePhabricator

[web] Display the number of pinned messages in a banner across chat
ClosedPublic

Authored by rohan on Apr 4 2023, 7:35 PM.
Tags
None
Referenced Files
F2834085: D7310.id25736.diff
Sat, Sep 28, 9:55 AM
F2834084: D7310.id25730.diff
Sat, Sep 28, 9:55 AM
F2834083: D7310.id25535.diff
Sat, Sep 28, 9:55 AM
F2834082: D7310.id25522.diff
Sat, Sep 28, 9:54 AM
F2834081: D7310.id25074.diff
Sat, Sep 28, 9:54 AM
F2834080: D7310.id24655.diff
Sat, Sep 28, 9:54 AM
F2834079: D7310.id24650.diff
Sat, Sep 28, 9:54 AM
F2834078: D7310.id24960.diff
Sat, Sep 28, 9:54 AM
Subscribers

Details

Summary

Each thread that has pinned messages should display a banner across the top indicating the count.

Linear: https://linear.app/comm/issue/ENG-3448/display-the-number-of-pinned-messages-in-a-banner-across-chat

Depends on D7309

Test Plan

Check threads that have 1) 0 pinned messages, 2) 1 pinned messages, 3) >1 pinned messages

Screenshot 2023-04-04 at 10.31.28 PM.png (1×3 px, 351 KB)

Screenshot 2023-04-04 at 10.31.19 PM.png (1×3 px, 325 KB)

Screenshot 2023-04-04 at 10.31.13 PM.png (1×3 px, 371 KB)

Diff Detail

Repository
rCOMM Comm
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

Harbormaster returned this revision to the author for changes because remote builds failed.Apr 4 2023, 7:50 PM
Harbormaster failed remote builds in B17994: Diff 24650!
Harbormaster returned this revision to the author for changes because remote builds failed.Apr 5 2023, 5:51 AM
Harbormaster failed remote builds in B17997: Diff 24655!
Harbormaster returned this revision to the author for changes because remote builds failed.Apr 11 2023, 5:27 AM
Harbormaster failed remote builds in B18224: Diff 24960!

I still need to figure out what is causing tooltip-utils.test.js to fail in D7309, but after attempting to debug locally, I'd prefer to unblock review and continuing figuring it out locally

rohan requested review of this revision.Apr 11 2023, 5:30 AM
tomek added inline comments.
web/chat/thread-top-bar.css
52 ↗(On Diff #24960)

Please use a const from typography

57–60 ↗(On Diff #24960)

Adding a hover effect to span might indicate that it is not really a span? If clicking it navigates to something, then it is rather an anchor or a button.

web/chat/thread-top-bar.react.js
43 ↗(On Diff #24960)

How about using string template literal?

This revision is now accepted and ready to land.Apr 12 2023, 4:53 AM
web/chat/thread-top-bar.react.js
43 ↗(On Diff #24960)

I've made some changes to this diff in the upcoming revision, so please let me know if it addresses your feedback or if you feel like I missed over something

ESLint + Address Feedback

Still seeing ESLint issues. Might be good to make sure you're able to confirm locally that all ESLint issues are resolved before updating the diff again

Still seeing ESLint issues. Might be good to make sure you're able to confirm locally that all ESLint issues are resolved before updating the diff again

For me, the BuildKite log shows that eslint . --max-warnings=0 is Done in 50.79s, and when I run eslint . locally to check the entire project repo, it doesn't identify any failures.

yarn workspace web test however is what I'm seeing as the cause to the failure, with a message of

$ jest
 PASS  database/sql-js.test.js
 PASS  utils/device-id.test.js
 PASS  utils/text-utils.test.js
 PASS  olm/olm.test.js
 PASS  media/aes-crypto-utils.test.js
 PASS  database/utils/worker-crypto-utlis.test.js
 PASS  database/queries/metadata-queries.test.js
 PASS  database/utils/db-utils.test.js
 PASS  utils/typeahead-utils.test.js
 PASS  database/queries/storage-engine-queries.test.js
 PASS  database/queries/draft-queries.test.js
 FAIL  utils/tooltip-utils.test.js
  ● Test suite failed to run
 
    TypeError: Cannot read properties of undefined (reading 'LEFT')
 
      23 |
      24 | const availableTooltipPositionsForViewerMessage = [
    > 25 |   tooltipPositions.LEFT,
         |                    ^
      26 |   tooltipPositions.LEFT_BOTTOM,
      27 |   tooltipPositions.LEFT_TOP,
      28 |   tooltipPositions.RIGHT,
 
      at Object.<anonymous> (chat/composed-message.react.js:25:20)
      at Object.<anonymous> (chat/multimedia-message.react.js:11:1)
      at Object.<anonymous> (chat/message.react.js:12:1)
      at Object.<anonymous> (components/pinned-message.react.js:12:1)
      at Object.<anonymous> (modals/chat/toggle-pin-modal.react.js:20:1)
      at Object.<anonymous> (utils/tooltip-utils.js:35:1)
      at Object.<anonymous> (utils/tooltip-utils.test.js:3:1)
 
Test Suites: 1 failed, 11 passed, 12 total
Tests:       55 passed, 55 total
Snapshots:   0 total
Time:        4.41 s

Are you seeing an ESLint warning that I'm missing in the logs?

Sorry yeah I didn't actually check!! Looks like it's just the unit test failure