bloat/renderer/model.go

65 lines
1.0 KiB
Go
Raw Normal View History

2019-12-13 20:08:26 +02:00
package renderer
import (
"mastodon"
"web/model"
2019-12-13 20:08:26 +02:00
)
type HeaderData struct {
Title string
NotificationCount int
CustomCSS string
}
2019-12-25 16:13:59 +02:00
type NavbarData struct {
2019-12-24 16:55:05 +02:00
User *mastodon.Account
2019-12-15 19:37:58 +02:00
NotificationCount int
}
type CommonData struct {
HeaderData *HeaderData
NavbarData *NavbarData
}
2019-12-25 16:13:59 +02:00
type TimelineData struct {
*CommonData
2019-12-25 06:30:21 +02:00
Title string
Statuses []*mastodon.Status
HasNext bool
NextLink string
HasPrev bool
PrevLink string
PostContext model.PostContext
2019-12-13 20:08:26 +02:00
}
2019-12-25 16:13:59 +02:00
type ThreadData struct {
*CommonData
Statuses []*mastodon.Status
PostContext model.PostContext
ReplyMap map[string][]mastodon.ReplyInfo
2019-12-13 20:08:26 +02:00
}
2019-12-25 16:13:59 +02:00
type NotificationData struct {
*CommonData
2019-12-15 19:37:58 +02:00
Notifications []*mastodon.Notification
HasNext bool
NextLink string
2019-12-13 20:08:26 +02:00
}
2019-12-25 16:13:59 +02:00
type UserData struct {
*CommonData
User *mastodon.Account
Statuses []*mastodon.Status
HasNext bool
NextLink string
}
2019-12-21 07:48:48 +02:00
2019-12-25 16:13:59 +02:00
type AboutData struct {
*CommonData
2019-12-21 07:48:48 +02:00
}
2019-12-25 16:13:59 +02:00
type EmojiData struct {
2019-12-22 20:10:42 +02:00
Emojis []*mastodon.Emoji
CommonData *CommonData
2019-12-22 20:10:42 +02:00
}