mirror of
https://github.com/go-gitea/gitea
synced 2024-11-02 08:14:25 +00:00
7681d582cd
Before, the `GiteaLocaleNumber.js` was just written as a a drop-in replacement for old `js-pretty-number`. Actually, we can use Golang's `text` package to format. This PR partially completes the TODOs in `GiteaLocaleNumber.js`: > if we have complete backend locale support (eg: Golang "x/text" package), we can drop this component. > tooltip: only 2 usages of this, we can replace it with Golang's "x/text/number" package in the future. This PR also helps #24131 Screenshots: <details> ![image](https://user-images.githubusercontent.com/2114189/232179420-b1b9974b-9d96-4408-b209-b80182c8b359.png) ![image](https://user-images.githubusercontent.com/2114189/232179416-14f36aa0-3f3e-4ac9-b366-7bd3a4464a11.png) </details>
49 lines
2.0 KiB
Handlebars
49 lines
2.0 KiB
Handlebars
{{if and (not .HideRepoInfo) (not .IsBlame)}}
|
|
<div class="ui segments repository-summary{{if and (.Permission.CanRead $.UnitTypeCode) (not .IsEmptyRepo) .LanguageStats}} repository-summary-language-stats{{end}} gt-mt-2 gt-mb-0">
|
|
<div class="ui segment sub-menu repository-menu">
|
|
<div class="ui two horizontal center list">
|
|
{{if and (.Permission.CanRead $.UnitTypeCode) (not .IsEmptyRepo)}}
|
|
<div class="item{{if .PageIsCommits}} active{{end}}">
|
|
<a href="{{.RepoLink}}/commits/{{.BranchNameSubURL}}">{{svg "octicon-history"}} <b>{{.locale.PrettyNumber .CommitsCount}}</b> {{.locale.TrN .CommitsCount "repo.commit" "repo.commits"}}</a>
|
|
</div>
|
|
<div class="item{{if .PageIsBranches}} active{{end}}">
|
|
<a href="{{.RepoLink}}/branches">{{svg "octicon-git-branch"}} <b>{{.BranchesCount}}</b> {{.locale.TrN .BranchesCount "repo.branch" "repo.branches"}}</a>
|
|
</div>
|
|
{{if $.Permission.CanRead $.UnitTypeCode}}
|
|
<div class="item">
|
|
<a href="{{.RepoLink}}/tags">{{svg "octicon-tag"}} <b>{{.NumTags}}</b> {{.locale.TrN .NumTags "repo.tag" "repo.tags"}}</a>
|
|
</div>
|
|
{{end}}
|
|
<div class="item">
|
|
<span>{{svg "octicon-database"}} <b>{{FileSize .Repository.Size}}</b></span>
|
|
</div>
|
|
{{end}}
|
|
</div>
|
|
</div>
|
|
{{if and (.Permission.CanRead $.UnitTypeCode) (not .IsEmptyRepo) .LanguageStats}}
|
|
<div class="ui segment sub-menu language-stats-details gt-hidden">
|
|
<div class="ui horizontal center list">
|
|
{{range .LanguageStats}}
|
|
<div class="item gt-df gt-ac gt-jc">
|
|
<i class="color-icon gt-mr-3" style="background-color: {{.Color}}"></i>
|
|
<span class="gt-bold gt-mr-3">
|
|
{{if eq .Language "other"}}
|
|
{{$.locale.Tr "repo.language_other"}}
|
|
{{else}}
|
|
{{.Language}}
|
|
{{end}}
|
|
</span>
|
|
{{.Percentage}}%
|
|
</div>
|
|
{{end}}
|
|
</div>
|
|
</div>
|
|
<a class="ui segment language-stats">
|
|
{{range .LanguageStats}}
|
|
<div class="bar" style="width: {{.Percentage}}%; background-color: {{.Color}}" data-tooltip-placement="top" data-tooltip-content={{.Language}}> </div>
|
|
{{end}}
|
|
</a>
|
|
{{end}}
|
|
</div>
|
|
{{end}}
|