Skip to content
This repository was archived by the owner on May 13, 2024. It is now read-only.

Commit 880720a

Browse files
committed
docs: update
1 parent 06c5afa commit 880720a

File tree

6 files changed

+222
-16
lines changed

6 files changed

+222
-16
lines changed

docs/.vuepress/config.js

+9-3
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,14 @@ module.exports = {
44
themeConfig: {
55
repo: 'ulivz/vuepress-plugin-blog',
66
nav: [
7-
{ text: 'Config', link: '/config/' }
8-
]
9-
}
7+
{ text: 'Config', link: '/config/' },
8+
{ text: 'Components', link: '/components/' },
9+
],
10+
sidebarDepth: 3,
11+
sidebar: [
12+
'/config/',
13+
'/pagination/'
14+
],
15+
},
1016
}
1117

docs/README.md

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
sidebar: auto
3+
title: Getting Started
34
---
45

56
# @vuepress/plugin-blog
@@ -50,8 +51,10 @@ Directory Classifier, that classifies the source pages placed in a same director
5051
Suppose you have the following files structure:
5152

5253
```vue
53-
. └── _posts    ├── 2018-4-4-intro-to-vuepress.md    └──
54-
2019-6-8-intro-to-vuepress-next.md
54+
.
55+
└── _posts   
56+
├── 2018-4-4-intro-to-vuepress.md   
57+
└── 2019-6-8-intro-to-vuepress-next.md
5558
```
5659

5760
In the traditional VuePress site, the converted page URLs will be:

docs/classifier/README.md

-1
This file was deleted.

docs/components/README.md

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
# Components
2+
3+
## `<SimplePagination>`
4+
5+
- Using it at your layout component:
6+
7+
```vue
8+
<template>
9+
<SimplePagination />
10+
</template>
11+
12+
<script>
13+
import { SimplePagination } from '@vuepress/plugin-blog/lib/client/components'
14+
export default {
15+
components: {
16+
SimplePagination
17+
}
18+
}
19+
</script>
20+
```
21+
22+
## `<Pagination>`
23+
24+
- Using it at your layout component:
25+
26+
```vue
27+
<template>
28+
<Pagination />
29+
</template>
30+
31+
<script>
32+
import { Pagination } from '@vuepress/plugin-blog/lib/client/components'
33+
export default {
34+
components: {
35+
Pagination
36+
}
37+
}
38+
</script>
39+
```

docs/config/README.md

+77-10
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
---
2-
sidebar: auto
3-
---
4-
51
# Config
62

73
## directories
@@ -93,14 +89,85 @@ For more details about permalinks, please head to [Permalinks](https://v1.vuepre
9389
### pagination
9490

9591
- Type: `Pagination`
96-
- Default: `{ perPagePosts: 10 }`
92+
- Default: `{ lengthPerPage: 10 }`
9793
- Required: `false`
9894

99-
All available options of pagination are as follows:
100-
101-
- pagination.perPagePosts: Maximum number of posts per page.
102-
- pagination.pagesSorter: Maximum number of posts per page.
95+
Please head to [Pagination Config](../pagination/README.md#config) section to get all available options.
10396

10497
## frontmatters
10598

106-
> TODO, contribution welcome.
99+
### id
100+
101+
- Type: `string`
102+
- Default: `undefined`
103+
- Required: `true`
104+
105+
Unique id for current classifier, e.g. `tag`.
106+
107+
### keys
108+
109+
- Type: `string`
110+
- Default: `undefined`
111+
- Required: `true`
112+
113+
Frontmatter keys used to classify pages.
114+
115+
You can also merge multiple tags with the same meaning, e.g.
116+
117+
```js
118+
module.exports = {
119+
plugins: [
120+
['@vuepress/plugin-blog', {
121+
frontmatters: [
122+
{
123+
id: "tag",
124+
keys: ['tag', 'tags'],
125+
},
126+
]
127+
}],
128+
],
129+
}
130+
```
131+
132+
### path
133+
134+
- Type: `string`
135+
- Default: `/${id}/`
136+
- Required: `false`
137+
138+
Entry page for current classifier, e.g. `/` or `/post/`.
139+
140+
141+
### path
142+
143+
- Type: `string`
144+
- Default: `/${id}/`
145+
- Required: `false`
146+
147+
Entry page for current classifier, e.g. `/` or `/post/`.
148+
149+
150+
### layout
151+
152+
- Type: `string`
153+
- Default: `'IndexPost' || 'Layout'`
154+
- Required: `false`
155+
156+
Layout component name for entry page.
157+
158+
159+
### frontmatter
160+
161+
- Type: `Record<string, any>`
162+
- Default: `{}`
163+
- Required: `false`
164+
165+
[Frontmatter](https://v1.vuepress.vuejs.org/guide/frontmatter.html) for entry page.
166+
167+
### pagination
168+
169+
- Type: `Pagination`
170+
- Default: `{ lengthPerPage: 10 }`
171+
- Required: `false`
172+
173+
Please head to [Pagination Config](../pagination/README.md#config) section to get all available options.

docs/pagination/README.md

+92
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,92 @@
1+
# Pagination
2+
3+
## Config
4+
5+
### sorter
6+
7+
- Type: string
8+
- Default: `See Below`
9+
10+
Sorter for matched pages, the default sorter is as follows:
11+
12+
```typescript
13+
function sorter(prev: VuePressPage, next: VuePressPage){
14+
const prevTime = new Date(prev.frontmatter.date).getTime()
15+
const nextTime = new Date(next.frontmatter.date).getTime()
16+
return prevTime - nextTime > 0 ? -1 : 1
17+
},
18+
```
19+
20+
### lengthPerPage
21+
22+
- Type: string
23+
- Default: `10`
24+
25+
Maximum number of posts per page.
26+
27+
### layout
28+
29+
- Type: string
30+
- Default: `DirectoryPagination || Layout`
31+
32+
Layout for pagination page (Except the index page.)
33+
34+
### getPaginationPageUrl
35+
36+
- Type: string
37+
- Default: `See Below`
38+
39+
A function to get the url of pagination page dynamically:
40+
41+
```js
42+
function getPaginationPageUrl(index) {
43+
if (index === 0) {
44+
return indexPath
45+
}
46+
return `${indexPath}page/${index + 1}/`
47+
}
48+
```
49+
50+
- For [directory classifier](../README.md#directory-classifier), the `indexPath` defaults to `/${classifier.id}/` (e.g
51+
. `/post/`)
52+
- For [frontmatter classifier](../README.md#frontmatter-classifier), the `indexPath` defaults to `/${classifier
53+
.pid}/${classifier.id}` (e.g.
54+
`/tag/js/`)
55+
56+
57+
## Client API
58+
59+
### $pagination
60+
61+
#### $pagination.pages
62+
63+
Matched pages for current route.
64+
65+
#### $pagination.length
66+
67+
Length of current paginations.
68+
69+
#### $pagination.hasPrev
70+
71+
Whether previous pagination page exists.
72+
73+
#### $pagination.prevLink
74+
75+
Link of previous pagination page.
76+
77+
#### $pagination.hasNext
78+
79+
Whether next pagination page exists.
80+
81+
#### $pagination.nextLink
82+
83+
Link of next pagination page.
84+
85+
#### $pagination.getSpecificPageLink
86+
87+
Get specific pagination page via page number.
88+
89+
90+
91+
92+

0 commit comments

Comments
 (0)