419ea11b14
CI / changes (pull_request) Successful in 2s
CI / unit (pull_request) Successful in 9s
CI / integration (pull_request) Successful in 12s
CI / ui (pull_request) Successful in 47s
CI / gate (pull_request) Successful in 0s
CI / deploy (pull_request) Successful in 1m12s
User-facing Feedback screen (Settings -> Info, registered accounts only): a message (<=1024 runes) plus one optional attachment, an anti-spam gate (one unreviewed message at a time), and the operator's inline reply with a Settings/Info badge. Server-rendered admin console section (/_gm/feedback): unread/read/archived queue with per-user search, detail with read/reply/ archive/delete/delete-all, safe attachment serving (nosniff, images inline via <img>, others download-only). Introduces account_roles, the first per-account role table; feedback_banned blocks only feedback submission, granted/revoked from /users and the delete-with-block action. - migration 00004_feedback (feedback_messages + account_roles) + jetgen - backend internal/feedback (store+service), internal/account/roles.go - wire: FlatBuffers feedback.submit/get/unread; gateway guest gate (Op.NonGuest, is_guest via session resolve) -> guest_forbidden before any backend call - reply push reuses NotificationEvent with a new admin_reply sub-kind - UI: /feedback route + screen, attachment picker, badge, channel detection, i18n - tests: feedback unit (Go+UI), gateway guest-gate, inttest lifecycle, e2e - docs: PLAN stage 19, ARCHITECTURE s15, FUNCTIONAL(+ru), TESTING, READMEs
47 lines
2.2 KiB
Go Template
47 lines
2.2 KiB
Go Template
{{define "content" -}}
|
|
{{with .Data}}
|
|
<h1>Feedback</h1>
|
|
<nav class="subnav"><a href="/_gm/feedback">« feedback</a> · <a href="/_gm/users/{{.AccountID}}">user</a></nav>
|
|
<section class="panel"><h2>Message</h2>
|
|
<ul class="kv">
|
|
<li><b>From</b> <a href="/_gm/users/{{.AccountID}}">{{.SenderName}}</a> ({{.Source}})</li>
|
|
<li><b>Channel</b> {{.Channel}}</li>
|
|
<li><b>IP</b> {{if .IP}}<code>{{.IP}}</code>{{else}}<span class="note">none</span>{{end}}</li>
|
|
<li><b>Filed</b> {{.CreatedAt}}</li>
|
|
<li><b>State</b> {{if .Archived}}archived{{else if .Read}}read{{else}}<span class="warn">unread</span>{{end}}</li>
|
|
{{if .Banned}}<li><b>Feedback</b> <span class="warn">sender is banned from feedback</span></li>{{end}}
|
|
</ul>
|
|
<div class="msgbody">{{.Body}}</div>
|
|
{{if .HasAttachment}}
|
|
<h3>Attachment</h3>
|
|
{{if .IsImage}}<p><img class="attach" src="/_gm/feedback/{{.ID}}/attachment" alt="attachment"></p>{{end}}
|
|
<p><a href="/_gm/feedback/{{.ID}}/attachment" download>download {{.AttachmentName}}</a></p>
|
|
{{end}}
|
|
</section>
|
|
{{if .Replied}}
|
|
<section class="panel"><h2>Current reply</h2>
|
|
<div class="msgbody">{{.ReplyBody}}</div>
|
|
<p class="note">sent {{.RepliedAt}}</p>
|
|
</section>
|
|
{{end}}
|
|
<section class="panel"><h2>{{if .Replied}}Re-reply{{else}}Reply{{end}}</h2>
|
|
<form class="form col" method="post" action="/_gm/feedback/{{.ID}}/reply">
|
|
<label>Reply <textarea name="reply" required></textarea></label>
|
|
<div><button type="submit">Send reply</button></div>
|
|
</form>
|
|
</section>
|
|
<section class="panel"><h2>Actions</h2>
|
|
<form class="form" method="post" action="/_gm/feedback/{{.ID}}/read"><button type="submit">Mark read</button></form>
|
|
<form class="form" method="post" action="/_gm/feedback/{{.ID}}/archive"><button type="submit">Archive</button></form>
|
|
<form class="form col" method="post" action="/_gm/feedback/{{.ID}}/delete">
|
|
<label><input type="checkbox" name="block" value="1"> ban the player from feedback</label>
|
|
<div><button type="submit">Delete</button></div>
|
|
</form>
|
|
<form class="form col" method="post" action="/_gm/feedback/{{.ID}}/delete-all">
|
|
<label><input type="checkbox" name="block" value="1"> ban the player from feedback</label>
|
|
<div><button type="submit">Delete all from this player</button></div>
|
|
</form>
|
|
</section>
|
|
{{end}}
|
|
{{- end}}
|