mirror of
https://gitea.phreedom.club/localhost_frssoft/bloat.git
synced 2024-11-05 12:39:22 +02:00
41 lines
882 B
Go
41 lines
882 B
Go
|
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 {
|
||
|
Status *mastodon.Status
|
||
|
Context *mastodon.Context
|
||
|
PostReply bool
|
||
|
ReplyToID string
|
||
|
}
|
||
|
|
||
|
func NewThreadPageTemplateData(status *mastodon.Status, context *mastodon.Context, postReply bool, replyToID string) *ThreadPageTemplateData {
|
||
|
return &ThreadPageTemplateData{
|
||
|
Status: status,
|
||
|
Context: context,
|
||
|
PostReply: postReply,
|
||
|
ReplyToID: replyToID,
|
||
|
}
|
||
|
}
|