Skip to content

Commit 36bb6a4

Browse files
Zhu Kaihaoulivz
Zhu Kaihao
authored andcommitted
feat: support display header links of all pages (close #534) (#595)
1 parent 0907c7e commit 36bb6a4

File tree

3 files changed

+28
-3
lines changed

3 files changed

+28
-3
lines changed

docs/default-theme-config/README.md

+12
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,18 @@ sidebarDepth: 2
142142
---
143143
```
144144

145+
### Displaying Header Links of All Pages
146+
147+
The sidebar only displays links for headers in the current active page. You can display all header links for every page with `themeConfig.displayAllHeaders: false`:
148+
149+
``` js
150+
module.exports = {
151+
themeConfig: {
152+
displayAllHeaders: true // Default: false
153+
}
154+
}
155+
```
156+
145157
### Active Header Links
146158

147159
By default, the nested header links and the hash in the URL are updated as the user scrolls to view the different sections of the page. This behavior can be disabled with the following theme config:

docs/zh/default-theme-config/README.md

+13-1
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ module.exports = {
130130

131131
### 嵌套的标题链接
132132

133-
默认情况下,侧边栏会自动地显示由当前页面标的题(headers)组成的的链接,并按照页面本身的结构进行嵌套,你可以通过 `themeConfig.sidebarDepth` 来修改它的行为。默认的深度是 `1`,它将提取到 `h2` 的标题,设置成 `0` 将会禁用标题(headers)链接,同时,最大的深度为 `2`,它将同时提取 `h2``h3` 标题。
133+
默认情况下,侧边栏会自动地显示由当前页面的标题(headers)组成的链接,并按照页面本身的结构进行嵌套,你可以通过 `themeConfig.sidebarDepth` 来修改它的行为。默认的深度是 `1`,它将提取到 `h2` 的标题,设置成 `0` 将会禁用标题(headers)链接,同时,最大的深度为 `2`,它将同时提取 `h2``h3` 标题。
134134

135135
也可以使用 `YAML front matter` 来为某个页面重写此值:
136136

@@ -140,6 +140,18 @@ sidebarDepth: 2
140140
---
141141
```
142142

143+
### 显示所有页面的标题链接
144+
145+
默认情况下,侧边栏只会显示由当前活动页面的标题(headers)组成的链接,你可以设置 `themeConfig.displayAllHeaders` 来显示所有页面的标题链接:
146+
147+
``` js
148+
module.exports = {
149+
themeConfig: {
150+
displayAllHeaders: true // 默认值:false
151+
}
152+
}
153+
```
154+
143155
### 活动的标题链接
144156

145157
默认情况下,当用户通过滚动查看页面的不同部分时,嵌套的标题链接和 URL 中的 Hash 值会实时更新,这个行为可以通过以下的配置来禁用:

lib/default-theme/SidebarLink.vue

+3-2
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,10 @@ export default {
1818
? $page.frontmatter.sidebarDepth
1919
: $site.themeConfig.sidebarDepth
2020
const maxDepth = configDepth == null ? 1 : configDepth
21+
const displayAllHeaders = !!$site.themeConfig.displayAllHeaders
2122
if (item.type === 'auto') {
2223
return [link, renderChildren(h, item.children, item.basePath, $route, maxDepth)]
23-
} else if (active && item.headers && !hashRE.test(item.path)) {
24+
} else if ((active || displayAllHeaders) && item.headers && !hashRE.test(item.path)) {
2425
const children = groupHeaders(item.headers)
2526
return [link, renderChildren(h, children, item.path, $route, maxDepth)]
2627
} else {
@@ -48,7 +49,7 @@ function renderChildren (h, children, path, route, maxDepth, depth = 1) {
4849
return h('ul', { class: 'sidebar-sub-headers' }, children.map(c => {
4950
const active = isActive(route, path + '#' + c.slug)
5051
return h('li', { class: 'sidebar-sub-header' }, [
51-
renderLink(h, '#' + c.slug, c.title, active),
52+
renderLink(h, path + '#' + c.slug, c.title, active),
5253
renderChildren(h, c.children, path, route, maxDepth, depth + 1)
5354
])
5455
}))

0 commit comments

Comments
 (0)