mirror of
https://gitea.phreedom.club/localhost_frssoft/bloat.git
synced 2024-11-05 14:43:01 +00:00
Support akkoma custom reactions, worst quality
This commit is contained in:
parent
cbbebe6b15
commit
b07793e986
@ -20,6 +20,9 @@ type ReactionsPleroma struct {
|
||||
Count int `json:"count"`
|
||||
Me bool `json:"me"`
|
||||
Name string `json:"name"`
|
||||
|
||||
// For support akkoma reactions :)
|
||||
Url *string `json:"url"`
|
||||
}
|
||||
|
||||
type ReplyInfo struct {
|
||||
|
@ -20,7 +20,11 @@
|
||||
|
||||
<div class="page-title"> Who reacted </div>
|
||||
{{range .Reactions}}
|
||||
{{if .Url}}
|
||||
<div class="page-title"><img src="{{.Url}}" height=32 width=32></img></div>
|
||||
{{else}}
|
||||
<div class="page-title">{{.Name}}</div>
|
||||
{{end}}
|
||||
{{template "userlist.tmpl" (WithContext .Accounts $.Ctx)}}
|
||||
{{end}}
|
||||
{{end}}
|
||||
|
@ -105,13 +105,21 @@
|
||||
<form action="/unreact-with/{{$st_id}}?emoji={{.Name}}" method="post" target="_self">
|
||||
<input type="hidden" name="csrf_token" value="{{$.Ctx.CSRFToken}}">
|
||||
<input type="hidden" name="referrer" value="{{$.Ctx.Referrer}}">
|
||||
{{if .Url}}
|
||||
<input type="image" src="{{.Url}}" alt="{{.Name}}{{.Count}}*" height=36 width=36 class="pleroma-emoji">
|
||||
{{else}}
|
||||
<input type="submit" value="{{.Name}}{{.Count}}*" class="pleroma-emoji">
|
||||
{{end}}
|
||||
</form>
|
||||
{{else}}
|
||||
<form action="/react-with/{{$st_id}}?emoji={{.Name}}" method="post" target="_self">
|
||||
<input type="hidden" name="csrf_token" value="{{$.Ctx.CSRFToken}}">
|
||||
<input type="hidden" name="referrer" value="{{$.Ctx.Referrer}}">
|
||||
{{if .Url}}
|
||||
<input type="image" src="{{.Url}}" alt="{{.Name}}{{.Count}}" height=32 width=32 class="pleroma-emoji">
|
||||
{{else}}
|
||||
<input type="submit" value="{{.Name}}{{.Count}}" class="pleroma-emoji">
|
||||
{{end}}
|
||||
</form>
|
||||
{{end}}
|
||||
{{end}}
|
||||
|
Loading…
Reference in New Issue
Block a user