2020-11-24 10:55:24 +08:00
|
|
|
/* global hexo */
|
|
|
|
|
|
|
|
'use strict'
|
|
|
|
|
|
|
|
const url = require('url');
|
|
|
|
|
2020-03-25 12:27:44 +08:00
|
|
|
hexo.extend.helper.register('isInHomePaging', function (pagePath, route) {
|
2020-10-27 18:11:10 +08:00
|
|
|
if (pagePath.length > 5 && route === '/') {
|
|
|
|
return pagePath.slice(0, 5) === 'page/';
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
2020-03-27 20:45:27 +08:00
|
|
|
});
|
|
|
|
|
|
|
|
hexo.extend.helper.register('createNewArchivePosts', function (posts) {
|
2020-10-27 18:11:10 +08:00
|
|
|
const postList = [], postYearList = [];
|
|
|
|
posts.forEach(post => postYearList.push(post.date.year()));
|
|
|
|
Array.from(new Set(postYearList)).forEach(year => {
|
|
|
|
postList.push({
|
|
|
|
year: year,
|
|
|
|
postList: []
|
|
|
|
})
|
|
|
|
});
|
|
|
|
postList.sort((a, b) => b.year - a.year)
|
|
|
|
postList.forEach(item => {
|
|
|
|
posts.forEach(post => item.year === post.date.year() && item.postList.push(post))
|
|
|
|
});
|
|
|
|
postList.forEach(item => item.postList.sort((a, b) => b.date.unix() - a.date.unix()));
|
|
|
|
return postList;
|
|
|
|
});
|
|
|
|
|
2021-01-28 16:23:47 +08:00
|
|
|
hexo.extend.helper.register('getAuthorLabel', function (postCount, isAuto, labelList) {
|
|
|
|
|
|
|
|
let level = Math.floor(Math.log2(postCount));
|
|
|
|
level = level < 2 ? 1 : level - 1;
|
|
|
|
|
|
|
|
if (isAuto === false && Array.isArray(labelList) && labelList.length > 0) {
|
|
|
|
return level > labelList.length ? labelList[labelList.length - 1] : labelList[level - 1];
|
|
|
|
} else {
|
|
|
|
return `Lv${level}`;
|
|
|
|
}
|
|
|
|
|
2020-09-02 13:11:09 +08:00
|
|
|
});
|
2020-11-18 18:45:45 +08:00
|
|
|
|
|
|
|
hexo.extend.helper.register('getPostUrl', function (rootUrl, path) {
|
|
|
|
if (rootUrl) {
|
|
|
|
return url.parse(rootUrl).href + path;
|
|
|
|
} else {
|
|
|
|
return path;
|
|
|
|
}
|
|
|
|
});
|
2020-11-24 10:55:24 +08:00
|
|
|
|
|
|
|
hexo.extend.helper.register('__js', function (path) {
|
|
|
|
|
|
|
|
const cdnPathHandle = (path_2) => {
|
|
|
|
return this.theme.cdn.enable
|
2021-01-22 18:36:05 +08:00
|
|
|
? `<script src="//cdn.jsdelivr.net/npm/hexo-theme-keep@${this.theme.version}/source/${path_2}"></script>`
|
|
|
|
: `<script src="/${path_2}"></script>`;
|
2020-11-24 10:55:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
let t = ``;
|
|
|
|
|
|
|
|
if (Array.isArray(path)) {
|
|
|
|
for (const p of path) {
|
|
|
|
t += cdnPathHandle(p);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
t = cdnPathHandle(path);
|
|
|
|
}
|
|
|
|
|
|
|
|
return t;
|
|
|
|
});
|
|
|
|
|
2020-11-24 11:10:03 +08:00
|
|
|
hexo.extend.helper.register('__css', function (path) {
|
2020-11-24 10:55:24 +08:00
|
|
|
if (this.theme.cdn.enable) {
|
2020-11-24 11:10:03 +08:00
|
|
|
return `<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/hexo-theme-keep@${this.theme.version}/source/${path}">`;
|
2020-11-24 10:55:24 +08:00
|
|
|
} else {
|
2021-01-22 18:36:05 +08:00
|
|
|
return `<link rel="stylesheet" href="/${path}">`
|
2020-11-24 10:55:24 +08:00
|
|
|
}
|
|
|
|
});
|