diff options
author | yp05327 <576951401@qq.com> | 2023-03-19 21:44:48 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-19 14:44:48 +0200 |
commit | 1a4efa0ee9a49d48549be7479a46be133b9bc260 (patch) | |
tree | 8be773cdf4ea88c662196e8e469b50bb997e3307 /models/project | |
parent | 0206882e8a9ee226092ffd0d4d39de494d2f9b80 (diff) | |
download | gitea-1a4efa0ee9a49d48549be7479a46be133b9bc260.tar.gz gitea-1a4efa0ee9a49d48549be7479a46be133b9bc260.zip |
Use `project.IconName` instead of repeated unreadable `if-else` chains (#23538)
The project type will be changed in
https://github.com/go-gitea/gitea/pull/23353, so the old fix
https://github.com/go-gitea/gitea/pull/23325 will not work as well.
And I also found that there were some problems in the old fix....
---------
Co-authored-by: Lauris BH <lauris@nix.lv>
Diffstat (limited to 'models/project')
-rw-r--r-- | models/project/project.go | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/models/project/project.go b/models/project/project.go index 679d695881..44609e60b2 100644 --- a/models/project/project.go +++ b/models/project/project.go @@ -144,10 +144,21 @@ func (p *Project) Link() string { return "" } +func (p *Project) IconName() string { + if p.IsRepositoryProject() { + return "octicon-project" + } + return "octicon-project-symlink" +} + func (p *Project) IsOrganizationProject() bool { return p.Type == TypeOrganization } +func (p *Project) IsRepositoryProject() bool { + return p.Type == TypeRepository +} + func init() { db.RegisterModel(new(Project)) } |