Files
jiang13-forum/routers/web/boards.go
2026-08-29 06:53:20 +08:00

54 lines
1.1 KiB
Go

package web
import (
"net/http"
"git.iioio.com/freefire/jiang13-forum/modules/webctx"
"github.com/gin-gonic/gin"
)
type boardsItemView struct {
ID uint
Name string
Description string
Icon string
ColorIndex int
PostCount int
}
type boardsPageData struct {
PageChrome
Items []boardsItemView
}
// BoardsGet 公开板块索引
func (d Deps) BoardsGet(c *gin.Context) {
ctx := d.ctx(c)
d.renderBoards(ctx)
}
func (d Deps) renderBoards(ctx *webctx.Context) {
brand := d.Settings.SiteBranding()
chrome := d.chrome(ctx, "板块 · "+brand.Name, "", "")
list, _ := d.Board.ListWithStats()
items := make([]boardsItemView, 0, len(list))
for _, b := range list {
color := b.ColorIndex
if color < 0 {
color = int(b.ID % 8)
}
items = append(items, boardsItemView{
ID: b.ID,
Name: b.Name,
Description: b.Description,
Icon: b.Icon,
ColorIndex: color,
PostCount: b.PostCount,
})
}
ctx.HTML(http.StatusOK, "boards/list", boardsPageData{
PageChrome: chrome,
Items: items,
})
}