33 lines
787 B
Go
Raw Normal View History

2017-06-22 14:21:26 +00:00
package profile
2018-11-24 06:57:52 +00:00
// import (
// "net/http"
2017-06-22 14:21:26 +00:00
2018-11-24 06:57:52 +00:00
// "github.com/aerogo/aero"
2019-06-03 09:32:43 +00:00
// "github.com/animenotifier/notify.moe/arn"
2018-11-24 06:57:52 +00:00
// "github.com/animenotifier/notify.moe/components"
// "github.com/animenotifier/notify.moe/utils"
// )
2017-06-22 14:21:26 +00:00
2018-11-24 06:57:52 +00:00
// const postLimit = 10
2017-06-22 15:03:43 +00:00
2018-11-24 06:57:52 +00:00
// // GetPostsByUser shows all forum posts of a particular user.
2019-06-01 04:55:49 +00:00
// func GetPostsByUser(ctx aero.Context) error {
2018-11-24 06:57:52 +00:00
// nick := ctx.Get("nick")
// viewUser, err := arn.GetUserByNick(nick)
2017-06-22 15:03:43 +00:00
2018-11-24 06:57:52 +00:00
// if err != nil {
// return ctx.Error(http.StatusNotFound, "User not found", err)
// }
2017-06-22 14:21:26 +00:00
2018-11-24 06:57:52 +00:00
// posts := viewUser.Posts()
// arn.SortPostsLatestFirst(posts)
2018-11-24 06:57:52 +00:00
// if len(posts) >= postLimit {
// posts = posts[:postLimit]
// }
2017-06-22 14:21:26 +00:00
2019-06-01 04:55:49 +00:00
// return ctx.HTML(components.LatestPosts(arn.ToPostables(posts), viewUser, utils.GetUser(ctx), ctx.Path()))
2017-06-22 14:21:26 +00:00
2018-11-24 06:57:52 +00:00
// }