Skip to content

Commit 2d53fbb

Browse files
authoredFeb 2, 2020
feat($core): support async enhanceApp (close #2074) (#2075)
1 parent 7037882 commit 2d53fbb

File tree

5 files changed

+21
-18
lines changed

5 files changed

+21
-18
lines changed
 

‎packages/@vuepress/core/lib/client/app.js

+6-6
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ Vue.prototype.$withBase = function (path) {
5959
}
6060
}
6161

62-
export function createApp (isServer) {
62+
export async function createApp (isServer) {
6363
const routerBase = typeof window !== 'undefined' && window.__VUEPRESS_ROUTER_BASE__
6464
? window.__VUEPRESS_ROUTER_BASE__
6565
: (siteData.routerBase || siteData.base)
@@ -90,11 +90,11 @@ export function createApp (isServer) {
9090
const options = {}
9191

9292
try {
93-
appEnhancers.forEach(enhancer => {
94-
if (typeof enhancer === 'function') {
95-
enhancer({ Vue, options, router, siteData, isServer })
96-
}
97-
})
93+
await Promise.all(
94+
appEnhancers
95+
.filter(enhancer => typeof enhancer === 'function')
96+
.map(enhancer => enhancer({ Vue, options, router, siteData, isServer }))
97+
)
9898
} catch (e) {
9999
console.error(e)
100100
}

‎packages/@vuepress/core/lib/client/clientEntry.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22

33
import { createApp } from './app'
44

5-
const { app, router } = createApp(false /* isServer */)
6-
75
window.__VUEPRESS__ = {
86
version: VUEPRESS_VERSION,
97
hash: LAST_COMMIT_HASH
108
}
119

12-
router.onReady(() => {
13-
app.$mount('#app')
10+
createApp(false /* isServer */).then(({ app, router }) => {
11+
router.onReady(() => {
12+
app.$mount('#app')
13+
})
1414
})
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
import { createApp } from './app'
22

33
export default context => new Promise((resolve, reject) => {
4-
const { app, router } = createApp(true /* isServer */)
5-
const { url } = context
6-
const { fullPath } = router.resolve(url).route
4+
createApp(true /* isServer */).then(({ app, router }) => {
5+
const { url } = context
6+
const { fullPath } = router.resolve(url).route
77

8-
if (fullPath !== url) {
9-
return reject({ url: fullPath })
10-
}
8+
if (fullPath !== url) {
9+
return reject({ url: fullPath })
10+
}
1111

12-
router.push(url)
13-
router.onReady(() => resolve(app))
12+
router.push(url)
13+
router.onReady(() => resolve(app))
14+
})
1415
})

‎packages/docs/docs/guide/basic-config.md

+1
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ To develop a custom theme, see [Writing a theme](../theme/writing-a-theme.md).
4141
Since the VuePress app is a standard Vue app, you can apply app-level enhancements by creating a file `.vuepress/enhanceApp.js`, which will be imported into the app if it’s present. The file should `export default` a hook function which will receive an object containing some app-level values. You can use this hook to install extra Vue plugins, register global components, or add extra router hooks:
4242

4343
``` js
44+
// async function is also supported, too
4445
export default ({
4546
Vue, // the version of Vue being used in the VuePress app
4647
options, // the options for the root Vue instance

‎packages/docs/docs/zh/guide/basic-config.md

+1
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ module.exports = {
4141
由于 VuePress 是一个标准的 Vue 应用,你可以通过创建一个 `.vuepress/enhanceApp.js` 文件来做一些应用级别的配置,当该文件存在的时候,会被导入到应用内部。`enhanceApp.js` 应该 `export default` 一个钩子函数,并接受一个包含了一些应用级别属性的对象作为参数。你可以使用这个钩子来安装一些附加的 Vue 插件、注册全局组件,或者增加额外的路由钩子等:
4242

4343
``` js
44+
// 使用异步函数也是可以的
4445
export default ({
4546
Vue, // VuePress 正在使用的 Vue 构造函数
4647
options, // 附加到根实例的一些选项

0 commit comments

Comments
 (0)
Please sign in to comment.