mirror of
https://github.com/go-gitea/gitea.git
synced 2024-11-01 08:47:40 -04:00
21331be30c
Continuation of https://github.com/go-gitea/gitea/pull/25439. Fixes #847 Before: <img width="1296" alt="image" src="https://github.com/go-gitea/gitea/assets/32161460/24571ac8-b254-43c9-b178-97340f0dc8a9"> ---- After: <img width="1296" alt="image" src="https://github.com/go-gitea/gitea/assets/32161460/c60b2459-9d10-4d42-8d83-d5ef0f45bf94"> --- #### Overview This is the implementation of a requested feature: Contributors graph (#847) It makes Activity page a multi-tab page and adds a new tab called Contributors. Contributors tab shows the contribution graphs over time since the repository existed. It also shows per user contribution graphs for top 100 contributors. Top 100 is calculated based on the selected contribution type (commits, additions or deletions). --- #### Demo (The demo is a bit old but still a good example to show off the main features) <video src="https://github.com/go-gitea/gitea/assets/32161460/9f68103f-8145-4cc2-94bc-5546daae7014" controls width="320" height="240"> <a href="https://github.com/go-gitea/gitea/assets/32161460/9f68103f-8145-4cc2-94bc-5546daae7014">Download</a> </video> #### Features: - Select contribution type (commits, additions or deletions) - See overall and per user contribution graphs for the selected contribution type - Zoom and pan on graphs to see them in detail - See top 100 contributors based on the selected contribution type and selected time range - Go directly to users' profile by clicking their name if they are registered gitea users - Cache the results so that when the same repository is visited again fetching data will be faster --------- Co-authored-by: silverwind <me@silverwind.io> Co-authored-by: hiifong <i@hiif.ong> Co-authored-by: delvh <dev.lh@web.de> Co-authored-by: 6543 <6543@obermui.de> Co-authored-by: yp05327 <576951401@qq.com>
45 lines
1.2 KiB
Go
45 lines
1.2 KiB
Go
// Copyright 2023 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package repo
|
|
|
|
import (
|
|
"errors"
|
|
"net/http"
|
|
|
|
"code.gitea.io/gitea/modules/base"
|
|
"code.gitea.io/gitea/modules/context"
|
|
contributors_service "code.gitea.io/gitea/services/repository"
|
|
)
|
|
|
|
const (
|
|
tplContributors base.TplName = "repo/activity"
|
|
)
|
|
|
|
// Contributors render the page to show repository contributors graph
|
|
func Contributors(ctx *context.Context) {
|
|
ctx.Data["Title"] = ctx.Tr("repo.contributors")
|
|
|
|
ctx.Data["PageIsActivity"] = true
|
|
ctx.Data["PageIsContributors"] = true
|
|
|
|
ctx.PageData["contributionType"] = "commits"
|
|
|
|
ctx.PageData["repoLink"] = ctx.Repo.RepoLink
|
|
|
|
ctx.HTML(http.StatusOK, tplContributors)
|
|
}
|
|
|
|
// ContributorsData renders JSON of contributors along with their weekly commit statistics
|
|
func ContributorsData(ctx *context.Context) {
|
|
if contributorStats, err := contributors_service.GetContributorStats(ctx, ctx.Cache, ctx.Repo.Repository, ctx.Repo.CommitID); err != nil {
|
|
if errors.Is(err, contributors_service.ErrAwaitGeneration) {
|
|
ctx.Status(http.StatusAccepted)
|
|
return
|
|
}
|
|
ctx.ServerError("GetContributorStats", err)
|
|
} else {
|
|
ctx.JSON(http.StatusOK, contributorStats)
|
|
}
|
|
}
|