Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Hide/Show all checks button to commit status check #26284

Merged
merged 44 commits into from
Nov 2, 2023

Conversation

yp05327
Copy link
Contributor

@yp05327 yp05327 commented Aug 2, 2023

Step one for a GitHub like commit status check ui:
image
image
image

Step two:
image
image

The design now will list all commit status checks which takes too much space.
This is a pre-improve for #26247

@GiteaBot GiteaBot added the lgtm/need 2 This PR needs two approvals by maintainers to be considered for merging. label Aug 2, 2023
@pull-request-size pull-request-size bot added the size/M Denotes a PR that changes 30-99 lines, ignoring generated files. label Aug 2, 2023
@yp05327 yp05327 added the topic/ui Change the appearance of the Gitea UI label Aug 2, 2023
@yp05327
Copy link
Contributor Author

yp05327 commented Aug 2, 2023

If there's only one commit status, there's no scrollbar. But if I click hide all checks, the scrollbar will disappear during the animation.🤔

Edited:
GitHub has the same problem:
yp05327/test2#4

@yp05327
Copy link
Contributor Author

yp05327 commented Aug 2, 2023

And there's two border lines here. 🤔
image

Edited:
Maybe fixed in 97e60b3

@a1012112796
Copy link
Member

looks we should consider about the poping up list ui also.

image

@yp05327
Copy link
Contributor Author

yp05327 commented Aug 2, 2023

looks we should consider about the poping up list ui also.

Yeah, this is step two, and I wish I can also fix #25279 in step two. (But I'm not good at frontend 😢)

Edited:
Emm, the improve of this has been also added into this PR.

@yp05327
Copy link
Contributor Author

yp05327 commented Aug 3, 2023

It seems that it is possible to reuse the template here: (not push the changes yet, just having a try)
image

@yp05327
Copy link
Contributor Author

yp05327 commented Aug 3, 2023

@silverwind

Can I change the max-width in L9 directly? It seems that this comes from tippy, not sure whether we can change it manually.
image

It seems that it is not correct, it should be at least -15px:
this will cause a horizontal scrollbar
image
And it will disappear if I change it to -15px.
URL: https://gitea.com/yp05327/testrepo/branches

@pull-request-size pull-request-size bot added size/L Denotes a PR that changes 100-499 lines, ignoring generated files. and removed size/M Denotes a PR that changes 30-99 lines, ignoring generated files. labels Aug 3, 2023
@silverwind
Copy link
Member

silverwind commented Aug 4, 2023

It is a original tippy.js rule:

https://github.com/atomiks/tippyjs/blob/ad85f6feb79cf6c5853c43bf1b2a50c4fa98e7a1/src/scss/index.scss#L6-L8

It seems to be a way to prevent a tippy instances from becoming wider than the page, and therefore go partially off-screen. It should not influence such dropdowns that are not nearly as wide as the page (vw unit is based on page width).

I think your issue is related to something different than that rule.

templates/repo/pulls/status.tmpl Outdated Show resolved Hide resolved
web_src/js/features/repo-issue-pr-status.js Outdated Show resolved Hide resolved
templates/repo/commit_statuses.tmpl Outdated Show resolved Hide resolved
templates/repo/issue/view_content/pull.tmpl Outdated Show resolved Hide resolved
templates/repo/pulls/status.tmpl Outdated Show resolved Hide resolved
@GiteaBot GiteaBot added lgtm/need 1 This PR needs approval from one additional maintainer to be merged. and removed lgtm/need 2 This PR needs two approvals by maintainers to be considered for merging. labels Sep 28, 2023
@silverwind
Copy link
Member

silverwind commented Nov 2, 2023

It's supposed to look like this:

image

But currently it's:

image

Don't know how the class is related to truncation but it definitely changes it.

Rendering should be exactly the same in popup and PR view, so a shared style would be prefferred.

@wxiaoguang
Copy link
Contributor

It looks right on my side:

image

@silverwind
Copy link
Member

silverwind commented Nov 2, 2023

It's right in the PR page but not in the popup because of the missing parent class.

@wxiaoguang
Copy link
Contributor

