mirror of
				https://github.com/go-gitea/gitea
				synced 2025-11-03 21:08:25 +00:00 
			
		
		
		
	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>
This commit is contained in:
		@@ -100,8 +100,7 @@
 | 
			
		||||
								</div>
 | 
			
		||||
								{{range .OpenProjects}}
 | 
			
		||||
									<a class="{{if $.ProjectID}}{{if eq $.ProjectID .ID}}active selected{{end}}{{end}} item" href="{{$.Link}}?type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&labels={{$.SelectLabels}}&milestone={{$.MilestoneID}}&project={{.ID}}&assignee={{$.AssigneeID}}&poster={{$.PosterID}}">
 | 
			
		||||
										{{if .IsOrganizationProject}}{{svg "octicon-project-symlink" 18 "gt-mr-3"}}{{else}}{{svg "octicon-project" 18 "gt-mr-3"}}{{end}}
 | 
			
		||||
										{{.Title}}
 | 
			
		||||
										{{svg .IconName 18 "gt-mr-3"}}{{.Title}}
 | 
			
		||||
									</a>
 | 
			
		||||
								{{end}}
 | 
			
		||||
							{{end}}
 | 
			
		||||
@@ -112,8 +111,7 @@
 | 
			
		||||
								</div>
 | 
			
		||||
								{{range .ClosedProjects}}
 | 
			
		||||
									<a class="{{if $.ProjectID}}{{if eq $.ProjectID .ID}}active selected{{end}}{{end}} item" href="{{$.Link}}?type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&labels={{$.SelectLabels}}&milestone={{$.MilestoneID}}&project={{.ID}}&assignee={{$.AssigneeID}}&poster={{$.PosterID}}">
 | 
			
		||||
										{{if .IsOrganizationProject}}{{svg "octicon-project-symlink" 18 "gt-mr-3"}}{{else}}{{svg "octicon-project" 18 "gt-mr-3"}}{{end}}
 | 
			
		||||
										{{.Title}}
 | 
			
		||||
										{{svg .IconName 18 "gt-mr-3"}}{{.Title}}
 | 
			
		||||
									</a>
 | 
			
		||||
								{{end}}
 | 
			
		||||
							{{end}}
 | 
			
		||||
@@ -273,8 +271,7 @@
 | 
			
		||||
								</div>
 | 
			
		||||
								{{range .OpenProjects}}
 | 
			
		||||
									<div class="item issue-action" data-element-id="{{.ID}}" data-url="{{$.RepoLink}}/issues/projects">
 | 
			
		||||
										{{if .IsOrganizationProject}}{{svg "octicon-project-symlink" 18 "gt-mr-3"}}{{else}}{{svg "octicon-project" 18 "gt-mr-3"}}{{end}}
 | 
			
		||||
										{{.Title}}
 | 
			
		||||
										{{svg .IconName 18 "gt-mr-3"}}{{.Title}}
 | 
			
		||||
									</div>
 | 
			
		||||
								{{end}}
 | 
			
		||||
							{{end}}
 | 
			
		||||
@@ -285,8 +282,7 @@
 | 
			
		||||
								</div>
 | 
			
		||||
								{{range .ClosedProjects}}
 | 
			
		||||
									<div class="item issue-action" data-element-id="{{.ID}}" data-url="{{$.RepoLink}}/issues/projects">
 | 
			
		||||
										{{if .IsOrganizationProject}}{{svg "octicon-project-symlink" 18 "gt-mr-3"}}{{else}}{{svg "octicon-project" 18 "gt-mr-3"}}{{end}}
 | 
			
		||||
										{{.Title}}
 | 
			
		||||
										{{svg .IconName 18 "gt-mr-3"}}{{.Title}}
 | 
			
		||||
									</div>
 | 
			
		||||
								{{end}}
 | 
			
		||||
							{{end}}
 | 
			
		||||
 
 | 
			
		||||
@@ -134,8 +134,7 @@
 | 
			
		||||
							</div>
 | 
			
		||||
							{{range .OpenProjects}}
 | 
			
		||||
								<a class="item muted sidebar-item-link" data-id="{{.ID}}" data-href="{{.Link}}">
 | 
			
		||||
									{{if .IsOrganizationProject}}{{svg "octicon-project-symlink" 18 "gt-mr-3"}}{{else}}{{svg "octicon-project" 18 "gt-mr-3"}}{{end}}
 | 
			
		||||
									{{.Title}}
 | 
			
		||||
									{{svg .IconName 18 "gt-mr-3"}}{{.Title}}
 | 
			
		||||
								</a>
 | 
			
		||||
							{{end}}
 | 
			
		||||
						{{end}}
 | 
			
		||||
