mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-11-04 12:53:43 +01:00 
			
		
		
		
	This PR introduces a new UI element type for Gitea called `flex-item`. It consists of a horizontal card with a leading, main and trailing part:  The idea behind it is that in Gitea UI, we have many cases where we use this kind of layout, but it is achieved in many different ways: - grid layout - `.ui.list` with additional hacky flexbox - `.ui.key.list` - looks to me like a style set originally created for ssh/gpg key list, was used in many other places - `.issue.list` - created for issue cards, used in many other places - ... This new style is based on `.issue.list`, specifically the refactoring of it done in #25750. In this PR, the new element is introduced and lots of templates are being refactored to use that style. This allows to remove a lot of page-specific css, makes many of the elements responsive or simply provides a cleaner/better-looking way to present information. A devtest section with the new style is also available. <details> <summary>Screenshots (left: before, right: after)</summary>                    </details> --------- Co-authored-by: Giteabot <teabot@gitea.io>
		
			
				
	
	
		
			119 lines
		
	
	
		
			3.6 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			119 lines
		
	
	
		
			3.6 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
// Copyright 2017 The Gitea Authors. All rights reserved.
 | 
						|
// SPDX-License-Identifier: MIT
 | 
						|
 | 
						|
package integration
 | 
						|
 | 
						|
import (
 | 
						|
	"net/http"
 | 
						|
	"testing"
 | 
						|
 | 
						|
	"code.gitea.io/gitea/modules/setting"
 | 
						|
	"code.gitea.io/gitea/tests"
 | 
						|
 | 
						|
	"github.com/stretchr/testify/assert"
 | 
						|
)
 | 
						|
 | 
						|
func TestSettingShowUserEmailExplore(t *testing.T) {
 | 
						|
	defer tests.PrepareTestEnv(t)()
 | 
						|
 | 
						|
	showUserEmail := setting.UI.ShowUserEmail
 | 
						|
	setting.UI.ShowUserEmail = true
 | 
						|
 | 
						|
	session := loginUser(t, "user2")
 | 
						|
	req := NewRequest(t, "GET", "/explore/users?sort=alphabetically")
 | 
						|
	resp := session.MakeRequest(t, req, http.StatusOK)
 | 
						|
	htmlDoc := NewHTMLParser(t, resp.Body)
 | 
						|
	assert.Contains(t,
 | 
						|
		htmlDoc.doc.Find(".explore.users").Text(),
 | 
						|
		"user34@example.com",
 | 
						|
	)
 | 
						|
 | 
						|
	setting.UI.ShowUserEmail = false
 | 
						|
 | 
						|
	req = NewRequest(t, "GET", "/explore/users?sort=alphabetically")
 | 
						|
	resp = session.MakeRequest(t, req, http.StatusOK)
 | 
						|
	htmlDoc = NewHTMLParser(t, resp.Body)
 | 
						|
	assert.NotContains(t,
 | 
						|
		htmlDoc.doc.Find(".explore.users").Text(),
 | 
						|
		"user34@example.com",
 | 
						|
	)
 | 
						|
 | 
						|
	setting.UI.ShowUserEmail = showUserEmail
 | 
						|
}
 | 
						|
 | 
						|
