32 lines
805 B
Go
Raw Normal View History

2017-06-17 01:25:02 +02:00
package profile
2017-06-08 14:46:38 +02:00
2018-11-24 15:57:52 +09:00
// import (
// "net/http"
2017-06-08 14:46:38 +02:00
2018-11-24 15:57:52 +09:00
// "github.com/aerogo/aero"
2019-06-03 18:32:43 +09:00
// "github.com/animenotifier/notify.moe/arn"
2018-11-24 15:57:52 +09:00
// "github.com/animenotifier/notify.moe/components"
// "github.com/animenotifier/notify.moe/utils"
// )
2017-06-08 14:46:38 +02:00
2018-11-24 15:57:52 +09:00
// const maxThreads = 20
2017-07-03 17:33:57 +02:00
2018-11-24 15:57:52 +09:00
// // GetThreadsByUser shows all forum threads of a particular user.
2019-06-01 13:55:49 +09:00
// func GetThreadsByUser(ctx aero.Context) error {
2018-11-24 15:57:52 +09:00
// nick := ctx.Get("nick")
// viewUser, err := arn.GetUserByNick(nick)
2017-06-08 14:46:38 +02:00
2018-11-24 15:57:52 +09:00
// if err != nil {
// return ctx.Error(http.StatusNotFound, "User not found", err)
// }
2017-06-08 14:46:38 +02:00
2018-11-24 15:57:52 +09:00
// threads := viewUser.Threads()
// arn.SortThreadsLatestFirst(threads)
2017-06-08 14:46:38 +02:00
2018-11-24 15:57:52 +09:00
// if len(threads) > maxThreads {
// threads = threads[:maxThreads]
// }
2017-07-03 17:33:57 +02:00
2019-11-17 16:59:34 +09:00
// return ctx.HTML(components.ProfileThreads(threads, viewUser, arn.GetUserFromContext(ctx), ctx.Path()))
2018-11-24 15:57:52 +09:00
// }