commit
dc70597a6c
|
@ -1195,8 +1195,8 @@ spec:
|
||||||
value:
|
value:
|
||||||
aiDescriptionEnable: false
|
aiDescriptionEnable: false
|
||||||
gptName:
|
gptName:
|
||||||
mode:
|
mode: local
|
||||||
switchBtn:
|
switchBtn: false
|
||||||
btnLink:
|
btnLink:
|
||||||
randomNum:
|
randomNum:
|
||||||
basicWordCount:
|
basicWordCount:
|
||||||
|
|
|
@ -235,7 +235,7 @@ var btf = {
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
))
|
))
|
||||||
document.querySelectorAll('#article-container .timeline')[0]?.classList.remove("loadings");
|
document.querySelectorAll('#article-container .loadings')[0]?.classList.remove("loadings");
|
||||||
},
|
},
|
||||||
|
|
||||||
diffDate: (d, more = false) => {
|
diffDate: (d, more = false) => {
|
||||||
|
|
|
@ -232,7 +232,10 @@
|
||||||
switch: [[${ theme.config.tool.snackbar.switch }]]
|
switch: [[${ theme.config.tool.snackbar.switch }]]
|
||||||
},
|
},
|
||||||
postAi:{
|
postAi:{
|
||||||
ai : '[(${post.status.excerpt})]',
|
ai : [[${htmlType != 'post' || !theme.config.post.aiDescription.aiDescriptionEnable ? '' :
|
||||||
|
theme.config.post.aiDescription.mode != 'local' && !theme.config.post.aiDescription.switchBtn ? '' :
|
||||||
|
post.spec.excerpt.autoGenerate ? '本地模式需要自己填写文章摘要' :
|
||||||
|
#strings.isEmpty(post.status.excerpt) ? '请填写文章摘要' : post.status.excerpt }]],
|
||||||
randomNum : [[${theme.config.post.aiDescription.randomNum}]],
|
randomNum : [[${theme.config.post.aiDescription.randomNum}]],
|
||||||
basicWordCount : [[${theme.config.post.aiDescription.basicWordCount}]],
|
basicWordCount : [[${theme.config.post.aiDescription.basicWordCount}]],
|
||||||
btnLink : "[(${theme.config.post.aiDescription.btnLink})]",
|
btnLink : "[(${theme.config.post.aiDescription.btnLink})]",
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
<th:block th:if="${#strings.equals(theme.config.comments.use, 'commentWidget') }">
|
<th:block th:if="${#strings.equals(theme.config.comments.use, 'commentWidget') }">
|
||||||
<div class="aside-list-item" th:each="comment,iterStat : ${commentFinder.list(null, 1, 20)}"
|
<div class="aside-list-item" th:each="comment,iterStat : ${commentFinder.list(null, 1, 20)}"
|
||||||
th:with="page = ${comment.spec.subjectRef.kind == 'Post' ? postFinder.getByName(comment.spec.subjectRef.name) :
|
th:with="page = ${comment.spec.subjectRef.kind == 'Post' ? postFinder.getByName(comment.spec.subjectRef.name) :
|
||||||
comment.spec.subjectRef.kind == 'SinglePage' ? singlePageFinder.getByName(comment.spec.subjectRef.name) : null},
|
comment.spec.subjectRef.kind == 'SinglePage' && not #strings.contains('photos,links,moments', comment.spec.subjectRef.name) ? singlePageFinder.getByName(comment.spec.subjectRef.name) : null},
|
||||||
url = ${page == null? '/' : page.status.permalink + '#comment-' + comment.metadata.name}"
|
url = ${page == null? '/' : page.status.permalink + '#comment-' + comment.metadata.name}"
|
||||||
th:if="${iterStat.index < theme.config.sidebar.newcommentnumber}">
|
th:if="${iterStat.index < theme.config.sidebar.newcommentnumber}">
|
||||||
<span th:text="${commentIndex}"></span>
|
<span th:text="${commentIndex}"></span>
|
||||||
|
|
|
@ -19,7 +19,7 @@
|
||||||
<!-- BUG:由于当前的列出所有评论API无过滤功能,非文章页的评论无法查询到页面信息,所以非文章评论跳转至首页-->
|
<!-- BUG:由于当前的列出所有评论API无过滤功能,非文章页的评论无法查询到页面信息,所以非文章评论跳转至首页-->
|
||||||
<div class="aside-list-item" th:each="comment,iterStat : ${commentFinder.list(null, 1, 20)}"
|
<div class="aside-list-item" th:each="comment,iterStat : ${commentFinder.list(null, 1, 20)}"
|
||||||
th:with="page = ${comment.spec.subjectRef.kind == 'Post' ? postFinder.getByName(comment.spec.subjectRef.name) :
|
th:with="page = ${comment.spec.subjectRef.kind == 'Post' ? postFinder.getByName(comment.spec.subjectRef.name) :
|
||||||
comment.spec.subjectRef.kind == 'SinglePage' ? singlePageFinder.getByName(comment.spec.subjectRef.name) : null},
|
comment.spec.subjectRef.kind == 'SinglePage' && not #strings.contains('photos,links,moments', comment.spec.subjectRef.name) ? singlePageFinder.getByName(comment.spec.subjectRef.name) : null},
|
||||||
url = ${page == null? '/' : page.status.permalink + '#comment-' + comment.metadata.name}"
|
url = ${page == null? '/' : page.status.permalink + '#comment-' + comment.metadata.name}"
|
||||||
th:if="${iterStat.index < 6}" >
|
th:if="${iterStat.index < 6}" >
|
||||||
<a th:href="${url}" class="thumbnail" data-pjax-state="">
|
<a th:href="${url}" class="thumbnail" data-pjax-state="">
|
||||||
|
|
|
@ -192,7 +192,7 @@
|
||||||
<!--/* 评论组件 */-->
|
<!--/* 评论组件 */-->
|
||||||
<th:block th:replace="~{modules/comment :: comment(group = 'content.halo.run',
|
<th:block th:replace="~{modules/comment :: comment(group = 'content.halo.run',
|
||||||
kind = 'SinglePage',
|
kind = 'SinglePage',
|
||||||
name = 'moments',
|
name = 'photos',
|
||||||
allowComment = true)}" />
|
allowComment = true)}" />
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue