hexo-theme-stellar/scripts/helpers/related_posts.js

85 lines
2.2 KiB
JavaScript
Raw Normal View History

2021-02-19 23:33:19 +08:00
/**
* https://github.com/tea3/hexo-related-popular-posts/wiki/More-Settings#customize-html
*/
'use strict';
2021-02-21 03:13:21 +08:00
2021-02-19 23:33:19 +08:00
var util = require('hexo-util');
hexo.extend.helper.register('popular_posts_wrapper', function(args){
2021-02-21 03:13:21 +08:00
const title = args.title;
const json = args.json.json;
const cls = args.json.class;
if (json == undefined || json.length == 0) {
return '';
}
2021-02-19 23:33:19 +08:00
const cfg = hexo.theme.config.article.related_posts;
if (cfg.enable != true) return;
var returnHTML = "";
var div = `
<section class='header'>
2021-02-28 18:19:32 +08:00
<div class='title cap theme'>${title}</div>
2021-02-19 23:33:19 +08:00
</section>
<section class='body'>
`;
2021-03-08 15:26:52 +08:00
const posts = this.site.posts;
const root = this.config.root;
2021-02-19 23:33:19 +08:00
function generateHTML(list){
var el = '';
2021-03-04 23:38:41 +08:00
el += '<a class="item" href="' + list.path + '" title="' + list.title + '">';
2021-03-08 15:26:52 +08:00
var p = posts.filter(function(p) {
return root + p.path == list.path;
});
if (p && p.length > 0) {
p = p.data[0];
}
2021-07-25 16:44:55 +08:00
if (p) {
if (p.cover) {
if (p.cover.includes('/')) {
list.img = p.cover;
} else {
list.img = 'https://source.unsplash.com/1280x640/?' + p.cover;
}
} else if (cfg.auto_cover && p.tags.length > 0) {
var params = '';
p.tags.reverse().forEach((tag, i) => {
if (i > 0) {
params += ',';
}
params += tag.name;
});
list.img = 'https://source.unsplash.com/1280x640/?' + params;
}
2021-03-08 15:26:52 +08:00
}
2021-03-04 23:38:41 +08:00
if (hexo.theme.config.default.cover) {
2021-02-19 23:33:19 +08:00
el += '<div class="img">'
if (list.img && list.img != "") {
el += '<img src="' + list.img + '" />';
} else {
2021-03-04 23:38:41 +08:00
el += '<img src="' + hexo.theme.config.default.cover + '" />';
2021-02-19 23:33:19 +08:00
}
el += '</div>';
}
el += '<span class="title">' + list.title + '</span>';
if (list.excerpt && list.excerpt.length > 0) {
2021-02-21 03:13:21 +08:00
el += '<span class="excerpt">' + util.truncate(util.stripHTML(list.excerpt), {length: 120}) + '</span>';
2021-02-19 23:33:19 +08:00
}
el += '</a>';
return el;
}
2021-02-21 03:13:21 +08:00
for(var i = 0; i < json.length; i++) {
returnHTML += generateHTML(json[i]);
2021-02-19 23:33:19 +08:00
}
2021-02-21 03:13:21 +08:00
if (returnHTML != "") returnHTML = "<div class=\"" + cls + "\">" + returnHTML + "</div>";
2021-02-19 23:33:19 +08:00
div += returnHTML;
2021-03-06 20:44:17 +08:00
div += '</section>';
2021-02-19 23:33:19 +08:00
return div;
});