It's right in the PR page but not in the popup because of the missing parent class.

It's not related to .ui.segment, but it is a bad design from .ui .text.truncate. If there is no .ui on parent class, the text truncate is a no-op.

Clarifying the root problem would always help the code quality.

@silverwind
Copy link
Member

silverwind commented Nov 2, 2023

We should replace it with gt-ellipsis, ideally later replace all .text.truncate with it.

@wxiaoguang
Copy link
Contributor

wxiaoguang commented Nov 2, 2023

And there was another bug in code: the newly added .status-context display:flex is also a no-op, because the old .ui.segment also override its style.

I remove some styles of the status-context class, they are not needed either. The "text color" problem is also fixed.

image

@silverwind
Copy link
Member

The background color of .commit-status-panel is still incorrect in the popup, it should be var(--color-box-body) which previously came from .ui.attached.segment but is now missing.

@wxiaoguang
Copy link
Contributor

it should be var(--color-box-body)

Why not use var(--color-box-body) as the tippy's default background color?

@silverwind
Copy link
Member

silverwind commented Nov 2, 2023

it should be var(--color-box-body)

Why not use var(--color-box-body) as the tippy's default background color?

We can do this for the box-with-header theme.

Edit: done in 5b8a735.

@silverwind
Copy link
Member

@wxiaoguang unblock?

@GiteaBot GiteaBot added lgtm/done This PR has enough approvals to get merged. There are no important open reservations anymore. and removed lgtm/blocked A maintainer has reservations with the PR and thus it cannot be merged labels Nov 2, 2023
@silverwind silverwind added the reviewed/wait-merge This pull request is part of the merge queue. It will be merged soon. label Nov 2, 2023
@silverwind silverwind enabled auto-merge (squash) November 2, 2023 14:09
@silverwind silverwind merged commit dcb648e into go-gitea:main Nov 2, 2023
25 checks passed
@GiteaBot GiteaBot removed the reviewed/wait-merge This pull request is part of the merge queue. It will be merged soon. label Nov 2, 2023
zjjhot added a commit to zjjhot/gitea that referenced this pull request Nov 3, 2023
* upstream/main:
  Refactor Find Sources and fix bug when view a user who belongs to an unactive auth source (go-gitea#27798)
  [skip ci] Updated translations via Crowdin
  Add `Hide/Show all checks` button to commit status check (go-gitea#26284)
  Fix http protocol auth (go-gitea#27875)
  Display issue task list on project cards (go-gitea#27865)
  Reduce margin/padding on flex-list items and divider (go-gitea#27872)
@yp05327 yp05327 deleted the improve-commit-status-ui branch November 6, 2023 00:49
fuxiaohei pushed a commit to fuxiaohei/gitea that referenced this pull request Jan 17, 2024
)

Step one for a GitHub like commit status check ui:

![image](https://github.com/go-gitea/gitea/assets/18380374/22953b88-1f91-4d19-bc57-ad92d33fa11f)

![image](https://github.com/go-gitea/gitea/assets/18380374/78572a49-c9b0-472b-86a8-8293197e807b)

![image](https://github.com/go-gitea/gitea/assets/18380374/bc5c8d1c-2ab5-4b03-b8c6-20c34b86d856)

Step two:

![image](https://github.com/go-gitea/gitea/assets/18380374/938b359e-8823-4192-b82d-55fa40b986fd)

![image](https://github.com/go-gitea/gitea/assets/18380374/2de5bb8f-40f5-462a-8d6d-bac13a32bc2a)

The design now will list all commit status checks which takes too much
space.
This is a pre-improve for go-gitea#26247

---------

Co-authored-by: delvh <dev.lh@web.de>
Co-authored-by: silverwind <me@silverwind.io>
Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
@go-gitea go-gitea locked as resolved and limited conversation to collaborators Jan 31, 2024
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
lgtm/done This PR has enough approvals to get merged. There are no important open reservations anymore. modifies/translation size/L Denotes a PR that changes 100-499 lines, ignoring generated files. topic/ui Change the appearance of the Gitea UI type/enhancement An improvement of existing functionality
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

7 participants