From 8dbd270a878d430323f45c3e58b4f9b8bb879e0f Mon Sep 17 00:00:00 2001 From: Yarden Shoham Date: Fri, 14 Apr 2023 20:12:28 +0000 Subject: [PATCH 1/6] Localize heatmap Signed-off-by: Yarden Shoham --- models/activities/user_heatmap.go | 9 ++++++++ options/locale/locale_en-US.ini | 7 ++++++ routers/web/user/home.go | 1 + routers/web/user/profile.go | 1 + templates/user/heatmap.tmpl | 9 +++++++- web_src/js/components/ActivityHeatmap.vue | 26 +++++++++++------------ web_src/js/features/heatmap.js | 7 ++++-- 7 files changed, 44 insertions(+), 16 deletions(-) diff --git a/models/activities/user_heatmap.go b/models/activities/user_heatmap.go index d3f0f0db73b27..33207995267b6 100644 --- a/models/activities/user_heatmap.go +++ b/models/activities/user_heatmap.go @@ -69,3 +69,12 @@ func getUserHeatmapData(user *user_model.User, team *organization.Team, doer *us OrderBy("timestamp"). Find(&hdata) } + +// GetTotalContributionsInHeatmap returns the total number of contributions in a heatmap +func GetTotalContributionsInHeatmap(hdata []*UserHeatmapData) int64 { + var total int64 + for _, v := range hdata { + total += v.Contributions + } + return total +} diff --git a/options/locale/locale_en-US.ini b/options/locale/locale_en-US.ini index f71ea824e979b..642ca09aa3c85 100644 --- a/options/locale/locale_en-US.ini +++ b/options/locale/locale_en-US.ini @@ -120,6 +120,13 @@ footer = Footer footer.software = About Software footer.links = Links +[heatmap] +number_of_contributions_in_the_last_12_months = %s contributions in the last 12 months +no_contributions = No contributions +less = Less +more = More +number_of_contributions_on_date = %[1]s contributions on %[2]s + [editor] buttons.heading.tooltip = Add heading buttons.bold.tooltip = Add bold text diff --git a/routers/web/user/home.go b/routers/web/user/home.go index a0a5dc3c4b9ba..1f77379044afe 100644 --- a/routers/web/user/home.go +++ b/routers/web/user/home.go @@ -107,6 +107,7 @@ func Dashboard(ctx *context.Context) { return } ctx.Data["HeatmapData"] = data + ctx.Data["HeatmapTotalContributions"] = activities_model.GetTotalContributionsInHeatmap(data) } feeds, count, err := activities_model.GetFeeds(ctx, activities_model.GetFeedsOptions{ diff --git a/routers/web/user/profile.go b/routers/web/user/profile.go index d690fa4d0113d..b39ba58f12455 100644 --- a/routers/web/user/profile.go +++ b/routers/web/user/profile.go @@ -74,6 +74,7 @@ func Profile(ctx *context.Context) { return } ctx.Data["HeatmapData"] = data + ctx.Data["HeatmapTotalContributions"] = activities_model.GetTotalContributionsInHeatmap(data) } if len(ctx.ContextUser.Description) != 0 { diff --git a/templates/user/heatmap.tmpl b/templates/user/heatmap.tmpl index 9d58bc8fc5e51..5732d65b4aaaa 100644 --- a/templates/user/heatmap.tmpl +++ b/templates/user/heatmap.tmpl @@ -1,5 +1,12 @@ {{if .HeatmapData}} -
+
{{.locale.Tr "user.heatmap.loading"}}
diff --git a/web_src/js/components/ActivityHeatmap.vue b/web_src/js/components/ActivityHeatmap.vue index 98ffce44b5579..c213a3fa0ea5c 100644 --- a/web_src/js/components/ActivityHeatmap.vue +++ b/web_src/js/components/ActivityHeatmap.vue @@ -1,12 +1,11 @@