sindresorhus/refined-github

Reactions container stretches beyond width of comment area #1744

Daniel15 posted onGitHub

The new "eyeballs" and "spaceship" reactions are making the container too wide

See how it overlaps the right column.

PR in the screenshot: https://github.com/facebook/react/pull/14679


if types > 4, return

We can't add any avatars in that case, unless we stop at 1/2 avatars, which would look kinda wonky

<img width="710" alt="screenshot 2019-01-27 at 21 12 01" src="https://user-images.githubusercontent.com/1402241/51802862-40cb5c80-2278-11e9-8d84-8ec188ab8007.png">

posted by bfred-it about 6 years ago

What about some flexbox...

image

.comment-reactions-options {
    flex-wrap: wrap;
    margin-bottom: -1px;
}
.reaction-summary-item {
    border-bottom: 1px solid #d1d5da;
    flex: 1 1 auto;
}
.reaction-popover-container {
    align-self: center;

    .reaction-summary-item {
        border-bottom: 0 none;
    }
}
posted by jerone about 6 years ago

By using display: grid we can probably keep the width constant and show more avatars… but it’s a lot of noise and height 🤔

I’m just gonna wait until GitHub drops the two useless new reactions. I still don’t get them. I’d rather hide them altogether from everywhere.

posted by bfred-it about 6 years ago

@bfred-it thoughts about the @jerone suggestion? It looks pretty smooth.

posted by gurrrung almost 6 years ago

I don’t think it will look great with 6 reactions that way: 5 on the first line and 1 stretched out on the second line… but it may be better than what we have.

posted by bfred-it almost 6 years ago

@jerone do you want to take this one?

Further changes needed since we now allow 2 lines:

  • show more avatars or all of them
  • if it makes things harder, drop the "expand on hover" behavior
  • manually wrap the reactions to make them balanced (so the second line never ends up having only 1 reaction with 1 avatar, for example); this might not be easy because reaction count also applies, but perhaps this logic should be good enough:
    • if it wraps,
      • 4 reactions: 2 + 2
      • 5 reactions: 3 + 2
      • 6 reactions: 3 + 3
      • 7 reactions: 4 + 3
      • 8 reactions: 4 + 4
posted by bfred-it over 5 years ago

@fregante For the next 1.5 week my time is sparse, but after then, yes I'll send a PR. In the meantime, if someone else wants to that's fine too; we all use this tool :)

posted by jerone over 5 years ago

Ping on this if anyone pick it up

posted by fregante over 5 years ago

Yeah, was already poking at it.

posted by jerone over 5 years ago

Work-in-progress, but this is what I have so far:

image

.has-reactions form {
    width: 100%;
}

.rgh-reactions {
    display: grid;
    grid-template-columns: repeat(8, 25%);
    width: 100%;
    justify-content: stretch;
}

.comment-reactions-options {
    margin-bottom: -1px;
    background: transparent;
}
.reaction-summary-item {
    border-bottom: 1px solid #d1d5da;
}
.reaction-popover-container .reaction-summary-item {
    border-bottom: 0 none; /* No border below the "Add your reaction" button. */
}
posted by jerone over 5 years ago

@fregante What's the status of this?

If no one is actively working on it, I'd like to take a stab at it.

posted by ulken over 5 years ago
posted by jerone over 5 years ago

@fregante I'll might take another stab at this soon. Can you summarize for the last time what kind of wrapping you want.

posted by jerone about 5 years ago

Thank you!

Logic: only enable the 2-line grid when the icons don't fit on one line.

The easiest solution (without math guesses) would be to measure that with getBoundingClientRect (if height > 50, enable grid) but each call triggers a reflow if we follow it by classList.add, so you'd have to batch them. e.g:

for (const line of reactionLines.map(el => ({el, height: el.getBoundingClientRect().height}))) {
    if (height > 50) {
        line.classList.add('grid')
    }
}
posted by fregante about 5 years ago

@sindresorhus has rewarded $27.00 to @fregante. See it on IssueHunt

  • :moneybag: Total deposit: $30.00
  • :tada: Repository reward(0%): $0.00
  • :wrench: Service fee(10%): $3.00
posted by issuehunt-app[bot] about 5 years ago

Fund this Issue

$30.00
Rewarded

Rewarded pull request

Other pull requests

Recent activities

fregante was rewarded by sindresorhus for sindresorhus/refined-github# 1744
about 5 years ago
fregante submitted an output to  sindresorhus/ refined-github# 1744
about 5 years ago