Skip to content

Commit 8ea776a

Browse files
committedJan 6, 2025·
fix: respect vite.clearScreen in build
- rename router.onAfterRouteChanged to router.onAfterRouteChange to align with naming conventions - always pass normalized href to router.onAfterRouteChanged closes #4468
1 parent c61182a commit 8ea776a

File tree

10 files changed

+34
-22
lines changed

10 files changed

+34
-22
lines changed
 

‎docs/en/reference/runtime-api.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ interface Router {
114114
/**
115115
* Called after the route changes.
116116
*/
117-
onAfterRouteChanged?: (to: string) => Awaitable<void>
117+
onAfterRouteChange?: (to: string) => Awaitable<void>
118118
}
119119
```
120120

‎docs/es/reference/runtime-api.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ interface Router {
106106
/**
107107
* Llamado después del cambio de ruta.
108108
*/
109-
onAfterRouteChanged?: (to: string) => Awaitable<void>
109+
onAfterRouteChange?: (to: string) => Awaitable<void>
110110
}
111111
```
112112

‎docs/fa/reference/runtime-api.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ interface Router {
109109
/**
110110
* پس از تغییر مسیر فراخوانی می‌شود.
111111
*/
112-
onAfterRouteChanged?: (to: string) => Awaitable<void>
112+
onAfterRouteChange?: (to: string) => Awaitable<void>
113113
}
114114
```
115115

‎docs/ko/reference/runtime-api.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ interface Router {
110110
/**
111111
* 라우트가 변경된 후 호출.
112112
*/
113-
onAfterRouteChanged?: (to: string) => Awaitable<void>
113+
onAfterRouteChange?: (to: string) => Awaitable<void>
114114
}
115115
```
116116

‎docs/pt/reference/runtime-api.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ interface Router {
106106
/**
107107
* Chamado após a mudança de rota.
108108
*/
109-
onAfterRouteChanged?: (to: string) => Awaitable<void>
109+
onAfterRouteChange?: (to: string) => Awaitable<void>
110110
}
111111
```
112112

‎docs/ru/reference/runtime-api.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ interface Router {
106106
/**
107107
* Вызывается после изменения маршрута.
108108
*/
109-
onAfterRouteChanged?: (to: string) => Awaitable<void>
109+
onAfterRouteChange?: (to: string) => Awaitable<void>
110110
}
111111
```
112112

‎docs/zh/reference/runtime-api.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ interface Router {
109109
/**
110110
* 在路由更改后调用
111111
*/
112-
onAfterRouteChanged?: (to: string) => Awaitable<void>
112+
onAfterRouteChange?: (to: string) => Awaitable<void>
113113
}
114114
```
115115

‎src/client/app/router.ts

+9-9
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,10 @@ export interface Router {
3636
/**
3737
* Called after the route changes.
3838
*/
39+
onAfterRouteChange?: (to: string) => Awaitable<void>
40+
/**
41+
* @deprecated use `onAfterRouteChange` instead
42+
*/
3943
onAfterRouteChanged?: (to: string) => Awaitable<void>
4044
}
4145

@@ -76,7 +80,7 @@ export function createRouter(
7680
history.pushState({}, '', href)
7781
}
7882
await loadPage(href)
79-
await router.onAfterRouteChanged?.(href)
83+
await (router.onAfterRouteChange ?? router.onAfterRouteChanged)?.(href)
8084
}
8185

8286
let latestPendingPath: string | null = null
@@ -245,14 +249,10 @@ export function createRouter(
245249
)
246250

247251
window.addEventListener('popstate', async (e) => {
248-
if (e.state === null) {
249-
return
250-
}
251-
await loadPage(
252-
normalizeHref(location.href),
253-
(e.state && e.state.scrollPosition) || 0
254-
)
255-
router.onAfterRouteChanged?.(location.href)
252+
if (e.state === null) return
253+
const href = normalizeHref(location.href)
254+
await loadPage(href, (e.state && e.state.scrollPosition) || 0)
255+
await (router.onAfterRouteChange ?? router.onAfterRouteChanged)?.(href)
256256
})
257257

258258
window.addEventListener('hashchange', (e) => {

‎src/node/build/build.ts

+10-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import { rimraf } from 'rimraf'
1010
import type { BuildOptions, Rollup } from 'vite'
1111
import { resolveConfig, type SiteConfig } from '../config'
1212
import { clearCache } from '../markdownToVue'
13-
import { slash, type HeadConfig } from '../shared'
13+
import { slash, type Awaitable, type HeadConfig } from '../shared'
1414
import { deserializeFunctions, serializeFunctions } from '../utils/fnSerialize'
1515
import { task } from '../utils/task'
1616
import { bundle } from './bundle'
@@ -21,12 +21,20 @@ const require = createRequire(import.meta.url)
2121

2222
export async function build(
2323
root?: string,
24-
buildOptions: BuildOptions & { base?: string; mpa?: string } = {}
24+
buildOptions: BuildOptions & {
25+
base?: string
26+
mpa?: string
27+
onAfterConfigResolve?: (siteConfig: SiteConfig) => Awaitable<void>
28+
} = {}
2529
) {
2630
const start = Date.now()
2731

2832
process.env.NODE_ENV = 'production'
2933
const siteConfig = await resolveConfig(root, 'build', 'production')
34+
35+
await buildOptions.onAfterConfigResolve?.(siteConfig)
36+
delete buildOptions.onAfterConfigResolve
37+
3038
const unlinkVue = linkVue()
3139

3240
if (buildOptions.base) {

‎src/node/cli.ts

+8-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import minimist from 'minimist'
22
import c from 'picocolors'
3-
import { createLogger } from 'vite'
3+
import { createLogger, type Logger } from 'vite'
44
import { build, createServer, serve } from '.'
55
import { version } from '../../package.json'
66
import { init } from './init/init'
@@ -12,7 +12,7 @@ if (process.env.DEBUG) {
1212

1313
const argv: any = minimist(process.argv.slice(2))
1414

15-
const logVersion = (logger = createLogger()) => {
15+
const logVersion = (logger: Logger) => {
1616
logger.info(`\n ${c.green(`${c.bold('vitepress')} v${version}`)}\n`, {
1717
clear: !logger.hasWarned
1818
})
@@ -60,9 +60,13 @@ if (!command || command === 'dev') {
6060
createLogger().info('', { clear: true })
6161
init(argv.root)
6262
} else {
63-
logVersion()
6463
if (command === 'build') {
65-
build(root, argv).catch((err) => {
64+
build(root, {
65+
...argv,
66+
onAfterConfigResolve(siteConfig) {
67+
logVersion(siteConfig.logger)
68+
}
69+
}).catch((err) => {
6670
createLogger().error(
6771
`${c.red(`build error:`)}\n${err.message}\n${err.stack}`
6872
)

0 commit comments

Comments
 (0)
Please sign in to comment.