Files
hexo-theme-butterfly/layout/includes/third-party/comments/twikoo.pug
Jerry 3a1ed95c32 feat: 右下角增加字體調整按鈕
fix: 修復沒有滾動條時,右下角按鈕顯示問題  close #439
remove: 刪除ICP配置, 如需要,請使用custom_text配置 close #435
2020-12-09 15:58:58 +08:00

43 lines
1.1 KiB
Plaintext

script.
(()=>{
const $countDom = document.getElementById('twikoo-count')
const init = () => {
twikoo.init({
envId: '!{theme.twikoo}',
el: '#twikoo-wrap'
})
}
const getCount = () => {
twikoo.getCommentsCount({
envId: '!{theme.twikoo}',
urls: [window.location.pathname],
includeReply: false
}).then(function (res) {
$countDom.innerText = res[0].count
}).catch(function (err) {
console.error(err);
});
}
const loadTwikoo = (bool = false) => {
if (typeof twikoo === 'object') {
init()
bool && $countDom && setTimeout(()=>{getCount()},0)
} else {
getScript('!{theme.CDN.twikoo}').then(()=> {
init()
bool && $countDom && setTimeout(()=>{getCount()},0)
})
}
}
if ('!{theme.comments.use[0]}' === 'Twikoo' || !!{theme.comments.lazyload}) {
if (!{theme.comments.lazyload}) btf.loadComment(document.getElementById('twikoo-wrap'), loadTwikoo)
else loadTwikoo(true)
} else {
window.loadOtherComment = () => {
loadTwikoo()
}
}
})()