wp-go/internal/theme/twentyseventeen/twentyseventeen.go

212 lines
7.1 KiB
Go
Raw Normal View History

2023-01-17 15:18:31 +00:00
package twentyseventeen
import (
2023-03-01 14:52:05 +00:00
"embed"
"encoding/json"
2023-01-25 18:26:36 +00:00
"fmt"
"github.com/fthvgb1/wp-go/helper"
2023-02-24 16:56:52 +00:00
str "github.com/fthvgb1/wp-go/helper/strings"
"github.com/fthvgb1/wp-go/internal/cmd/reload"
2023-03-02 15:49:28 +00:00
"github.com/fthvgb1/wp-go/internal/pkg/config"
2023-02-10 13:23:30 +00:00
"github.com/fthvgb1/wp-go/internal/pkg/constraints"
"github.com/fthvgb1/wp-go/internal/pkg/constraints/widgets"
2023-03-02 12:36:58 +00:00
"github.com/fthvgb1/wp-go/internal/pkg/logs"
"github.com/fthvgb1/wp-go/internal/pkg/models"
"github.com/fthvgb1/wp-go/internal/plugins"
2023-03-02 15:49:28 +00:00
"github.com/fthvgb1/wp-go/internal/plugins/wphandle"
2023-03-01 05:17:12 +00:00
"github.com/fthvgb1/wp-go/internal/theme/wp"
2023-03-12 12:41:10 +00:00
"github.com/fthvgb1/wp-go/internal/theme/wp/components"
2023-03-14 11:21:00 +00:00
"github.com/fthvgb1/wp-go/internal/theme/wp/components/widget"
2023-02-14 11:47:47 +00:00
"github.com/fthvgb1/wp-go/internal/wpconfig"
2023-01-17 15:18:31 +00:00
"github.com/gin-gonic/gin"
"strings"
2023-01-17 15:18:31 +00:00
)
const ThemeName = "twentyseventeen"
2023-03-01 14:52:05 +00:00
func Init(fs embed.FS) {
b, err := fs.ReadFile(str.Join(ThemeName, "/themesupport.json"))
if err != nil {
return
}
err = json.Unmarshal(b, &themesupport)
}
2023-01-18 15:11:26 +00:00
var paginate = func() plugins.PageEle {
p := plugins.TwentyFifteenPagination()
p.PrevEle = `<a class="prev page-numbers" href="%s"><svg class="icon icon-arrow-left" aria-hidden="true" role="img"> <use href="#icon-arrow-left" xlink:href="#icon-arrow-left"></use> </svg>
<span class="screen-reader-text">上一页</span></a>`
p.NextEle = strings.Replace(p.NextEle, "下一页", `<span class="screen-reader-text">下一页</span>
<svg class="icon icon-arrow-right" aria-hidden="true" role="img"> <use href="#icon-arrow-right" xlink:href="#icon-arrow-right"></use>
</svg>`, 1)
return p
}()
var pipe = wp.HandlePipe(wp.ExecuteHandleFn, widget.MiddleWare(ready, data)...)
2023-02-23 12:22:42 +00:00
2023-03-01 05:17:12 +00:00
func Hook(h *wp.Handle) {
2023-02-24 11:34:19 +00:00
pipe(h)
}
2023-04-07 14:59:07 +00:00
func configs(h *wp.Handle) {
conf := config.GetConfig()
wphandle.RegisterPlugins(h, conf.Plugins...)
2023-03-02 13:16:43 +00:00
h.PushHandleFn(constraints.AllStats, wp.NewHandleFn(calClass, 20))
2023-03-04 06:44:51 +00:00
h.PushCacheGroupHeadScript("colorScheme-customHeader", 10, colorScheme, customHeader)
components.WidgetArea(h)
2023-03-04 06:44:51 +00:00
pushScripts(h)
h.PushHandleFn(constraints.AllStats, wp.NewHandleFn(func(h *wp.Handle) {
h.SetData("HeaderImage", getHeaderImage(h))
}, 10))
2023-03-17 10:26:08 +00:00
h.SetComponentsArgs(widgets.Widget, map[string]string{
2023-03-27 14:03:01 +00:00
"{$before_widget}": `<section id="%s" class="%s">`,
2023-03-17 10:26:08 +00:00
"{$after_widget}": `</section>`,
})
h.PushGroupHandleFn(constraints.AllStats, 90, wp.PreTemplate, errorsHandle)
h.CommonComponents()
h.Index.SetPageEle(paginate)
h.Index.SetListPlugin(wp.PostsPlugins(wp.PostPlugin(postThumbnail), wp.GetListPostPlugins(conf.ListPagePlugins, wp.ListPostPlugins())...))
wp.SetComponentsArgsForMap(h, widgets.Search, "{$form}", searchForm)
h.PushHandleFn(constraints.AllStats, wp.NewHandleFn(wp.IndexRender, 10))
h.PushHandleFn(constraints.Detail, wp.NewHandleFn(wp.DetailRender, 10))
}
func ready(next wp.HandleFn[*wp.Handle], h *wp.Handle) {
wp.InitThemeArgAndConfig(configs, h)
h.GetPassword()
2023-02-28 11:44:19 +00:00
next(h)
}
var searchForm = `<form role="search" method="get" class="search-form" action="/">
<label for="search-form-1">
<span class="screen-reader-text">{$label}</span>
</label>
<input type="search" id="search-form-1" class="search-field" placeholder="{$placeholder}…" value="{$value}" name="s">
<button type="submit" class="search-submit">
<svg class="icon icon-search" aria-hidden="true" role="img"> <use href="#icon-search" xlink:href="#icon-search"></use> </svg>
<span class="screen-reader-text">{$button}</span>
</button>
</form>`
2023-03-02 12:36:58 +00:00
func errorsHandle(h *wp.Handle) {
switch h.Stats {
2023-03-17 10:26:08 +00:00
case constraints.Error404, constraints.InternalErr, constraints.ParamError:
2023-04-07 14:59:07 +00:00
logs.IfError(h.Err(), "报错:")
2023-03-17 10:26:08 +00:00
h.SetTempl("twentyseventeen/posts/error.gohtml")
2023-03-02 12:36:58 +00:00
}
}
func data(next wp.HandleFn[*wp.Handle], h *wp.Handle) {
if h.Scene() == constraints.Detail {
detail(h)
} else {
index(h)
}
wp.PreCodeAndStats(h)
h.DetermineHandleFns()
next(h)
}
2023-03-17 10:26:08 +00:00
func index(h *wp.Handle) {
if h.Scene() == constraints.Detail {
return
}
i := h.Index
2023-03-01 05:17:12 +00:00
err := i.BuildIndexData(wp.NewIndexParams(i.C))
if err != nil {
2023-03-02 12:36:58 +00:00
i.SetErr(err)
}
2023-03-17 10:26:08 +00:00
h.SetData("scene", h.Scene())
}
2023-03-17 10:26:08 +00:00
func detail(h *wp.Handle) {
d := h.Detail
err := d.BuildDetailData()
if err != nil {
2023-03-02 12:36:58 +00:00
d.SetErr(err)
2023-02-09 12:49:33 +00:00
}
2023-02-24 11:34:19 +00:00
if d.Post.Thumbnail.Path != "" {
img := wpconfig.Thumbnail(d.Post.Thumbnail.OriginAttachmentData, "full", "", "thumbnail", "post-thumbnail")
img.Sizes = "100vw"
img.Srcset = fmt.Sprintf("%s %dw, %s", img.Path, img.Width, img.Srcset)
d.Post.Thumbnail = img
}
d.CommentRender = commentFormat
2023-01-17 15:18:31 +00:00
}
2023-02-09 12:49:33 +00:00
var commentFormat = comment{}
type comment struct {
plugins.CommonCommentFormat
}
2023-01-30 12:48:30 +00:00
func (c comment) FormatLi(ctx *gin.Context, m models.Comments, depth int, isTls bool, eo, parent string) string {
templ := plugins.CommonLi()
templ = strings.ReplaceAll(templ, `<a rel="nofollow" class="comment-reply-link"
href="/p/{{PostId}}?replytocom={{CommentId}}#respond" data-commentid="{{CommentId}}" data-postid="{{PostId}}"
data-belowelement="div-comment-{{CommentId}}" data-respondelement="respond"
data-replyto="回复给{{CommentAuthor}}"
aria-label="回复给{{CommentAuthor}}">回复</a>`, `<a rel="nofollow" class="comment-reply-link"
href="/p/{{PostId}}?replytocom={{CommentId}}#respond" data-commentid="{{CommentId}}" data-postid="{{PostId}}"
data-belowelement="div-comment-{{CommentId}}" data-respondelement="respond"
data-replyto="回复给{{CommentAuthor}}"
aria-label="回复给{{CommentAuthor}}"><svg class="icon icon-mail-reply" aria-hidden="true" role="img"> <use href="#icon-mail-reply" xlink:href="#icon-mail-reply"></use> </svg>回复</a>`)
2023-01-30 12:48:30 +00:00
return plugins.FormatLi(templ, ctx, m, depth, isTls, eo, parent)
}
func postThumbnail(h *wp.Handle, posts *models.Posts) {
if posts.Thumbnail.Path != "" {
posts.Thumbnail.Sizes = "(max-width: 767px) 89vw, (max-width: 1000px) 54vw, (max-width: 1071px) 543px, 580px"
2023-02-28 15:38:23 +00:00
if h.Scene() == constraints.Detail {
posts.Thumbnail.Sizes = "100vw"
2023-01-25 18:26:36 +00:00
}
2023-02-09 08:08:18 +00:00
}
2023-01-25 18:26:36 +00:00
}
var header = reload.Vars(models.PostThumbnail{})
2023-03-01 05:17:12 +00:00
func getHeaderImage(h *wp.Handle) (r models.PostThumbnail) {
img := header.Load()
2023-02-24 16:56:52 +00:00
if img.Path != "" {
2023-03-01 15:34:05 +00:00
return img
2023-02-24 16:56:52 +00:00
}
image, rand := h.GetCustomHeader()
if image.Path != "" {
r = image
r.Sizes = "100vw"
if !rand {
header.Store(r)
}
2023-02-24 16:56:52 +00:00
return
2023-01-17 15:18:31 +00:00
}
2023-02-28 15:38:23 +00:00
r.Path = helper.CutUrlHost(h.CommonThemeMods().ThemeSupport.CustomHeader.DefaultImage)
2023-02-24 16:56:52 +00:00
r.Width = 2000
r.Height = 1200
header.Store(r)
2023-01-17 15:18:31 +00:00
return
}
2023-01-25 18:26:36 +00:00
2023-03-01 05:17:12 +00:00
func calClass(h *wp.Handle) {
2023-02-28 15:38:23 +00:00
themeMods := h.CommonThemeMods()
u := wpconfig.GetThemeModsVal(ThemeName, "header_image", themeMods.ThemeSupport.CustomHeader.DefaultImage)
var class []string
2023-02-23 10:21:51 +00:00
if u != "" && u != "remove-header" {
2023-02-28 15:38:23 +00:00
class = append(class, "has-header-image")
2023-02-09 12:49:33 +00:00
}
2023-02-28 15:38:23 +00:00
if len(themeMods.SidebarsWidgets.Data.Sidebar1) > 0 {
class = append(class, "has-sidebar")
2023-02-24 16:56:52 +00:00
}
2023-02-28 15:38:23 +00:00
if themeMods.HeaderTextcolor == "blank" {
class = append(class, "title-tagline-hidden")
2023-02-24 16:56:52 +00:00
}
2023-02-28 15:38:23 +00:00
class = append(class, "hfeed")
class = append(class, str.Join("colors-", wpconfig.GetThemeModsVal(ThemeName, "colorscheme", "light")))
if h.Scene() == constraints.Archive {
if "one-column" == wpconfig.GetThemeModsVal(ThemeName, "page_layout", "") {
class = append(class, "page-one-column")
2023-02-23 10:21:51 +00:00
} else {
2023-02-28 15:38:23 +00:00
class = append(class, "page-two-column")
}
2023-01-25 18:26:36 +00:00
}
2023-02-28 15:38:23 +00:00
h.PushClass(class...)
2023-01-25 18:26:36 +00:00
}