2019-12-13 20:08:26 +02:00
|
|
|
package renderer
|
|
|
|
|
|
|
|
import (
|
|
|
|
"mastodon"
|
|
|
|
)
|
|
|
|
|
2019-12-15 19:37:58 +02:00
|
|
|
type NavbarTemplateData struct {
|
|
|
|
NotificationCount int
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewNavbarTemplateData(notificationCount int) *NavbarTemplateData {
|
|
|
|
return &NavbarTemplateData{
|
|
|
|
NotificationCount: notificationCount,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-13 20:08:26 +02:00
|
|
|
type TimelinePageTemplateData struct {
|
2019-12-15 19:37:58 +02:00
|
|
|
Statuses []*mastodon.Status
|
|
|
|
HasNext bool
|
|
|
|
NextLink string
|
|
|
|
HasPrev bool
|
|
|
|
PrevLink string
|
|
|
|
NavbarData *NavbarTemplateData
|
2019-12-13 20:08:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func NewTimelinePageTemplateData(statuses []*mastodon.Status, hasNext bool, nextLink string, hasPrev bool,
|
2019-12-15 19:37:58 +02:00
|
|
|
prevLink string, navbarData *NavbarTemplateData) *TimelinePageTemplateData {
|
2019-12-13 20:08:26 +02:00
|
|
|
return &TimelinePageTemplateData{
|
2019-12-15 19:37:58 +02:00
|
|
|
Statuses: statuses,
|
|
|
|
HasNext: hasNext,
|
|
|
|
NextLink: nextLink,
|
|
|
|
HasPrev: hasPrev,
|
|
|
|
PrevLink: prevLink,
|
|
|
|
NavbarData: navbarData,
|
2019-12-13 20:08:26 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
type ThreadPageTemplateData struct {
|
2019-12-19 00:14:02 +02:00
|
|
|
Statuses []*mastodon.Status
|
2019-12-13 22:33:20 +02:00
|
|
|
ReplyToID string
|
|
|
|
ReplyContent string
|
2019-12-19 00:14:02 +02:00
|
|
|
ReplyMap map[string][]mastodon.ReplyInfo
|
2019-12-15 19:37:58 +02:00
|
|
|
NavbarData *NavbarTemplateData
|
2019-12-13 20:08:26 +02:00
|
|
|
}
|
|
|
|
|
2019-12-19 17:12:35 +02:00
|
|
|
func NewThreadPageTemplateData(statuses []*mastodon.Status, replyToID string, replyContent string, replyMap map[string][]mastodon.ReplyInfo, navbarData *NavbarTemplateData) *ThreadPageTemplateData {
|
2019-12-13 20:08:26 +02:00
|
|
|
return &ThreadPageTemplateData{
|
2019-12-19 00:14:02 +02:00
|
|
|
Statuses: statuses,
|
2019-12-13 22:33:20 +02:00
|
|
|
ReplyToID: replyToID,
|
|
|
|
ReplyContent: replyContent,
|
2019-12-19 00:14:02 +02:00
|
|
|
ReplyMap: replyMap,
|
2019-12-15 19:37:58 +02:00
|
|
|
NavbarData: navbarData,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
type NotificationPageTemplateData struct {
|
|
|
|
Notifications []*mastodon.Notification
|
|
|
|
HasNext bool
|
|
|
|
NextLink string
|
|
|
|
NavbarData *NavbarTemplateData
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewNotificationPageTemplateData(notifications []*mastodon.Notification, hasNext bool, nextLink string, navbarData *NavbarTemplateData) *NotificationPageTemplateData {
|
|
|
|
return &NotificationPageTemplateData{
|
|
|
|
Notifications: notifications,
|
|
|
|
HasNext: hasNext,
|
|
|
|
NextLink: nextLink,
|
|
|
|
NavbarData: navbarData,
|
2019-12-13 20:08:26 +02:00
|
|
|
}
|
|
|
|
}
|
2019-12-20 20:30:20 +02:00
|
|
|
|
|
|
|
type UserPageTemplateData struct {
|
|
|
|
User *mastodon.Account
|
|
|
|
Statuses []*mastodon.Status
|
|
|
|
HasNext bool
|
|
|
|
NextLink string
|
|
|
|
NavbarData *NavbarTemplateData
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewUserPageTemplateData(user *mastodon.Account, statuses []*mastodon.Status, hasNext bool, nextLink string, navbarData *NavbarTemplateData) *UserPageTemplateData {
|
|
|
|
return &UserPageTemplateData{
|
|
|
|
User: user,
|
|
|
|
Statuses: statuses,
|
|
|
|
HasNext: hasNext,
|
|
|
|
NextLink: nextLink,
|
|
|
|
NavbarData: navbarData,
|
|
|
|
}
|
|
|
|
}
|