mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-14 07:26:52 +00:00
feature:
不蒜子调整
This commit is contained in:
92
lib/busuanzi.js
Normal file
92
lib/busuanzi.js
Normal file
@@ -0,0 +1,92 @@
|
||||
/* eslint-disable */
|
||||
let bszCaller, bszTag, scriptTag, ready
|
||||
|
||||
let t; let e; let n; let a = !1
|
||||
let c = []
|
||||
|
||||
// 修复Node同构代码的问题
|
||||
if (typeof document !== 'undefined') {
|
||||
ready = function (t) {
|
||||
return a || document.readyState === 'interactive' || document.readyState === 'complete'
|
||||
? t.call(document)
|
||||
: c.push(function () {
|
||||
return t.call(this)
|
||||
}), this
|
||||
}, e = function () {
|
||||
for (let t = 0, e = c.length; t < e; t++) c[t].apply(document)
|
||||
c = []
|
||||
}, n = function () {
|
||||
a || (a = !0, e.call(window),
|
||||
document.removeEventListener ? document.removeEventListener('DOMContentLoaded', n, !1) : document.attachEvent && (document.detachEvent('onreadystatechange', n), window == window.top && (clearInterval(t), t = null)))
|
||||
}, document.addEventListener
|
||||
? document.addEventListener('DOMContentLoaded', n, !1)
|
||||
: document.attachEvent && (document.attachEvent('onreadystatechange', function () {
|
||||
/loaded|complete/.test(document.readyState) && n()
|
||||
}), window == window.top && (t = setInterval(function () {
|
||||
try {
|
||||
a || document.documentElement.doScroll('left')
|
||||
} catch (t) {
|
||||
return
|
||||
}
|
||||
n()
|
||||
}, 5)))
|
||||
}
|
||||
|
||||
bszCaller = {
|
||||
fetch: function (t, e) {
|
||||
const n = 'BusuanziCallback_' + Math.floor(1099511627776 * Math.random())
|
||||
t = t.replace('=BusuanziCallback', '=' + n)
|
||||
scriptTag = document.createElement('SCRIPT'), scriptTag.type = 'text/javascript', scriptTag.defer = !0, scriptTag.src = t, scriptTag.referrerPolicy = "no-referrer-when-downgrade", document.getElementsByTagName('HEAD')[0].appendChild(scriptTag)
|
||||
window[n] = this.evalCall(e)
|
||||
},
|
||||
evalCall: function (e) {
|
||||
return function (t) {
|
||||
ready(function () {
|
||||
try {
|
||||
e(t), scriptTag && scriptTag.parentElement && scriptTag.parentElement.removeChild && scriptTag.parentElement.removeChild(scriptTag)
|
||||
} catch (t) {
|
||||
console.log(t), bszTag.hides()
|
||||
}
|
||||
})
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
const fetch = () => {
|
||||
bszTag && bszTag.hides()
|
||||
bszCaller.fetch('//busuanzi.ibruce.info/busuanzi?jsonpCallback=BusuanziCallback', function (t) {
|
||||
// console.log('不蒜子请求结果',t)
|
||||
bszTag.texts(t), bszTag.shows()
|
||||
})
|
||||
}
|
||||
|
||||
bszTag = {
|
||||
bszs: ['site_pv', 'page_pv', 'site_uv'],
|
||||
texts: function (n) {
|
||||
this.bszs.map(function (t) {
|
||||
const e = document.getElementById('busuanzi_value_' + t)
|
||||
e && (e.innerHTML = n[t])
|
||||
})
|
||||
},
|
||||
hides: function () {
|
||||
this.bszs.map(function (t) {
|
||||
const e = document.getElementById('busuanzi_container_' + t)
|
||||
e && (e.style.display = 'none')
|
||||
})
|
||||
},
|
||||
shows: function () {
|
||||
this.bszs.map(function (t) {
|
||||
const e = document.getElementById('busuanzi_container_' + t)
|
||||
e && (e.style.display = 'inline')
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
// 修复Node同构代码的问题
|
||||
if (typeof document !== 'undefined') {
|
||||
fetch()
|
||||
}
|
||||
|
||||
module.exports = {
|
||||
fetch
|
||||
}
|
||||
@@ -2,7 +2,6 @@ import lang from './lang'
|
||||
import { useContext, createContext, useState, useEffect } from 'react'
|
||||
import cookie from 'react-cookies'
|
||||
import Router from 'next/router'
|
||||
|
||||
const GlobalContext = createContext()
|
||||
|
||||
/**
|
||||
@@ -104,28 +103,6 @@ const initTheme = (theme, changeTheme) => {
|
||||
}
|
||||
}
|
||||
|
||||
export function handleRouteChange (url) {
|
||||
initGoogleAdsense()
|
||||
}
|
||||
|
||||
/**
|
||||
* 初始化谷歌广告
|
||||
*/
|
||||
function initGoogleAdsense () {
|
||||
const ads = document.getElementsByClassName('adsbygoogle').length
|
||||
const newAdsCount = ads
|
||||
if (newAdsCount > 0) {
|
||||
for (let i = 0; i <= newAdsCount; i++) {
|
||||
try {
|
||||
// eslint-disable-next-line no-undef
|
||||
(adsbygoogle = window.adsbygoogle || []).push({})
|
||||
} catch (e) {
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 读取默认主题
|
||||
* @returns {*}
|
||||
|
||||
Reference in New Issue
Block a user