[BUG] Remember topic only in repo search

- Ports b4360d504c
This commit is contained in:
Gusted 2024-03-06 11:15:38 +01:00
parent c2f4fcca5a
commit e793e28f94
No known key found for this signature in database
GPG key ID: FD821B732837125F
2 changed files with 14 additions and 0 deletions

View file

@ -1,6 +1,7 @@
<div class="ui secondary filter menu">
<form id="repo-search-form" class="ui form ignore-dirty tw-flex-1 tw-flex tw-flex-row tw-gap-x-2">
{{if .Language}}<input hidden name="language" value="{{.Language}}">{{end}}
{{if .TopicOnly}}<input hidden name="topic" value="{{.TopicOnly}}">{{end}}
<div class="ui fluid action input tw-flex-1">
{{template "shared/searchinput" dict "Value" .Keyword}}
{{if .PageIsExploreRepositories}}

View file

@ -8,6 +8,8 @@ import (
"testing"
"code.gitea.io/gitea/tests"
"github.com/stretchr/testify/assert"
)
func TestExploreRepos(t *testing.T) {
@ -15,4 +17,15 @@ func TestExploreRepos(t *testing.T) {
req := NewRequest(t, "GET", "/explore/repos")
MakeRequest(t, req, http.StatusOK)
t.Run("Persistent parameters", func(t *testing.T) {
defer tests.PrintCurrentTest(t)()
req := NewRequest(t, "GET", "/explore/repos?topic=1&language=Go")
resp := MakeRequest(t, req, http.StatusOK)
htmlDoc := NewHTMLParser(t, resp.Body).Find("#repo-search-form")
assert.EqualValues(t, "Go", htmlDoc.Find("input[name='language']").AttrOr("value", "not found"))
assert.EqualValues(t, "true", htmlDoc.Find("input[name='topic']").AttrOr("value", "not found"))
})
}