bloat/renderer/model.go

173 lines
2.8 KiB
Go
Raw Normal View History

2019-12-13 20:08:26 +02:00
package renderer
import (
2020-02-01 13:31:44 +02:00
"bloat/mastodon"
2020-01-01 17:58:27 +02:00
"bloat/model"
2019-12-13 20:08:26 +02:00
)
2020-01-14 18:57:16 +02:00
type Context struct {
HideAttachments bool
MaskNSFW bool
FluorideMode bool
ThreadInNewTab bool
DarkMode bool
CSRFToken string
UserID string
2020-09-02 20:50:48 +03:00
AntiDopamineMode bool
AddReactionsFilter string
2021-04-03 12:22:43 +03:00
UserCSS string
Referrer string
2020-01-14 18:57:16 +02:00
}
type CommonData struct {
Title string
CustomCSS string
CSRFToken string
Count int
RefreshInterval int
Target string
}
2021-03-20 07:12:48 +02:00
type NavData struct {
CommonData *CommonData
User *mastodon.Account
PostContext model.PostContext
}
2019-12-26 11:11:24 +02:00
type ErrorData struct {
*CommonData
Err string
Retry bool
SessionErr bool
2019-12-26 11:11:24 +02:00
}
type HomePageData struct {
*CommonData
}
type SigninData struct {
*CommonData
}
2020-02-19 00:15:37 +02:00
type RootData struct {
Title string
}
2019-12-25 16:13:59 +02:00
type TimelineData struct {
*CommonData
2020-02-19 00:15:37 +02:00
Title string
2021-01-23 10:44:05 +02:00
Type string
Instance string
2020-02-19 00:15:37 +02:00
Statuses []*mastodon.Status
NextLink string
PrevLink string
2019-12-13 20:08:26 +02:00
}
2022-02-11 13:18:02 +02:00
type ListsData struct {
*CommonData
Lists []*mastodon.List
}
type ListData struct {
*CommonData
List *mastodon.List
Accounts []*mastodon.Account
Q string
SearchAccounts []*mastodon.Account
}
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
}
2021-09-05 20:17:59 +03:00
type QuickReplyData struct {
*CommonData
Ancestor *mastodon.Status
Status *mastodon.Status
PostContext model.PostContext
}
2019-12-25 16:13:59 +02:00
type NotificationData struct {
*CommonData
2019-12-15 19:37:58 +02:00
Notifications []*mastodon.Notification
2020-02-19 00:15:37 +02:00
UnreadCount int
ReadID string
2019-12-15 19:37:58 +02:00
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
IsCurrent bool
Type string
Users []*mastodon.Account
Statuses []*mastodon.Status
NextLink string
}
2019-12-21 07:48:48 +02:00
2020-01-30 17:32:37 +02:00
type UserSearchData struct {
*CommonData
User *mastodon.Account
Q string
Statuses []*mastodon.Status
NextLink string
}
2019-12-25 16:13:59 +02:00
type AboutData struct {
*CommonData
2019-12-21 07:48:48 +02:00
}
2022-10-12 13:34:41 +03:00
type AboutInstanceData struct {
*CommonData
Instance *mastodon.Instance
2022-10-13 01:41:34 +03:00
Peers []string
2022-10-12 13:34:41 +03:00
}
2019-12-25 16:13:59 +02:00
type EmojiData struct {
2019-12-26 11:11:24 +02:00
*CommonData
2019-12-26 21:18:09 +02:00
Emojis []*mastodon.Emoji
2019-12-26 11:11:24 +02:00
}
type LikedByData struct {
*CommonData
2019-12-26 21:18:09 +02:00
Users []*mastodon.Account
NextLink string
2019-12-26 11:11:24 +02:00
}
2022-10-19 17:33:43 +03:00
//For Pleroma reactions
type ReactedByData struct {
*CommonData
Reactions []*mastodon.ReactionsPleroma
ReactionEmojis map[string]string
ID string
2022-10-19 17:33:43 +03:00
}
2019-12-26 11:11:24 +02:00
type RetweetedByData struct {
*CommonData
2019-12-26 21:18:09 +02:00
Users []*mastodon.Account
NextLink string
}
type SearchData struct {
*CommonData
2019-12-27 10:06:43 +02:00
Q string
Type string
Users []*mastodon.Account
Statuses []*mastodon.Status
2019-12-26 21:18:09 +02:00
NextLink string
2019-12-22 20:10:42 +02:00
}
2019-12-27 10:06:43 +02:00
type SettingsData struct {
*CommonData
2020-10-19 09:51:23 +03:00
Settings *model.Settings
PostFormats []model.PostFormat
2019-12-27 10:06:43 +02:00
}
2021-01-30 18:51:09 +02:00
type FiltersData struct {
*CommonData
Filters []*mastodon.Filter
}