feat(site-category): support for custom sorting #902

This commit is contained in:
Jacky 2025-03-15 10:55:01 +08:00
parent efc9b1c365
commit f3d4cdbeb4
No known key found for this signature in database
GPG key ID: 215C21B10DF38B4D
5 changed files with 12 additions and 3 deletions

View file

@ -4,6 +4,7 @@ import (
"github.com/0xJacky/Nginx-UI/model"
"github.com/gin-gonic/gin"
"github.com/uozi-tech/cosy"
"gorm.io/gorm"
)
func GetCategory(c *gin.Context) {
@ -11,7 +12,9 @@ func GetCategory(c *gin.Context) {
}
func GetCategoryList(c *gin.Context) {
cosy.Core[model.SiteCategory](c).PagingList()
cosy.Core[model.SiteCategory](c).GormScope(func(tx *gorm.DB) *gorm.DB {
return tx.Order("order_id ASC")
}).PagingList()
}
func AddCategory(c *gin.Context) {
@ -39,3 +42,7 @@ func DeleteCategory(c *gin.Context) {
func RecoverCategory(c *gin.Context) {
cosy.Core[model.SiteCategory](c).Recover()
}
func UpdateCategoriesOrder(c *gin.Context) {
cosy.Core[model.SiteCategory](c).UpdateOrder()
}

View file

@ -31,4 +31,5 @@ func InitCategoryRouter(r *gin.RouterGroup) {
r.POST("site_categories/:id", ModifyCategory)
r.DELETE("site_categories/:id", DeleteCategory)
r.POST("site_categories/:id/recover", RecoverCategory)
r.POST("site_categories/order", UpdateCategoriesOrder)
}