24 lines
559 B
Go
24 lines
559 B
Go
package thread
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/aerogo/aero"
|
|
"github.com/animenotifier/arn"
|
|
"github.com/animenotifier/notify.moe/components"
|
|
"github.com/animenotifier/notify.moe/utils"
|
|
)
|
|
|
|
// ReplyUI renders a new post area.
|
|
func ReplyUI(ctx *aero.Context) string {
|
|
id := ctx.Get("id")
|
|
user := utils.GetUser(ctx)
|
|
thread, err := arn.GetThread(id)
|
|
|
|
if err != nil {
|
|
return ctx.Error(http.StatusNotFound, "Thread not found", err)
|
|
}
|
|
|
|
return ctx.HTML(components.NewPostArea(user, "Reply") + components.NewPostActions(thread.Type(), thread.ID, true))
|
|
}
|