func TestSettingShowUserEmailProfile(t *testing.T) {
 | 
						|
	defer tests.PrepareTestEnv(t)()
 | 
						|
 | 
						|
	showUserEmail := setting.UI.ShowUserEmail
 | 
						|
 | 
						|
	// user1: keep_email_private = false, user2: keep_email_private = true
 | 
						|
 | 
						|
	setting.UI.ShowUserEmail = true
 | 
						|
 | 
						|
	// user1 can see own visible email
 | 
						|
	session := loginUser(t, "user1")
 | 
						|
	req := NewRequest(t, "GET", "/user1")
 | 
						|
	resp := session.MakeRequest(t, req, http.StatusOK)
 | 
						|
	htmlDoc := NewHTMLParser(t, resp.Body)
 | 
						|
	assert.Contains(t, htmlDoc.doc.Find(".user.profile").Text(), "user1@example.com")
 | 
						|
 | 
						|
	// user1 can not see user2's hidden email
 | 
						|
	req = NewRequest(t, "GET", "/user2")
 | 
						|
	resp = session.MakeRequest(t, req, http.StatusOK)
 | 
						|
	htmlDoc = NewHTMLParser(t, resp.Body)
 | 
						|
	// Should only contain if the user visits their own profile page
 | 
						|
	assert.NotContains(t, htmlDoc.doc.Find(".user.profile").Text(), "user2@example.com")
 | 
						|
 | 
						|
	// user2 can see user1's visible email
 | 
						|
	session = loginUser(t, "user2")
 | 
						|
	req = NewRequest(t, "GET", "/user1")
 | 
						|
	resp = session.MakeRequest(t, req, http.StatusOK)
 | 
						|
	htmlDoc = NewHTMLParser(t, resp.Body)
 | 
						|
	assert.Contains(t, htmlDoc.doc.Find(".user.profile").Text(), "user1@example.com")
 | 
						|
 | 
						|
	// user2 can see own hidden email
 | 
						|
	session = loginUser(t, "user2")
 | 
						|
	req = NewRequest(t, "GET", "/user2")
 | 
						|
	resp = session.MakeRequest(t, req, http.StatusOK)
 | 
						|
	htmlDoc = NewHTMLParser(t, resp.Body)
 | 
						|
	assert.Contains(t, htmlDoc.doc.Find(".user.profile").Text(), "user2@example.com")
 | 
						|
 | 
						|
	setting.UI.ShowUserEmail = false
 | 
						|
 | 
						|
	// user1 can see own (now hidden) email
 | 
						|
	session = loginUser(t, "user1")
 | 
						|
	req = NewRequest(t, "GET", "/user1")
 | 
						|
	resp = session.MakeRequest(t, req, http.StatusOK)
 | 
						|
	htmlDoc = NewHTMLParser(t, resp.Body)
 | 
						|
	assert.Contains(t, htmlDoc.doc.Find(".user.profile").Text(), "user1@example.com")
 | 
						|
 | 
						|
	setting.UI.ShowUserEmail = showUserEmail
 | 
						|
}
 | 
						|
 | 
						|
func TestSettingLandingPage(t *testing.T) {
 | 
						|
	defer tests.PrepareTestEnv(t)()
 | 
						|
 | 
						|
	landingPage := setting.LandingPageURL
 | 
						|
 | 
						|
	setting.LandingPageURL = setting.LandingPageHome
 | 
						|
	req := NewRequest(t, "GET", "/")
 | 
						|
	MakeRequest(t, req, http.StatusOK)
 | 
						|
 | 
						|
	setting.LandingPageURL = setting.LandingPageExplore
 | 
						|
	req = NewRequest(t, "GET", "/")
 | 
						|
	resp := MakeRequest(t, req, http.StatusSeeOther)
 | 
						|
	assert.Equal(t, "/explore", resp.Header().Get("Location"))
 | 
						|
 | 
						|
	setting.LandingPageURL = setting.LandingPageOrganizations
 | 
						|
	req = NewRequest(t, "GET", "/")
 | 
						|
	resp = MakeRequest(t, req, http.StatusSeeOther)
 | 
						|
	assert.Equal(t, "/explore/organizations", resp.Header().Get("Location"))
 | 
						|
 | 
						|
	setting.LandingPageURL = setting.LandingPageLogin
 | 
						|
	req = NewRequest(t, "GET", "/")
 | 
						|
	resp = MakeRequest(t, req, http.StatusSeeOther)
 | 
						|
	assert.Equal(t, "/user/login", resp.Header().Get("Location"))
 | 
						|
 | 
						|
	setting.LandingPageURL = landingPage
 | 
						|
}
 |