mirror of
https://github.com/jerryc127/hexo-theme-butterfly.git
synced 2026-04-12 22:17:06 +08:00
feat: gitalk 增加 option 配置
improvement: pug代碼優化
This commit is contained in:
@@ -8,7 +8,7 @@ script.
|
||||
|
||||
function loadGitalk () {
|
||||
function initGitalk () {
|
||||
var gitalk = new Gitalk({
|
||||
var gitalk = new Gitalk(Object.assign({
|
||||
clientID: '!{theme.gitalk.client_id}',
|
||||
clientSecret: '!{theme.gitalk.client_secret}',
|
||||
repo: '!{theme.gitalk.repo}',
|
||||
@@ -21,7 +21,8 @@ script.
|
||||
pagerDirection: '!{theme.gitalk.pagerDirection}',
|
||||
createIssueManually: !{theme.gitalk.createIssueManually},
|
||||
updateCountCallback: commentCount
|
||||
})
|
||||
},!{JSON.stringify(theme.gitalk.option)}))
|
||||
|
||||
gitalk.render('gitalk-container')
|
||||
}
|
||||
|
||||
|
||||
13
layout/includes/third-party/comments/twikoo.pug
vendored
13
layout/includes/third-party/comments/twikoo.pug
vendored
@@ -1,21 +1,12 @@
|
||||
- let option = theme.twikoo.option ? JSON.stringify(theme.twikoo.option) : false
|
||||
|
||||
script.
|
||||
(()=>{
|
||||
const $countDom = document.getElementById('twikoo-count')
|
||||
const init = () => {
|
||||
let initData = {
|
||||
twikoo.init(Object.assign({
|
||||
el: '#twikoo-wrap',
|
||||
envId: '!{theme.twikoo.envId}',
|
||||
region: '!{theme.twikoo.region}'
|
||||
}
|
||||
|
||||
if (!{Boolean(option)}) {
|
||||
const otherData = !{option}
|
||||
initData = Object.assign(initData, otherData)
|
||||
}
|
||||
|
||||
twikoo.init(initData)
|
||||
}, !{JSON.stringify(theme.twikoo.option)}))
|
||||
}
|
||||
|
||||
const getCount = () => {
|
||||
|
||||
17
layout/includes/third-party/comments/valine.pug
vendored
17
layout/includes/third-party/comments/valine.pug
vendored
@@ -1,4 +1,3 @@
|
||||
- let option = theme.valine.option ? JSON.stringify(theme.valine.option) : false
|
||||
- let emojiMaps = '""'
|
||||
if site.data.valine
|
||||
- emojiMaps = JSON.stringify(site.data.valine)
|
||||
@@ -6,7 +5,7 @@ if site.data.valine
|
||||
script.
|
||||
function loadValine () {
|
||||
function initValine () {
|
||||
let initData = {
|
||||
const valine = new Valine(Object.assign({
|
||||
el: '#vcomment',
|
||||
appId: '#{theme.valine.appId}',
|
||||
appKey: '#{theme.valine.appKey}',
|
||||
@@ -21,19 +20,9 @@ script.
|
||||
emojiMaps: !{emojiMaps},
|
||||
enableQQ: #{theme.valine.enableQQ},
|
||||
path: window.location.pathname,
|
||||
requiredFields: [!{theme.valine.requiredFields ? JSON.stringify(theme.valine.requiredFields).split(',') : ''}],
|
||||
visitor: #{theme.valine.visitor}
|
||||
}
|
||||
|
||||
if (!{Boolean(theme.valine.requiredFields)}) {
|
||||
initData.requiredFields= ('!{theme.valine.requiredFields}'.split(','))
|
||||
}
|
||||
|
||||
if (!{Boolean(option)}) {
|
||||
const otherData = !{option}
|
||||
initData = Object.assign(initData, otherData)
|
||||
}
|
||||
|
||||
const valine = new Valine(initData)
|
||||
}, !{JSON.stringify(theme.valine.option)}))
|
||||
}
|
||||
|
||||
if (typeof Valine === 'function') initValine()
|
||||
|
||||
12
layout/includes/third-party/comments/waline.pug
vendored
12
layout/includes/third-party/comments/waline.pug
vendored
@@ -1,4 +1,3 @@
|
||||
- let option = theme.waline.option ? JSON.stringify(theme.waline.option) : false
|
||||
- let emojiMaps = '""'
|
||||
if site.data.waline
|
||||
- emojiMaps = JSON.stringify(site.data.waline)
|
||||
@@ -6,7 +5,7 @@ if site.data.waline
|
||||
script.
|
||||
function loadWaline () {
|
||||
function initWaline () {
|
||||
let initData = {
|
||||
const waline = new Waline(Object.assign({
|
||||
el: '#waline-wrap',
|
||||
serverURL: '!{theme.waline.serverURL}',
|
||||
avatar: '#{theme.waline.avatar}',
|
||||
@@ -14,14 +13,7 @@ script.
|
||||
emojiCDN: '#{theme.waline.emojiCDN}',
|
||||
emojiMaps: !{emojiMaps},
|
||||
visitor: #{theme.waline.visitor}
|
||||
}
|
||||
|
||||
if (!{Boolean(option)}) {
|
||||
const otherData = !{option}
|
||||
initData = Object.assign(initData, otherData)
|
||||
}
|
||||
|
||||
const waline = new Waline(initData)
|
||||
}, !{JSON.stringify(theme.waline.option)}))
|
||||
}
|
||||
|
||||
if (typeof Waline === 'function') initWaline()
|
||||
|
||||
Reference in New Issue
Block a user