2019-12-13 18:08:26 +00:00
|
|
|
package renderer
|
|
|
|
|
|
|
|
import (
|
|
|
|
"mastodon"
|
|
|
|
)
|
|
|
|
|
|
|
|
type TimelinePageTemplateData struct {
|
|
|
|
Statuses []*mastodon.Status
|
|
|
|
HasNext bool
|
|
|
|
NextLink string
|
|
|
|
HasPrev bool
|
|
|
|
PrevLink string
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewTimelinePageTemplateData(statuses []*mastodon.Status, hasNext bool, nextLink string, hasPrev bool,
|
|
|
|
prevLink string) *TimelinePageTemplateData {
|
|
|
|
return &TimelinePageTemplateData{
|
|
|
|
Statuses: statuses,
|
|
|
|
HasNext: hasNext,
|
|
|
|
NextLink: nextLink,
|
|
|
|
HasPrev: hasPrev,
|
|
|
|
PrevLink: prevLink,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
type ThreadPageTemplateData struct {
|
2019-12-13 20:33:20 +00:00
|
|
|
Status *mastodon.Status
|
|
|
|
Context *mastodon.Context
|
|
|
|
PostReply bool
|
|
|
|
ReplyToID string
|
|
|
|
ReplyContent string
|
2019-12-13 18:08:26 +00:00
|
|
|
}
|
|
|
|
|
2019-12-13 20:33:20 +00:00
|
|
|
func NewThreadPageTemplateData(status *mastodon.Status, context *mastodon.Context, postReply bool, replyToID string, replyContent string) *ThreadPageTemplateData {
|
2019-12-13 18:08:26 +00:00
|
|
|
return &ThreadPageTemplateData{
|
2019-12-13 20:33:20 +00:00
|
|
|
Status: status,
|
|
|
|
Context: context,
|
|
|
|
PostReply: postReply,
|
|
|
|
ReplyToID: replyToID,
|
|
|
|
ReplyContent: replyContent,
|
2019-12-13 18:08:26 +00:00
|
|
|
}
|
|
|
|
}
|