From 48842ed1085c9186c40c1a07aa0887f70707fce4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B5=B5=E6=99=BA=E8=B6=85?= <1012112796@qq.com> Date: Sun, 14 Jun 2020 02:49:59 +0800 Subject: [PATCH] ui: Show update branch item in merge box when it's necessary (#11761) * ui: Show update branch item in merge box when it's necessary As title, should show it without care about whether this pr can be merged. fix #10959 Signed-off-by: a1012112796 <1012112796@qq.com> * fix ui * Fix ui, thanks to @silverwind. Co-authored-by: silverwind * fix lint * Update templates/repo/issue/view_content/pull.tmpl Co-authored-by: silverwind * Apply review suggestion Co-authored-by: zeripath Co-authored-by: silverwind Co-authored-by: techknowlogick --- templates/repo/issue/view_content/pull.tmpl | 62 ++++++++++++++------- web_src/less/_repository.less | 13 ++++- 2 files changed, 53 insertions(+), 22 deletions(-) diff --git a/templates/repo/issue/view_content/pull.tmpl b/templates/repo/issue/view_content/pull.tmpl index 3a89cd184..c66e7734a 100644 --- a/templates/repo/issue/view_content/pull.tmpl +++ b/templates/repo/issue/view_content/pull.tmpl @@ -75,6 +75,7 @@ {{- else}}red{{end}}">{{svg "octicon-git-merge" 32}}
{{template "repo/pulls/status" .}} + {{$canAutoMerge := false}}
{{if .Issue.PullRequest.HasMerged}}
@@ -188,6 +189,30 @@ {{$.i18n.Tr (printf "repo.signing.wont_sign.%s" .WontSignReason) }}
{{end}} + {{end}} + + {{$canAutoMerge = true}} + {{if (gt .Issue.PullRequest.CommitsBehind 0)}} +
+
+
+ {{svg "octicon-alert" 16}} + {{$.i18n.Tr "repo.pulls.outdated_with_base_branch"}} +
+
+ {{if .UpdateAllowed}} +
+ {{.CsrfTokenHtml}} + +
+ {{end}} +
+
+ {{end}} + + {{if and (or $.IsRepoAdmin (not $notAllOverridableChecksOk)) (or (not .RequireSigned) .WillSign)}} {{if .AllowMerge}} {{$prUnit := .Repository.MustGetUnit $.UnitTypePullRequests}} {{$approvers := .Issue.PullRequest.GetApprovers}} @@ -300,6 +325,7 @@
{{else}} +
{{svg "octicon-x" 16}} {{$.i18n.Tr "repo.pulls.no_merge_desc"}} @@ -310,32 +336,13 @@
{{end}} {{else}} +
{{svg "octicon-info" 16}} {{$.i18n.Tr "repo.pulls.no_merge_access"}}
{{end}} {{end}} - {{if gt .Issue.PullRequest.CommitsBehind 0}} -
-
-
- {{svg "octicon-alert" 16}} - {{$.i18n.Tr "repo.pulls.outdated_with_base_branch"}} -
- {{if .UpdateAllowed}} -
-
- {{.CsrfTokenHtml}} - -
-
- {{end}} -
-
- {{end}} {{else}} {{/* Merge conflict without specific file. Suggest manual merge, only if all reviews and status checks OK. */}} {{if .IsBlockedByApprovals}} @@ -374,6 +381,21 @@ {{end}} {{end}} + + {{if and (gt .Issue.PullRequest.CommitsBehind 0) (not .Issue.IsClosed) (not .Issue.PullRequest.IsChecking) (not .IsPullFilesConflicted) (not .IsPullRequestBroken) (not $canAutoMerge)}} +
+ {{svg "octicon-alert" 16}} + {{$.i18n.Tr "repo.pulls.outdated_with_base_branch"}} + {{if .UpdateAllowed}} +
+ {{.CsrfTokenHtml}} + +
+ {{end}} +
+ {{end}} diff --git a/web_src/less/_repository.less b/web_src/less/_repository.less index 2414a4f13..0687347ef 100644 --- a/web_src/less/_repository.less +++ b/web_src/less/_repository.less @@ -995,8 +995,17 @@ > .merge-section { background-color: #f7f7f7; - .item + .item { - padding-top: .5rem; + .item { + padding: .25rem 0; + } + + .item-section { + display: flex; + align-items: center; + justify-content: space-between; + padding: 0; + margin-top: -.25rem; + margin-bottom: -.25rem; } .divider {