fix theme...

This commit is contained in:
2024-08-01 08:43:15 +08:00
parent 192ef21b12
commit 02130fba76
371 changed files with 28176 additions and 3285 deletions

140
themes/anzhiyu/sw-rules.js Normal file
View File

@@ -0,0 +1,140 @@
/**
* @see https://kmar.top/posts/b70ec88f/
*/
module.exports.config = {
/**
* 与 ServiceWorker 有关的配置项
* 若想禁止插件自动生成 sw此项填 false 即可
* @type ?Object|boolean
*/
serviceWorker: {
escape: 0,
cacheName: "AnZhiYuThemeCache",
debug: false,
},
register: {
onsuccess: undefined,
onerror: undefined,
builder: (root, hexoConfig, pluginConfig) => {
const { onerror, onsuccess } = pluginConfig.register;
return `<script>
(() => {
const sw = navigator.serviceWorker
const error = ${onerror && onerror.toString()}
if (!sw?.register('${new URL(root).pathname}sw.js')
${onsuccess ? "?.then(" + onsuccess + ")" : ""}
?.catch(error)
) error()
})()
</script>`;
},
},
dom: {
onsuccess: () => {
caches.match('https://id.v3/').then(function(response) {
if (response) {
// 如果找到了匹配的缓存响应
response.json().then(function(data) {
anzhiyuPopupManager && anzhiyuPopupManager.enqueuePopup('通知📢', `已刷新缓存,更新为${data.global + "." + data.local}版本最新内容`, null, 5000);
});
} else {
console.info('未找到匹配的缓存响应');
}
}).catch(function(error) {
console.error('缓存匹配出错:', error);
});
},
},
json: {
maxHtml: 15,
charLimit: 1024,
merge: ['page', 'archives', 'categories', 'tags'],
exclude: {
localhost: [],
other: [],
},
},
external: {
timeout: 5000,
js: [],
stable: [
/^https:\/\/npm\.elemecdn\.com\/[^/@]+\@[^/@]+\/[^/]+\/[^/]+$/,
/^https:\/\/cdn\.cbd\.int\/[^/@]+\@[^/@]+\/[^/]+\/[^/]+$/,
/^https:\/\/cdn\.jsdelivr\.net\/npm\/[^/@]+\@[^/@]+\/[^/]+\/[^/]+$/,
],
replacer: srcUrl => {
if (srcUrl.startsWith('https://npm.elemecdn.com')) {
const url = new URL(srcUrl)
return [
srcUrl,
`https://cdn.cbd.int` + url.pathname,
`https://cdn.jsdelivr.net/npm` + url.pathname,
`https://cdn1.tianli0.top/npm` + url.pathname,
`https://fastly.jsdelivr.net/npm` + url.pathname
]
} else {
return srcUrl
}
},
}
};
/**
* 缓存列表
* @param clean 清理全站时是否删除其缓存
* @param match {function(URL)} 匹配规则
*/
module.exports.cacheRules = {
simple: {
clean: true,
search: false,
match: (url, $eject) => {
const allowedHost = $eject.domain;
const allowedPaths = ["/404.html", "/css/index.css"];
return url.host === allowedHost && allowedPaths.includes(url.pathname);
},
},
cdn: {
clean: true,
match: url =>
[
"cdn.cbd.int",
"lf26-cdn-tos.bytecdntp.com",
"lf6-cdn-tos.bytecdntp.com",
"lf3-cdn-tos.bytecdntp.com",
"lf9-cdn-tos.bytecdntp.com",
"cdn.staticfile.org",
"npm.elemecdn.com",
].includes(url.host) && url.pathname.match(/\.(js|css|woff2|woff|ttf|cur)$/),
},
};
/**
* 获取一个 URL 对应的备用 URL 列表,访问顺序按列表顺序,所有 URL 访问时参数一致
* @param srcUrl {string} 原始 URL
* @return {{list: string[], timeout: number}} 返回 null 或不返回表示对该 URL 不启用该功能。timeout 为超时时间mslist 为 URL 列表,列表不包含原始 URL 表示去除原始访问
*/
module.exports.getSpareUrls = srcUrl => {
if (srcUrl.startsWith("https://npm.elemecdn.com")) {
return {
timeout: 3000,
list: [srcUrl, `https://cdn.cbd.int/${new URL(srcUrl).pathname}`],
};
}
};
/**
* 获取要插入到 sw 中的变量或常量
* @param hexo hexo 对象
* @param rules 合并后的 sw-rules 对象
* @return {Object} 要插入的键值对
*/
module.exports.ejectValues = (hexo, rules) => {
return {
domain: {
prefix: "const",
value: new URL(hexo.config.url).host,
},
};
};