42 lines
1003 B
Go
42 lines
1003 B
Go
package quotes
|
|
|
|
import (
|
|
"github.com/aerogo/aero"
|
|
"github.com/animenotifier/notify.moe/arn"
|
|
"github.com/animenotifier/notify.moe/components"
|
|
"github.com/animenotifier/notify.moe/utils"
|
|
"github.com/animenotifier/notify.moe/utils/infinitescroll"
|
|
)
|
|
|
|
const maxQuotes = 12
|
|
|
|
// Latest renders the latest quotes.
|
|
func Latest(ctx aero.Context) error {
|
|
user := utils.GetUser(ctx)
|
|
index, _ := ctx.GetInt("index")
|
|
|
|
// Fetch all eligible quotes
|
|
allQuotes := fetchAll()
|
|
|
|
// Sort the quotes by date
|
|
arn.SortQuotesLatestFirst(allQuotes)
|
|
|
|
// Slice the part that we need
|
|
quotes := allQuotes[index:]
|
|
|
|
if len(quotes) > maxQuotes {
|
|
quotes = quotes[:maxQuotes]
|
|
}
|
|
|
|
// Next index
|
|
nextIndex := infinitescroll.NextIndex(ctx, len(allQuotes), maxQuotes, index)
|
|
|
|
// In case we're scrolling, send quotes only (without the page frame)
|
|
if index > 0 {
|
|
return ctx.HTML(components.QuotesScrollable(quotes, user))
|
|
}
|
|
|
|
// Otherwise, send the full page
|
|
return ctx.HTML(components.Quotes(quotes, nextIndex, user))
|
|
}
|