40 lines
976 B
Go
Raw Normal View History

package quotes
import (
"github.com/aerogo/aero"
"github.com/animenotifier/arn"
"github.com/animenotifier/notify.moe/components"
"github.com/animenotifier/notify.moe/utils"
2018-03-13 21:38:26 +00:00
"github.com/animenotifier/notify.moe/utils/infinitescroll"
)
2018-03-13 21:38:26 +00:00
// Best renders the best quotes.
2019-06-01 04:55:49 +00:00
func Best(ctx aero.Context) error {
user := utils.GetUser(ctx)
2018-03-13 21:38:26 +00:00
index, _ := ctx.GetInt("index")
2018-03-13 21:38:26 +00:00
// Fetch all eligible quotes
allQuotes := fetchAll()
2018-03-13 22:06:16 +00:00
// Sort the quotes by number of likes
arn.SortQuotesPopularFirst(allQuotes)
2018-03-13 21:38:26 +00:00
// Slice the part that we need
quotes := allQuotes[index:]
if len(quotes) > maxQuotes {
quotes = quotes[:maxQuotes]
}
2018-03-13 21:38:26 +00:00
// Next index
nextIndex := infinitescroll.NextIndex(ctx, len(allQuotes), maxQuotes, index)
2018-03-13 21:38:26 +00:00
// In case we're scrolling, send quotes only (without the page frame)
if index > 0 {
return ctx.HTML(components.QuotesScrollable(quotes, user))
}
2018-03-13 21:38:26 +00:00
// Otherwise, send the full page
return ctx.HTML(components.Quotes(quotes, nextIndex, user))
}