-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
71 lines (64 loc) · 1.74 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
const path = require('path');
function getIntervallers(max, interval) {
const count = Math.ceil(max / interval);
const arr = [...Array(count)];
return arr.map((v, index) => {
const start = index * interval;
const end = (index + 1) * interval - 1;
return [start, end > max ? max : end];
});
}
module.exports = (options, ctx) => ({
enhanceAppFiles: [path.resolve(__dirname, 'clientPlugin.js')],
ready() {
let { postsFilter, postsSorter } = options;
postsFilter = postsFilter || (({ type }) => type === 'post');
postsSorter =
postsSorter ||
((prev, next) => {
const prevTime = new Date(prev.frontmatter.date).getTime();
const nextTime = new Date(next.frontmatter.date).getTime();
return prevTime - nextTime > 0 ? -1 : 1;
});
const { pages } = ctx;
const posts = pages.filter(postsFilter);
const {
perPagePosts = 5,
paginationDir = 'page',
firstPagePath = '/',
layout = 'Layout'
} = options;
const intervallers = getIntervallers(posts.length, perPagePosts);
const pagination = {
paginationPages:
intervallers.length !== 0
? intervallers.map((interval, index) => {
const path =
index === 0 ? firstPagePath : `/${paginationDir}/${index + 1}/`;
return { path, interval };
})
: [],
postsFilter: postsFilter.toString(),
postsSorter: postsSorter.toString()
};
ctx.pagination = pagination;
pagination.paginationPages.forEach(({ path }, index) => {
if (path === '/') {
return;
}
ctx.addPage({
permalink: path,
frontmatter: {
layout,
title: `Page ${index + 1}`
}
});
});
},
async clientDynamicModules() {
return {
name: 'pagination.js',
content: `export default ${JSON.stringify(ctx.pagination, null, 2)}`
};
}
});