23 lines
510 B
Go
Raw Normal View History

2018-11-05 11:57:37 +00:00
package post
import (
"net/http"
"github.com/aerogo/aero"
2019-06-03 09:32:43 +00:00
"github.com/animenotifier/notify.moe/arn"
2018-11-05 11:57:37 +00:00
"github.com/animenotifier/notify.moe/components"
)
// ReplyUI renders a new post area.
2019-06-01 04:55:49 +00:00
func ReplyUI(ctx aero.Context) error {
2018-11-05 11:57:37 +00:00
id := ctx.Get("id")
2019-11-17 07:59:34 +00:00
user := arn.GetUserFromContext(ctx)
2018-11-05 11:57:37 +00:00
post, err := arn.GetPost(id)
if err != nil {
return ctx.Error(http.StatusNotFound, "Post not found", err)
}
2018-11-15 11:19:40 +00:00
return ctx.HTML(components.NewPostArea(post, user, "Reply") + components.NewPostActions(post, true))
2018-11-05 11:57:37 +00:00
}