Skip to content

Commit 2e3efb4

Browse files
meteorlxyulivz
authored andcommitted
feat($theme-default): smooth scroll (close #567) (#1881)
* feat($plugin-active-header-links): replace throttle by debounce * feat($theme-default): use plugin-smooth-scroll (close #567) * feat($theme-default): smooth-scroll option * docs: smooth-scroll option of default theme * docs: enable smooth-scroll
1 parent b44bab3 commit 2e3efb4

File tree

8 files changed

+92
-48
lines changed

8 files changed

+92
-48
lines changed

packages/@vuepress/plugin-active-header-links/clientRootMixin.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
/* global AHL_SIDEBAR_LINK_SELECTOR, AHL_HEADER_ANCHOR_SELECTOR */
22

3-
import throttle from 'lodash.throttle'
3+
import debounce from 'lodash.debounce'
44

55
export default {
66
mounted () {
77
window.addEventListener('scroll', this.onScroll)
88
},
99

1010
methods: {
11-
onScroll: throttle(function () {
11+
onScroll: debounce(function () {
1212
this.setActiveHash()
1313
}, 300),
1414

packages/@vuepress/plugin-active-header-links/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"generator"
1919
],
2020
"dependencies": {
21-
"lodash.throttle": "^4.1.1"
21+
"lodash.debounce": "^4.0.8"
2222
},
2323
"author": "ULIVZ <chl814@foxmail.com>",
2424
"license": "MIT",
+48-40
Original file line numberDiff line numberDiff line change
@@ -1,46 +1,54 @@
11
const path = require('path')
22

33
// Theme API.
4-
module.exports = (options, ctx) => ({
5-
alias () {
6-
const { themeConfig, siteConfig } = ctx
7-
// resolve algolia
8-
const isAlgoliaSearch = (
9-
themeConfig.algolia
10-
|| Object.keys(siteConfig.locales && themeConfig.locales || {})
4+
module.exports = (options, ctx) => {
5+
const { themeConfig, siteConfig } = ctx
6+
7+
// resolve algolia
8+
const isAlgoliaSearch = (
9+
themeConfig.algolia
10+
|| Object
11+
.keys(siteConfig.locales && themeConfig.locales || {})
1112
.some(base => themeConfig.locales[base].algolia)
12-
)
13-
return {
14-
'@AlgoliaSearchBox': isAlgoliaSearch
15-
? path.resolve(__dirname, 'components/AlgoliaSearchBox.vue')
16-
: path.resolve(__dirname, 'noopModule.js')
17-
}
18-
},
13+
)
1914

20-
plugins: [
21-
['@vuepress/active-header-links', options.activeHeaderLinks],
22-
'@vuepress/search',
23-
'@vuepress/plugin-nprogress',
24-
['container', {
25-
type: 'tip',
26-
defaultTitle: {
27-
'/': 'TIP',
28-
'/zh/': '提示'
29-
}
30-
}],
31-
['container', {
32-
type: 'warning',
33-
defaultTitle: {
34-
'/': 'WARNING',
35-
'/zh/': '注意'
36-
}
37-
}],
38-
['container', {
39-
type: 'danger',
40-
defaultTitle: {
41-
'/': 'WARNING',
42-
'/zh/': '警告'
15+
const enableSmoothScroll = themeConfig.smoothScroll === true
16+
17+
return {
18+
alias () {
19+
return {
20+
'@AlgoliaSearchBox': isAlgoliaSearch
21+
? path.resolve(__dirname, 'components/AlgoliaSearchBox.vue')
22+
: path.resolve(__dirname, 'noopModule.js')
4323
}
44-
}]
45-
]
46-
})
24+
},
25+
26+
plugins: [
27+
['@vuepress/active-header-links', options.activeHeaderLinks],
28+
'@vuepress/search',
29+
'@vuepress/plugin-nprogress',
30+
['container', {
31+
type: 'tip',
32+
defaultTitle: {
33+
'/': 'TIP',
34+
'/zh/': '提示'
35+
}
36+
}],
37+
['container', {
38+
type: 'warning',
39+
defaultTitle: {
40+
'/': 'WARNING',
41+
'/zh/': '注意'
42+
}
43+
}],
44+
['container', {
45+
type: 'danger',
46+
defaultTitle: {
47+
'/': 'WARNING',
48+
'/zh/': '警告'
49+
}
50+
}],
51+
['smooth-scroll', enableSmoothScroll]
52+
]
53+
}
54+
}

packages/@vuepress/theme-default/package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@
3737
"lodash": "^4.17.15",
3838
"stylus": "^0.54.5",
3939
"stylus-loader": "^3.0.2",
40-
"vuepress-plugin-container": "^2.0.0"
40+
"vuepress-plugin-container": "^2.0.0",
41+
"vuepress-plugin-smooth-scroll": "^0.0.3"
4142
}
4243
}

packages/docs/docs/.vuepress/config.js

+1
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ module.exports = ctx => ({
3535
apiKey: '3a539aab83105f01761a137c61004d85',
3636
indexName: 'vuepress'
3737
}) : null,
38+
smoothScroll: true,
3839
locales: {
3940
'/': {
4041
label: 'English',

packages/docs/docs/theme/default-theme-config.md

+13
Original file line numberDiff line numberDiff line change
@@ -442,6 +442,19 @@ next: ./my-next-page # Will overwrite 'nextLinks' property from themeConfig
442442
---
443443
```
444444

445+
## Smooth Scrolling
446+
447+
The `themeConfig.smoothScroll` option allows you to enable smooth scrolling.
448+
449+
``` js
450+
// .vuepress/config.js
451+
module.exports = {
452+
themeConfig: {
453+
smoothScroll: true
454+
}
455+
}
456+
```
457+
445458
## Custom Page Class
446459

447460
Sometimes, you may need to add a unique class for a specific page so that you can target content on that page only in custom CSS. You can add a class to the theme container div with `pageClass` in `YAML front matter`:

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

+13
Original file line numberDiff line numberDiff line change
@@ -419,6 +419,19 @@ editLink: false
419419
---
420420
```
421421

422+
## 页面滚动
423+
424+
你可以通过 `themeConfig.smoothScroll` 选项来启用页面滚动效果。
425+
426+
``` js
427+
// .vuepress/config.js
428+
module.exports = {
429+
themeConfig: {
430+
smoothScroll: true
431+
}
432+
}
433+
```
434+
422435
## 自定义页面类
423436

424437
有时候你可能需要为特定页面添加一个 CSS 类名,以方便针对该页面添加一些专门的 CSS。这种情况下你可以在该页面的 YAML front matter 中声明一个 `pageClass`

yarn.lock

+12-4
Original file line numberDiff line numberDiff line change
@@ -7304,10 +7304,6 @@ lodash.templatesettings@^4.0.0:
73047304
dependencies:
73057305
lodash._reinterpolate "~3.0.0"
73067306

7307-
lodash.throttle@^4.1.1:
7308-
version "4.1.1"
7309-
resolved "https://registry.yarnpkg.com/lodash.throttle/-/lodash.throttle-4.1.1.tgz#c23e91b710242ac70c37f1e1cda9274cc39bf2f4"
7310-
73117307
lodash.unescape@4.0.1:
73127308
version "4.0.1"
73137309
resolved "https://registry.yarnpkg.com/lodash.unescape/-/lodash.unescape-4.0.1.tgz#bf2249886ce514cda112fae9218cdc065211fc9c"
@@ -10465,6 +10461,11 @@ smart-buffer@4.0.2:
1046510461
version "4.0.2"
1046610462
resolved "https://registry.yarnpkg.com/smart-buffer/-/smart-buffer-4.0.2.tgz#5207858c3815cc69110703c6b94e46c15634395d"
1046710463

10464+
smoothscroll-polyfill@^0.4.3:
10465+
version "0.4.4"
10466+
resolved "https://registry.yarnpkg.com/smoothscroll-polyfill/-/smoothscroll-polyfill-0.4.4.tgz#3a259131dc6930e6ca80003e1cb03b603b69abf8"
10467+
integrity sha512-TK5ZA9U5RqCwMpfoMq/l1mrH0JAR7y7KRvOBx0n2869aLxch+gT9GhN3yUfjiw+d/DiF1mKo14+hd62JyMmoBg==
10468+
1046810469
snapdragon-node@^2.0.1:
1046910470
version "2.1.1"
1047010471
resolved "https://registry.yarnpkg.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b"
@@ -11994,6 +11995,13 @@ vuepress-plugin-flowchart@^1.4.2:
1199411995
dependencies:
1199511996
flowchart.js "^1.11.3"
1199611997

11998+
vuepress-plugin-smooth-scroll@^0.0.3:
11999+
version "0.0.3"
12000+
resolved "https://registry.yarnpkg.com/vuepress-plugin-smooth-scroll/-/vuepress-plugin-smooth-scroll-0.0.3.tgz#6eff2d4c186cca917cc9f7df2b0af7de7c8c6438"
12001+
integrity sha512-qsQkDftLVFLe8BiviIHaLV0Ea38YLZKKonDGsNQy1IE0wllFpFIEldWD8frWZtDFdx6b/O3KDMgVQ0qp5NjJCg==
12002+
dependencies:
12003+
smoothscroll-polyfill "^0.4.3"
12004+
1199712005
w3c-hr-time@^1.0.1:
1199812006
version "1.0.1"
1199912007
resolved "https://registry.yarnpkg.com/w3c-hr-time/-/w3c-hr-time-1.0.1.tgz#82ac2bff63d950ea9e3189a58a65625fedf19045"

0 commit comments

Comments
 (0)