Implemented editor log view
This commit is contained in:
37
pages/editlog/editlog.go
Normal file
37
pages/editlog/editlog.go
Normal file
@ -0,0 +1,37 @@
|
||||
package editlog
|
||||
|
||||
import (
|
||||
"net/http"
|
||||
"sort"
|
||||
|
||||
"github.com/animenotifier/arn"
|
||||
|
||||
"github.com/animenotifier/notify.moe/components"
|
||||
|
||||
"github.com/aerogo/aero"
|
||||
"github.com/animenotifier/notify.moe/utils"
|
||||
)
|
||||
|
||||
const maxEntries = 50
|
||||
|
||||
// Get edit log.
|
||||
func Get(ctx *aero.Context) string {
|
||||
user := utils.GetUser(ctx)
|
||||
|
||||
if user == nil || (user.Role != "editor" && user.Role != "admin") {
|
||||
return ctx.Error(http.StatusUnauthorized, "Not authorized", nil)
|
||||
}
|
||||
|
||||
entries := arn.AllEditLogEntries()
|
||||
|
||||
// Sort by creation date
|
||||
sort.Slice(entries, func(i, j int) bool {
|
||||
return entries[i].Created > entries[j].Created
|
||||
})
|
||||
|
||||
if len(entries) > maxEntries {
|
||||
entries = entries[:maxEntries]
|
||||
}
|
||||
|
||||
return ctx.HTML(components.EditLog(entries, user))
|
||||
}
|
23
pages/editlog/editlog.pixy
Normal file
23
pages/editlog/editlog.pixy
Normal file
@ -0,0 +1,23 @@
|
||||
component EditLog(entries []*arn.EditLogEntry, user *arn.User)
|
||||
h1 Editor log
|
||||
|
||||
table
|
||||
thead
|
||||
tr.mountable
|
||||
th ID
|
||||
th User
|
||||
th Object
|
||||
th Old
|
||||
th New
|
||||
th Date
|
||||
tbody
|
||||
each entry in entries
|
||||
tr.mountable
|
||||
td= entry.ID
|
||||
td
|
||||
a(href=entry.User().Link(), target="_blank", rel="noopener")= entry.User().Nick
|
||||
td
|
||||
a(href="/" + strings.ToLower(entry.ObjectType) + "/" + entry.ObjectID, target="_blank")= entry.ObjectType + " " + entry.ObjectID
|
||||
td= entry.OldValue
|
||||
td= entry.NewValue
|
||||
td.utc-date(data-date=entry.Created)
|
Reference in New Issue
Block a user