Disabled old profile pages
This commit is contained in:
@ -1,57 +1,57 @@
|
||||
package profilequotes
|
||||
|
||||
import (
|
||||
"net/http"
|
||||
// import (
|
||||
// "net/http"
|
||||
|
||||
"github.com/aerogo/aero"
|
||||
"github.com/animenotifier/arn"
|
||||
"github.com/animenotifier/notify.moe/components"
|
||||
"github.com/animenotifier/notify.moe/utils"
|
||||
"github.com/animenotifier/notify.moe/utils/infinitescroll"
|
||||
)
|
||||
// "github.com/aerogo/aero"
|
||||
// "github.com/animenotifier/arn"
|
||||
// "github.com/animenotifier/notify.moe/components"
|
||||
// "github.com/animenotifier/notify.moe/utils"
|
||||
// "github.com/animenotifier/notify.moe/utils/infinitescroll"
|
||||
// )
|
||||
|
||||
const (
|
||||
quotesFirstLoad = 12
|
||||
quotesPerScroll = 9
|
||||
)
|
||||
// const (
|
||||
// quotesFirstLoad = 12
|
||||
// quotesPerScroll = 9
|
||||
// )
|
||||
|
||||
// render renders the quotes on user profiles.
|
||||
func render(ctx *aero.Context, fetch func(userID string) []*arn.Quote) string {
|
||||
nick := ctx.Get("nick")
|
||||
index, _ := ctx.GetInt("index")
|
||||
user := utils.GetUser(ctx)
|
||||
viewUser, err := arn.GetUserByNick(nick)
|
||||
// // render renders the quotes on user profiles.
|
||||
// func render(ctx *aero.Context, fetch func(userID string) []*arn.Quote) string {
|
||||
// nick := ctx.Get("nick")
|
||||
// index, _ := ctx.GetInt("index")
|
||||
// user := utils.GetUser(ctx)
|
||||
// viewUser, err := arn.GetUserByNick(nick)
|
||||
|
||||
if err != nil {
|
||||
return ctx.Error(http.StatusNotFound, "User not found", err)
|
||||
}
|
||||
// if err != nil {
|
||||
// return ctx.Error(http.StatusNotFound, "User not found", err)
|
||||
// }
|
||||
|
||||
// Fetch all eligible quotes
|
||||
allQuotes := fetch(viewUser.ID)
|
||||
// // Fetch all eligible quotes
|
||||
// allQuotes := fetch(viewUser.ID)
|
||||
|
||||
// Sort the quotes by publication date
|
||||
arn.SortQuotesLatestFirst(allQuotes)
|
||||
// // Sort the quotes by publication date
|
||||
// arn.SortQuotesLatestFirst(allQuotes)
|
||||
|
||||
// Slice the part that we need
|
||||
quotes := allQuotes[index:]
|
||||
maxLength := quotesFirstLoad
|
||||
// // Slice the part that we need
|
||||
// quotes := allQuotes[index:]
|
||||
// maxLength := quotesFirstLoad
|
||||
|
||||
if index > 0 {
|
||||
maxLength = quotesPerScroll
|
||||
}
|
||||
// if index > 0 {
|
||||
// maxLength = quotesPerScroll
|
||||
// }
|
||||
|
||||
if len(quotes) > maxLength {
|
||||
quotes = quotes[:maxLength]
|
||||
}
|
||||
// if len(quotes) > maxLength {
|
||||
// quotes = quotes[:maxLength]
|
||||
// }
|
||||
|
||||
// Next index
|
||||
nextIndex := infinitescroll.NextIndex(ctx, len(allQuotes), maxLength, index)
|
||||
// // Next index
|
||||
// nextIndex := infinitescroll.NextIndex(ctx, len(allQuotes), maxLength, index)
|
||||
|
||||
// In case we're scrolling, send quotes only (without the page frame)
|
||||
if index > 0 {
|
||||
return ctx.HTML(components.QuotesScrollable(quotes, user))
|
||||
}
|
||||
// // 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.ProfileQuotes(quotes, viewUser, nextIndex, user, ctx.URI()))
|
||||
}
|
||||
// // Otherwise, send the full page
|
||||
// return ctx.HTML(components.ProfileQuotes(quotes, viewUser, nextIndex, user, ctx.URI()))
|
||||
// }
|
||||
|
Reference in New Issue
Block a user