@@ -146,8 +145,7 @@
 | 
			
		||||
							</div>
 | 
			
		||||
							{{range .ClosedProjects}}
 | 
			
		||||
								<a class="item muted sidebar-item-link" data-id="{{.ID}}" data-href="{{.Link}}">
 | 
			
		||||
									{{if .IsOrganizationProject}}{{svg "octicon-project-symlink" 18 "gt-mr-3"}}{{else}}{{svg "octicon-project" 18 "gt-mr-3"}}{{end}}
 | 
			
		||||
									{{.Title}}
 | 
			
		||||
									{{svg .IconName 18 "gt-mr-3"}}{{.Title}}
 | 
			
		||||
								</a>
 | 
			
		||||
							{{end}}
 | 
			
		||||
						{{end}}
 | 
			
		||||
@@ -159,8 +157,7 @@
 | 
			
		||||
				<div class="selected">
 | 
			
		||||
					{{if .Project}}
 | 
			
		||||
						<a class="item muted sidebar-item-link" href="{{.Project.Link}}">
 | 
			
		||||
							{{if .IsOrganizationProject}}{{svg "octicon-project-symlink" 18 "gt-mr-3"}}{{else}}{{svg "octicon-project" 18 "gt-mr-3"}}{{end}}
 | 
			
		||||
							{{.Project.Title}}
 | 
			
		||||
							{{svg .Project.IconName 18 "gt-mr-3"}}{{.Project.Title}}
 | 
			
		||||
						</a>
 | 
			
		||||
					{{end}}
 | 
			
		||||
				</div>
 | 
			
		||||
 
 | 
			
		||||
@@ -196,8 +196,7 @@
 | 
			
		||||
						</div>
 | 
			
		||||
						{{range .OpenProjects}}
 | 
			
		||||
							<a class="item muted sidebar-item-link" data-id="{{.ID}}" data-href="{{.Link}}">
 | 
			
		||||
								{{if .IsOrganizationProject}}{{svg "octicon-project-symlink" 18 "gt-mr-3"}}{{else}}{{svg "octicon-project" 18 "gt-mr-3"}}{{end}}
 | 
			
		||||
								{{.Title}}
 | 
			
		||||
								{{svg .IconName 18 "gt-mr-3"}}{{.Title}}
 | 
			
		||||
							</a>
 | 
			
		||||
						{{end}}
 | 
			
		||||
					{{end}}
 | 
			
		||||
@@ -208,8 +207,7 @@
 | 
			
		||||
						</div>
 | 
			
		||||
						{{range .ClosedProjects}}
 | 
			
		||||
							<a class="item muted sidebar-item-link" data-id="{{.ID}}" data-href="{{.Link}}">
 | 
			
		||||
								{{if .IsOrganizationProject}}{{svg "octicon-project-symlink" 18 "gt-mr-3"}}{{else}}{{svg "octicon-project" 18 "gt-mr-3"}}{{end}}
 | 
			
		||||
								{{.Title}}
 | 
			
		||||
								{{svg .IconName 18 "gt-mr-3"}}{{.Title}}
 | 
			
		||||
							</a>
 | 
			
		||||
						{{end}}
 | 
			
		||||
					{{end}}
 | 
			
		||||
@@ -220,8 +218,7 @@
 | 
			
		||||
				<div class="selected">
 | 
			
		||||
					{{if .Issue.ProjectID}}
 | 
			
		||||
						<a class="item muted sidebar-item-link" href="{{.Issue.Project.Link}}">
 | 
			
		||||
							{{if .IsOrganizationProject}}{{svg "octicon-project-symlink" 18 "gt-mr-3"}}{{else}}{{svg "octicon-project" 18 "gt-mr-3"}}{{end}}
 | 
			
		||||
							{{.Issue.Project.Title}}
 | 
			
		||||
							{{svg .Issue.Project.IconName 18 "gt-mr-3"}}{{.Issue.Project.Title}}
 | 
			
		||||
						</a>
 | 
			
		||||
					{{end}}
 | 
			
		||||
				</div>
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user