From 9cc9c7ceed76a441af5eb29e00b0b1664a16c030 Mon Sep 17 00:00:00 2001 From: zeripath Date: Thu, 26 Aug 2021 00:04:58 +0100 Subject: [PATCH] Report the correct number of pushes on the feeds (#16811) * Report the correct number of pushes on the feeds Since the number of commits in the Action table has been limited to 5 the number of commits reported on the feeds page is now incorrectly also limited to 5. The correct number is available as the Len and this PR changes this to report this. Fix #16804 Signed-off-by: Andrew Thornton * Update templates/user/dashboard/feeds.tmpl Co-authored-by: techknowlogick --- modules/repository/commits.go | 10 +++++++++- modules/templates/helper.go | 5 +++++ templates/user/dashboard/feeds.tmpl | 2 +- 3 files changed, 15 insertions(+), 2 deletions(-) diff --git a/modules/repository/commits.go b/modules/repository/commits.go index eaaf3b8b198b..8eaa640d5612 100644 --- a/modules/repository/commits.go +++ b/modules/repository/commits.go @@ -31,6 +31,7 @@ type PushCommits struct { Commits []*PushCommit HeadCommit *PushCommit CompareURL string + Len int avatars map[string]string emailUsers map[string]*models.User @@ -182,5 +183,12 @@ func ListToPushCommits(l *list.List) *PushCommits { commit := CommitToPushCommit(e.Value.(*git.Commit)) commits = append(commits, commit) } - return &PushCommits{commits, nil, "", make(map[string]string), make(map[string]*models.User)} + return &PushCommits{ + Commits: commits, + HeadCommit: nil, + CompareURL: "", + Len: len(commits), + avatars: make(map[string]string), + emailUsers: make(map[string]*models.User), + } } diff --git a/modules/templates/helper.go b/modules/templates/helper.go index f9b2dafd22a1..fcddb59d6513 100644 --- a/modules/templates/helper.go +++ b/modules/templates/helper.go @@ -848,6 +848,11 @@ func ActionContent2Commits(act Actioner) *repository.PushCommits { if err := json.Unmarshal([]byte(act.GetContent()), push); err != nil { log.Error("json.Unmarshal:\n%s\nERROR: %v", act.GetContent(), err) } + + if push.Len == 0 { + push.Len = len(push.Commits) + } + return push } diff --git a/templates/user/dashboard/feeds.tmpl b/templates/user/dashboard/feeds.tmpl index 6ed75ee1490c..057a4a76256e 100644 --- a/templates/user/dashboard/feeds.tmpl +++ b/templates/user/dashboard/feeds.tmpl @@ -101,7 +101,7 @@ {{end}} {{end}} - {{if and (gt (len $push.Commits) 1) $push.CompareURL}}
  • {{$.i18n.Tr "action.compare_commits" (len $push.Commits)}} »
  • {{end}} + {{if and (gt $push.Len 1) $push.CompareURL}}
  • {{$.i18n.Tr "action.compare_commits" $push.Len}} »
  • {{end}} {{else if eq .GetOpType 6}}