"time"
)
+type StatusPleroma struct {
+ InReplyToAccountAcct string `json:"in_reply_to_account_acct"`
+}
+
+type ReplyInfo struct {
+ ID string `json:"id"`
+ Number int `json:"number"`
+}
+
// Status is struct to hold status.
type Status struct {
ID string `json:"id"`
Application Application `json:"application"`
Language string `json:"language"`
Pinned interface{} `json:"pinned"`
+
+ // Custom fields
+ Pleroma StatusPleroma `json:"pleroma"`
+ HideAccountInfo bool `json:"hide_account_info"`
+ ShowReplies bool `json:"show_replies"`
+ ReplyMap map[string][]ReplyInfo `json:"reply_map"`
+ ReplyNumber int `json:"reply_number"`
}
// Context hold information for mastodon context.
--- /dev/null
+package model
}
type ThreadPageTemplateData struct {
- Status *mastodon.Status
- Context *mastodon.Context
+ Statuses []*mastodon.Status
PostReply bool
ReplyToID string
ReplyContent string
+ ReplyMap map[string][]mastodon.ReplyInfo
NavbarData *NavbarTemplateData
}
-func NewThreadPageTemplateData(status *mastodon.Status, context *mastodon.Context, postReply bool, replyToID string, replyContent string, navbarData *NavbarTemplateData) *ThreadPageTemplateData {
+func NewThreadPageTemplateData(statuses []*mastodon.Status, postReply bool, replyToID string, replyContent string, replyMap map[string][]mastodon.ReplyInfo, navbarData *NavbarTemplateData) *ThreadPageTemplateData {
return &ThreadPageTemplateData{
- Status: status,
- Context: context,
+ Statuses: statuses,
PostReply: postReply,
ReplyToID: replyToID,
ReplyContent: replyContent,
+ ReplyMap: replyMap,
NavbarData: navbarData,
}
}
return
}
- context, err := c.GetStatusContext(ctx, id)
- if err != nil {
- return
- }
-
u, err := c.GetAccountCurrentUser(ctx)
if err != nil {
return
}
var content string
+ var replyToID string
if reply {
+ replyToID = id
if u.ID != status.Account.ID {
content += "@" + status.Account.Acct + " "
}
- for _, m := range status.Mentions {
- if u.ID != m.ID {
- content += "@" + m.Acct + " "
+ for i := range status.Mentions {
+ if status.Mentions[i].ID != u.ID && status.Mentions[i].ID != status.Account.ID {
+ content += "@" + status.Mentions[i].Acct + " "
}
}
}
+ context, err := c.GetStatusContext(ctx, id)
+ if err != nil {
+ return
+ }
+
+ statuses := append(append(context.Ancestors, status), context.Descendants...)
+
+ replyMap := make(map[string][]mastodon.ReplyInfo)
+
+ for i := range statuses {
+ statuses[i].ShowReplies = true
+ statuses[i].ReplyMap = replyMap
+ addToReplyMap(replyMap, statuses[i].InReplyToID, statuses[i].ID, i+1)
+ }
+
navbarData, err := svc.getNavbarTemplateData(ctx, client, c)
if err != nil {
return
}
- data := renderer.NewThreadPageTemplateData(status, context, reply, id, content, navbarData)
+ data := renderer.NewThreadPageTemplateData(statuses, reply, replyToID, content, replyMap, navbarData)
err = svc.renderer.RenderThreadPage(ctx, client, data)
if err != nil {
return
switch notifications[i].Type {
case "reblog", "favourite":
if notifications[i].Status != nil {
- notifications[i].Status.Account.ID = ""
+ notifications[i].Status.HideAccountInfo = true
}
}
if notifications[i].Pleroma != nil && notifications[i].Pleroma.IsSeen {
return s.ID, nil
}
+
+func addToReplyMap(m map[string][]mastodon.ReplyInfo, key interface{}, val string, number int) {
+ if key == nil {
+ return
+ }
+ keyStr, ok := key.(string)
+ if !ok {
+ return
+ }
+ _, ok = m[keyStr]
+ if !ok {
+ m[keyStr] = []mastodon.ReplyInfo{}
+ }
+
+ m[keyStr] = append(m[keyStr], mastodon.ReplyInfo{val, number})
+}
}
.status-content {
- margin: 8px 0;
+ margin: 4px 0 8px 0;
}
.status-content p {
height: 48px;
width: 48px;
margin-right: 8px;
+ object-fit: contain;
}
.status {
height: 24px;
width: 24px;
margin-bottom: -8px;
+ margin-right: 0px;
}
.retweet-info .status-dname{
.notification-follow-uname {
margin-top: 8px;
}
+
+.status-reply-to {
+ vertical-align: center;
+ font-size: 10pt
+}
+
+.status-reply-container .icon {
+ font-size: 10pt;
+ vertical-align: sub;
+ margin-right: -2px;
+}
+
+.status-reply-text {
+ font-size: 10pt;
+}
+
+.status-reply {
+ font-size: 10pt;
+}
+
+.status-reply-info-divider {
+ margin: 0 4px;
+}
{{block "status" .}}
<div class="status-container">
<div>
- {{if ne .Account.ID ""}}
+ {{if not .HideAccountInfo}}
<img class="status-profile-img" src="{{.Account.AvatarStatic}}" alt="profile-avatar" />
{{end}}
</div>
<div class="status">
- {{if ne .Account.ID ""}}
+ {{if not .HideAccountInfo}}
<div class="status-name">
<span class="status-dname"> {{WithEmojis .Account.DisplayName .Account.Emojis}} </span>
<span class="status-uname"> {{.Account.Acct}} </span>
</div>
{{end}}
+ <div class="status-reply-container">
+ {{if .InReplyToID}}
+ <span class="icon dripicons-forward"></span>
+ <a class="status-reply-to" href="{{if not .ShowReplies}}/thread/{{.InReplyToID}}{{end}}#status-{{.InReplyToID}}"> reply to {{.Pleroma.InReplyToAccountAcct}} </a>
+ {{if index .ReplyMap .ID}} <span class="status-reply-info-divider"> - </span> {{end}}
+ {{end}}
+ {{if .ShowReplies}}
+ {{if index .ReplyMap .ID}} <span class="status-reply-text"> replies: </span> {{end}}
+ {{range index .ReplyMap .ID}}
+ <a class="status-reply" href="#status-{{.ID}}">#{{.Number}}</a>
+ {{end}}
+ {{end}}
+ </div>
<div class="status-content"> {{WithEmojis .Content .Emojis}} </div>
<div class="status-media-container">
{{range .MediaAttachments}}
{{template "navigation.tmpl" .NavbarData}}
<div class="page-title"> Thread </div>
-{{range .Context.Ancestors}}
+{{range .Statuses}}
{{template "status.tmpl" .}}
-{{end}}
-{{template "status.tmpl" .Status}}
-{{if .PostReply}}
+{{if eq .ID $.ReplyToID}}
<form class="timeline-post-form" action="/post" method="POST" enctype="multipart/form-data">
<input type="hidden" name="reply_to_id" value="{{.ReplyToID}}" />
<label for="post-content"> Reply to {{.Status.Account.DisplayName}} </label>
</form>
{{end}}
-{{range .Context.Descendants}}
-{{template "status.tmpl" .}}
{{end}}
{{template "footer.tmpl"}}