12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- 'use strict';
- const { url_for } = require('hexo-util');
- function listPostsHelper(posts, options) {
- if (!options && (!posts || !Object.prototype.hasOwnProperty.call(posts, 'length'))) {
- options = posts;
- posts = this.site.posts;
- }
- options = options || {};
- const { style = 'list', transform, separator = ', ' } = options;
- const orderby = options.orderby || 'date';
- const order = options.order || -1;
- const className = options.class || 'post';
- const amount = options.amount || 6;
- // Sort the posts
- posts = posts.sort(orderby, order);
- // Limit the number of posts
- if (amount) posts = posts.limit(amount);
- let result = '';
- if (style === 'list') {
- result += `<ul class="${className}-list">`;
- posts.forEach(post => {
- const title = post.title || post.slug;
- result += `<li class="${className}-list-item">`;
- result += `<a class="${className}-list-link" href="${url_for.call(this, post.path)}">`;
- result += transform ? transform(title) : title;
- result += '</a>';
- result += '</li>';
- });
- result += '</ul>';
- } else {
- posts.forEach((post, i) => {
- if (i) result += separator;
- const title = post.title || post.slug;
- result += `<a class="${className}-link" href="${url_for.call(this, post.path)}">`;
- result += transform ? transform(title) : title;
- result += '</a>';
- });
- }
- return result;
- }
- module.exports = listPostsHelper;
|