Skip to content

Commit c6f7602

Browse files
committed
feat(hook): add doneEach
1 parent 558d73c commit c6f7602

File tree

6 files changed

+30
-5
lines changed

6 files changed

+30
-5
lines changed

CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
### 2.4.0
2+
3+
> 2017-02-13
4+
5+
#### Features
6+
7+
- feat(hook): add `doneEach`
8+
9+
110
### 2.3.0
211

312
> 2017-02-13

docs/plugins.md

+7-2
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ window.$docsify = {
6767
plugins: [
6868
function (hook) {
6969
hook.init(function() {
70-
// Called when the script starts running, only trigger once.
70+
// Called when the script starts running, only trigger once, no arguments,
7171
})
7272

7373
hook.beforeEach(function(content) {
@@ -84,8 +84,13 @@ window.$docsify = {
8484
next(html)
8585
})
8686

87+
hook.doneEach(function() {
88+
// Invoked each time after the data is fully loaded, no arguments,
89+
// ...
90+
})
91+
8792
hook.ready(function() {
88-
// Called after initialization is complete. Only trigger once.
93+
// Called after initialization is complete. Only trigger once, no arguments.
8994
})
9095
}
9196
]

docs/zh-cn/plugins.md

+7-2
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ window.$docsify = {
6363
plugins: [
6464
function (hook) {
6565
hook.init(function() {
66-
// 初始化时调用,只调用一次
66+
// 初始化时调用,只调用一次,没有参数。
6767
})
6868

6969
hook.beforeEach(function(content) {
@@ -79,8 +79,13 @@ window.$docsify = {
7979
next(html)
8080
})
8181

82+
hook.doneEach(function() {
83+
// 每次路由切换时数据全部加载完成后调用,没有参数。
84+
// ...
85+
})
86+
8287
hook.ready(function() {
83-
// docsify 初始化完成后调用,只调用一次
88+
// 初始化完成后调用,只调用一次,没有参数。
8489
})
8590
}
8691
]

src/hook.js

+5
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ export default class Hook {
44
this.afterHooks = []
55
this.initHooks = []
66
this.readyHooks = []
7+
this.doneEachHooks = []
78
}
89

910
beforeEach (fn) {
@@ -14,6 +15,10 @@ export default class Hook {
1415
this.afterHooks.push(fn)
1516
}
1617

18+
doneEach (fn) {
19+
this.doneEachHooks.push(fn)
20+
}
21+
1722
init (fn) {
1823
this.initHooks.push(fn)
1924
}

src/index.js

+1
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,7 @@ const Docsify = function () {
130130
mainRender(_ => {
131131
scrollIntoView()
132132
activeLink('nav')
133+
window.Docsify.hook.emit('doneEach')
133134
})
134135
}
135136

src/plugins/search.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -342,7 +342,7 @@ const install = function () {
342342
new SearchComponent()
343343
!isAuto && searchPlugin()
344344
})
345-
isAuto && hook.beforeEach(searchPlugin)
345+
isAuto && hook.doneEach(searchPlugin)
346346
}, window.$docsify.plugins)
347347
}
348348

0 commit comments

Comments
 (0)