44 lines
1.0 KiB
Go
Raw Normal View History

2018-11-22 01:27:53 +00:00
package groups
import (
"github.com/aerogo/aero"
2019-06-03 09:32:43 +00:00
"github.com/animenotifier/notify.moe/arn"
2018-11-22 01:27:53 +00:00
"github.com/animenotifier/notify.moe/components"
"github.com/animenotifier/notify.moe/utils"
"github.com/animenotifier/notify.moe/utils/infinitescroll"
)
const (
2018-11-22 02:51:44 +00:00
groupsFirstLoad = 27
groupsPerScroll = 18
2018-11-22 01:27:53 +00:00
)
// render renders the groups page with the given groups.
2019-06-01 04:55:49 +00:00
func render(ctx aero.Context, allGroups []*arn.Group) error {
2018-11-22 01:27:53 +00:00
user := utils.GetUser(ctx)
index, _ := ctx.GetInt("index")
// Slice the part that we need
groups := allGroups[index:]
maxLength := groupsFirstLoad
if index > 0 {
maxLength = groupsPerScroll
}
if len(groups) > maxLength {
groups = groups[:maxLength]
}
// Next index
nextIndex := infinitescroll.NextIndex(ctx, len(allGroups), maxLength, index)
// In case we're scrolling, send groups only (without the page frame)
if index > 0 {
return ctx.HTML(components.GroupsScrollable(groups, user))
}
// Otherwise, send the full page
return ctx.HTML(components.Groups(groups, nextIndex, user))
}