✨ Added the ability to search for a character
This addition uses the Character pixy mixin which displays the characters with a size that may be too big compared to the other type search results. As discussed on Discord this display can be adjusted in the future. This addition also displays a maximum of 5 characters which is obviously open to being changed since it's a number picked just for testing and not for usability. Lastly on the search.pixy file I left the comment below the addition since removing it or rewriting the addition without it broke my build.
This commit is contained in:
parent
1c23d6d2a5
commit
3bd0f8c97a
@ -13,12 +13,13 @@ const maxAnime = 25
|
|||||||
const maxPosts = 3
|
const maxPosts = 3
|
||||||
const maxThreads = 3
|
const maxThreads = 3
|
||||||
const maxTracks = 4
|
const maxTracks = 4
|
||||||
|
const maxCharacters = 5
|
||||||
|
|
||||||
// Get search page.
|
// Get search page.
|
||||||
func Get(ctx *aero.Context) string {
|
func Get(ctx *aero.Context) string {
|
||||||
term := ctx.Get("term")
|
term := ctx.Get("term")
|
||||||
term = strings.TrimPrefix(term, "/")
|
term = strings.TrimPrefix(term, "/")
|
||||||
|
|
||||||
users, animes, posts, threads, tracks := arn.Search(term, maxUsers, maxAnime, maxPosts, maxThreads, maxTracks)
|
users, animes, posts, threads, tracks, characters := arn.Search(term, maxUsers, maxAnime, maxPosts, maxThreads, maxTracks, maxCharacters)
|
||||||
return ctx.HTML(components.SearchResults(term, users, animes, posts, threads, tracks))
|
return ctx.HTML(components.SearchResults(term, users, animes, posts, threads, tracks, characters))
|
||||||
}
|
}
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
component SearchResults(term string, users []*arn.User, animes []*arn.Anime, posts []*arn.Post, threads []*arn.Thread, tracks []*arn.SoundTrack)
|
component SearchResults(term string, users []*arn.User, animes []*arn.Anime, posts []*arn.Post, threads []*arn.Thread, tracks []*arn.SoundTrack, characters []*arn.Character)
|
||||||
h1.page-title= "Search: " + term
|
h1.page-title= "Search: " + term
|
||||||
|
|
||||||
.search
|
.search
|
||||||
@ -65,3 +65,16 @@ component SearchResults(term string, users []*arn.User, animes []*arn.Anime, pos
|
|||||||
.mountable(data-mountable-type="user")
|
.mountable(data-mountable-type="user")
|
||||||
Avatar(user)
|
Avatar(user)
|
||||||
//- a.ajax(href=user.Link())= user.Nick
|
//- a.ajax(href=user.Link())= user.Nick
|
||||||
|
.widget
|
||||||
|
h3.widget-title
|
||||||
|
Icon("user")
|
||||||
|
span Characters
|
||||||
|
|
||||||
|
.user-avatars.user-search
|
||||||
|
if len(characters) == 0
|
||||||
|
p.no-search-results.mountable No characters found.
|
||||||
|
else
|
||||||
|
each character in characters
|
||||||
|
.mountable(data-mountable-type="character")
|
||||||
|
Character(character)
|
||||||
|
//- a.ajax(href=user.Link())= user.Nick
|
Loading…
Reference in New Issue
Block a user