mirror of
https://gitea.phreedom.club/localhost_frssoft/bloat.git
synced 2024-11-05 12:39:22 +02:00
65 lines
1.0 KiB
Go
65 lines
1.0 KiB
Go
package renderer
|
|
|
|
import (
|
|
"mastodon"
|
|
"web/model"
|
|
)
|
|
|
|
type HeaderData struct {
|
|
Title string
|
|
NotificationCount int
|
|
CustomCSS string
|
|
}
|
|
|
|
type NavbarData struct {
|
|
User *mastodon.Account
|
|
NotificationCount int
|
|
}
|
|
|
|
type CommonData struct {
|
|
HeaderData *HeaderData
|
|
NavbarData *NavbarData
|
|
}
|
|
|
|
type TimelineData struct {
|
|
*CommonData
|
|
Title string
|
|
Statuses []*mastodon.Status
|
|
HasNext bool
|
|
NextLink string
|
|
HasPrev bool
|
|
PrevLink string
|
|
PostContext model.PostContext
|
|
}
|
|
|
|
type ThreadData struct {
|
|
*CommonData
|
|
Statuses []*mastodon.Status
|
|
PostContext model.PostContext
|
|
ReplyMap map[string][]mastodon.ReplyInfo
|
|
}
|
|
|
|
type NotificationData struct {
|
|
*CommonData
|
|
Notifications []*mastodon.Notification
|
|
HasNext bool
|
|
NextLink string
|
|
}
|
|
|
|
type UserData struct {
|
|
*CommonData
|
|
User *mastodon.Account
|
|
Statuses []*mastodon.Status
|
|
HasNext bool
|
|
NextLink string
|
|
}
|
|
|
|
type AboutData struct {
|
|
*CommonData
|
|
}
|
|
|
|
type EmojiData struct {
|
|
Emojis []*mastodon.Emoji
|
|
CommonData *CommonData
|
|
}
|