Skip to content

Commit 535e176

Browse files
brc-ddkiaking
andauthoredJun 6, 2022
feat: allow custom edit links (#698)
close #694 close #697 Co-authored-by: Kia Ishii <kia.king.08@gmail.com>
1 parent cf99dcc commit 535e176

File tree

5 files changed

+58
-36
lines changed

5 files changed

+58
-36
lines changed
 

‎docs/.vitepress/config.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,7 @@ export default defineConfig({
1616
},
1717

1818
editLink: {
19-
repo: 'vuejs/vitepress',
20-
dir: 'docs',
19+
pattern: 'https://github.com/vuejs/vitepress/edit/main/docs/:path',
2120
text: 'Edit this page on GitHub'
2221
},
2322

‎docs/config/theme-configs.md

+24
Original file line numberDiff line numberDiff line change
@@ -188,6 +188,30 @@ export interface Footer {
188188
}
189189
```
190190

191+
## editLink
192+
193+
- Type: `EditLink`
194+
195+
Edit Link lets you display a link to edit the page on Git management services such as GitHub, or GitLab. See [Theme: Edit Link](../guide/theme-edit-link) for more details.
196+
197+
```js
198+
export default {
199+
themeConfig: {
200+
editLink: {
201+
pattern: 'https://github.com/vuejs/vitepress/edit/main/docs/:path',
202+
text: 'Edit this page on GitHub'
203+
}
204+
}
205+
}
206+
```
207+
208+
```ts
209+
export interface EditLink {
210+
pattern: string
211+
text?: string
212+
}
213+
```
214+
191215
## lastUpdatedText
192216

193217
- Type: `string`

‎docs/guide/theme-edit-link.md

+26-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,28 @@
11
# Edit Link
22

3-
Documentation coming soon...
3+
Edit Link lets you display a link to edit the page on Git management services such as GitHub, or GitLab. To enable it, add `themeConfig.editLink` options to your config.
4+
5+
```js
6+
export default {
7+
themeConfig: {
8+
editLink: {
9+
pattern: 'https://github.com/vuejs/vitepress/edit/main/docs/:path'
10+
}
11+
}
12+
}
13+
```
14+
15+
The `pattern` option defines the URL structure for the link, and `:path` is going to be replaced with the page path.
16+
17+
By default, this will add the link text "Edit this page" at the bottom of the doc page. You may customize this text by defining the `text` option.
18+
19+
```js
20+
export default {
21+
themeConfig: {
22+
editLink: {
23+
pattern: 'https://github.com/vuejs/vitepress/edit/main/docs/:path',
24+
text: 'Edit this page on GitHub'
25+
}
26+
}
27+
}
28+
```

‎src/client/theme-default/composables/edit-link.ts

+4-16
Original file line numberDiff line numberDiff line change
@@ -5,22 +5,10 @@ export function useEditLink() {
55
const { theme, page } = useData()
66

77
return computed(() => {
8-
const url = [
9-
'https://github.com',
10-
theme.value.editLink?.repo || '???',
11-
'edit',
12-
theme.value.editLink?.branch || 'main',
13-
theme.value.editLink?.dir || null,
14-
page.value.relativePath
15-
]
16-
.filter((v) => v)
17-
.join('/')
8+
const { text = 'Edit this page', pattern } = theme.value.editLink || {}
9+
const { relativePath } = page.value
10+
const url = pattern.replace(/:path/g, relativePath)
1811

19-
const text = theme.value.editLink?.text ?? 'Edit this page'
20-
21-
return {
22-
url,
23-
text
24-
}
12+
return { url, text }
2513
})
2614
}

‎types/default-theme.d.ts

+3-17
Original file line numberDiff line numberDiff line change
@@ -127,25 +127,11 @@ export namespace DefaultTheme {
127127

128128
export interface EditLink {
129129
/**
130-
* Repo of the site.
130+
* Pattern for edit link.
131131
*
132-
* @example 'vuejs/docs'
132+
* @example 'https://github.com/vuejs/vitepress/edit/main/docs/:path'
133133
*/
134-
repo: string
135-
136-
/**
137-
* Branch of the repo.
138-
*
139-
* @default 'main'
140-
*/
141-
branch?: string
142-
143-
/**
144-
* If your docs are not at the root of the repo.
145-
*
146-
* @example 'docs'
147-
*/
148-
dir?: string
134+
pattern: string
149135

150136
/**
151137
* Custom text for edit link.

0 commit comments

Comments
 (0)
Please sign in to comment.