3bd0f8c97a
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.
26 lines
635 B
Go
26 lines
635 B
Go
package search
|
|
|
|
import (
|
|
"strings"
|
|
|
|
"github.com/aerogo/aero"
|
|
"github.com/animenotifier/arn"
|
|
"github.com/animenotifier/notify.moe/components"
|
|
)
|
|
|
|
const maxUsers = 25
|
|
const maxAnime = 25
|
|
const maxPosts = 3
|
|
const maxThreads = 3
|
|
const maxTracks = 4
|
|
const maxCharacters = 5
|
|
|
|
// Get search page.
|
|
func Get(ctx *aero.Context) string {
|
|
term := ctx.Get("term")
|
|
term = strings.TrimPrefix(term, "/")
|
|
|
|
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, characters))
|
|
}
|