wp-go/internal/plugins/plugins.go

39 lines
677 B
Go
Raw Normal View History

2022-09-23 13:46:34 +00:00
package plugins
import (
"github.com/gin-gonic/gin"
)
const (
Home = iota + 1
Archive
Category
Search
Detail
)
2023-01-12 12:42:16 +00:00
type Func[T any] func(*Plugin[T], *gin.Context, *T, uint)
2022-09-23 13:46:34 +00:00
type Plugin[T any] struct {
2023-01-12 12:42:16 +00:00
calls []Func[T]
2022-09-23 13:46:34 +00:00
index int
post *T
scene uint
c *gin.Context
}
2023-01-12 12:42:16 +00:00
func NewPlugin[T any](calls []Func[T], index int, post *T, scene uint, c *gin.Context) *Plugin[T] {
2022-09-23 13:46:34 +00:00
return &Plugin[T]{calls: calls, index: index, post: post, scene: scene, c: c}
}
2023-01-12 12:42:16 +00:00
func (p *Plugin[T]) Push(call ...Func[T]) {
2022-09-23 13:46:34 +00:00
p.calls = append(p.calls, call...)
}
func (p *Plugin[T]) Next() {
p.index++
for ; p.index < len(p.calls); p.index++ {
p.calls[p.index](p, p.c, p.post, p.scene)
}
}