-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclientPlugin.js
89 lines (73 loc) · 1.78 KB
/
clientPlugin.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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
import paginationMeta from '@dynamic/pagination'
class Pagination {
constructor (pagination, { pages, route }) {
let { postsFilter, postsSorter } = pagination
/* eslint-disable no-eval */
postsFilter = eval(postsFilter)
postsSorter = eval(postsSorter)
const { path } = route
const { paginationPages } = pagination
paginationPages.forEach((page, index) => {
if (page.path === path) {
this.paginationIndex = index
}
})
if (!this.paginationIndex) {
this.paginationIndex = 0
}
this._paginationPages = paginationPages
this._currentPage = paginationPages[this.paginationIndex]
this._posts = pages.filter(postsFilter).sort(postsSorter)
}
get currentIndex () {
return this.paginationIndex;
}
get pages () {
return this._paginationPages;
}
get length () {
return this._paginationPages.length
}
get all () {
return this._posts;
}
get posts () {
if (!this._currentPage) {
return [];
}
const [start, end] = this._currentPage.interval
return this._posts.slice(start, end + 1)
}
get hasPrev () {
return this.paginationIndex !== 0
}
get prevLink () {
if (this.hasPrev) {
return this._paginationPages[this.paginationIndex - 1].path
}
}
get hasNext () {
if (this.length === 0) {
return false;
}
return this.paginationIndex !== this.length - 1
}
get nextLink () {
if (this.hasNext) {
return this._paginationPages[this.paginationIndex + 1].path
}
}
}
export default ({ Vue }) => {
Vue.mixin({
computed: {
$pagination () {
const { pages } = this.$site
const pagination = new Pagination(paginationMeta, {
pages, route: this.$route
})
return pagination
}
}
})
}