Compare commits
3 Commits
871649a7e9
...
a6ee333232
Author | SHA1 | Date | |
---|---|---|---|
a6ee333232 | |||
1353541c94 | |||
8f995d23dc |
|
@ -13,6 +13,9 @@
|
||||||
{{if .footerScript}}
|
{{if .footerScript}}
|
||||||
{{.footerScript|unescaped}}
|
{{.footerScript|unescaped}}
|
||||||
{{end}}
|
{{end}}
|
||||||
|
{{if .externFooter}}
|
||||||
|
{{.externFooter|unescaped}}
|
||||||
|
{{end}}
|
||||||
{{end}}
|
{{end}}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -2,6 +2,7 @@ package wp
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/fthvgb1/wp-go/app/cmd/reload"
|
"github.com/fthvgb1/wp-go/app/cmd/reload"
|
||||||
|
"github.com/fthvgb1/wp-go/app/pkg/config"
|
||||||
"github.com/fthvgb1/wp-go/app/pkg/constraints"
|
"github.com/fthvgb1/wp-go/app/pkg/constraints"
|
||||||
"github.com/fthvgb1/wp-go/app/pkg/logs"
|
"github.com/fthvgb1/wp-go/app/pkg/logs"
|
||||||
"github.com/fthvgb1/wp-go/app/plugins/wphandle/apply"
|
"github.com/fthvgb1/wp-go/app/plugins/wphandle/apply"
|
||||||
|
@ -12,6 +13,7 @@ import (
|
||||||
"github.com/gin-gonic/gin"
|
"github.com/gin-gonic/gin"
|
||||||
"html/template"
|
"html/template"
|
||||||
"net/http"
|
"net/http"
|
||||||
|
"os"
|
||||||
)
|
)
|
||||||
|
|
||||||
type Handle struct {
|
type Handle struct {
|
||||||
|
@ -239,6 +241,32 @@ func (h *Handle) CommonComponents() {
|
||||||
h.PushCacheGroupHeadScript(constraints.AllScene, "siteIconAndCustomCss", 0, CalSiteIcon, CalCustomCss)
|
h.PushCacheGroupHeadScript(constraints.AllScene, "siteIconAndCustomCss", 0, CalSiteIcon, CalCustomCss)
|
||||||
h.PushRender(constraints.AllStats, NewHandleFn(CalComponents, 10, "wp.CalComponents"))
|
h.PushRender(constraints.AllStats, NewHandleFn(CalComponents, 10, "wp.CalComponents"))
|
||||||
h.PushRender(constraints.AllStats, NewHandleFn(PreRenderTemplate, 0, "wp.PreRenderTemplate"))
|
h.PushRender(constraints.AllStats, NewHandleFn(PreRenderTemplate, 0, "wp.PreRenderTemplate"))
|
||||||
|
AdditionScript(h)
|
||||||
|
}
|
||||||
|
|
||||||
|
func AdditionScript(h *Handle) {
|
||||||
|
s := config.GetConfig().ExternScript
|
||||||
|
if len(s) < 1 {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
fn := func(f, name string) {
|
||||||
|
if f == "" {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
ss, err := os.ReadFile(f)
|
||||||
|
if err != nil {
|
||||||
|
logs.Error(err, str.Join("解析", name, "失败"), f)
|
||||||
|
} else {
|
||||||
|
h.PushComponents(constraints.AllScene, constraints.HeadScript, NewComponent(name, string(ss), false, 0, nil))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
switch len(s) {
|
||||||
|
case 1:
|
||||||
|
fn(s[0], "externHead")
|
||||||
|
case 2:
|
||||||
|
fn(s[0], "externHead")
|
||||||
|
fn(s[1], "externFooter")
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func PreRenderTemplate(h *Handle) {
|
func PreRenderTemplate(h *Handle) {
|
||||||
|
|
|
@ -97,4 +97,6 @@ plugins: ["enlightjs"]
|
||||||
# 插件存放路径
|
# 插件存放路径
|
||||||
pluginPath: "./plugins"
|
pluginPath: "./plugins"
|
||||||
# 列表页面post使用的插件
|
# 列表页面post使用的插件
|
||||||
listPagePlugins: ["digest"]
|
listPagePlugins: ["digest"]
|
||||||
|
# 额外引入的脚本 第一个为head 第二个为footer
|
||||||
|
externScript: ["",""]
|
Loading…
Reference in New Issue
Block a user