mirror of https://github.com/vuejs/vitepress
commit
b225d41b14
@ -0,0 +1 @@
|
||||
# Bar
|
||||
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,117 @@
|
||||
import type { ViteDevServer } from 'vite'
|
||||
import c from 'picocolors'
|
||||
import { clearCache } from './markdownToVue'
|
||||
|
||||
type CreateDevServer = () => Promise<void>
|
||||
|
||||
export type CLIShortcut = {
|
||||
key: string
|
||||
description: string
|
||||
action(
|
||||
server: ViteDevServer,
|
||||
createDevServer: CreateDevServer
|
||||
): void | Promise<void>
|
||||
}
|
||||
|
||||
export function bindShortcuts(
|
||||
server: ViteDevServer,
|
||||
createDevServer: CreateDevServer
|
||||
): void {
|
||||
if (!server.httpServer || !process.stdin.isTTY || process.env.CI) {
|
||||
return
|
||||
}
|
||||
|
||||
server.config.logger.info(
|
||||
c.dim(c.green(' ➜')) +
|
||||
c.dim(' press ') +
|
||||
c.bold('h') +
|
||||
c.dim(' to show help')
|
||||
)
|
||||
|
||||
let actionRunning = false
|
||||
|
||||
const onInput = async (input: string) => {
|
||||
// ctrl+c or ctrl+d
|
||||
if (input === '\x03' || input === '\x04') {
|
||||
await server.close().finally(() => process.exit(1))
|
||||
return
|
||||
}
|
||||
|
||||
if (actionRunning) return
|
||||
|
||||
if (input === 'h') {
|
||||
server.config.logger.info(
|
||||
[
|
||||
'',
|
||||
c.bold(' Shortcuts'),
|
||||
...SHORTCUTS.map(
|
||||
(shortcut) =>
|
||||
c.dim(' press ') +
|
||||
c.bold(shortcut.key) +
|
||||
c.dim(` to ${shortcut.description}`)
|
||||
)
|
||||
].join('\n')
|
||||
)
|
||||
}
|
||||
|
||||
const shortcut = SHORTCUTS.find((shortcut) => shortcut.key === input)
|
||||
if (!shortcut) return
|
||||
|
||||
actionRunning = true
|
||||
await shortcut.action(server, createDevServer)
|
||||
actionRunning = false
|
||||
}
|
||||
|
||||
process.stdin.setRawMode(true)
|
||||
|
||||
process.stdin.on('data', onInput).setEncoding('utf8').resume()
|
||||
|
||||
server.httpServer.on('close', () => {
|
||||
process.stdin.off('data', onInput).pause()
|
||||
})
|
||||
}
|
||||
|
||||
const SHORTCUTS: CLIShortcut[] = [
|
||||
{
|
||||
key: 'r',
|
||||
description: 'restart the server',
|
||||
async action(server, createDevServer) {
|
||||
server.config.logger.info(c.green(`restarting server...\n`), {
|
||||
clear: true,
|
||||
timestamp: true
|
||||
})
|
||||
clearCache()
|
||||
await server.close()
|
||||
await createDevServer()
|
||||
}
|
||||
},
|
||||
{
|
||||
key: 'u',
|
||||
description: 'show server url',
|
||||
action(server) {
|
||||
server.config.logger.info('')
|
||||
server.printUrls()
|
||||
}
|
||||
},
|
||||
{
|
||||
key: 'o',
|
||||
description: 'open in browser',
|
||||
action(server) {
|
||||
server.openBrowser()
|
||||
}
|
||||
},
|
||||
{
|
||||
key: 'c',
|
||||
description: 'clear console',
|
||||
action(server) {
|
||||
server.config.logger.clearScreen('error')
|
||||
}
|
||||
},
|
||||
{
|
||||
key: 'q',
|
||||
description: 'quit',
|
||||
async action(server) {
|
||||
await server.close().finally(() => process.exit())
|
||||
}
|
||||
}
|
||||
]
|
||||
@ -0,0 +1 @@
|
||||
export * from './theme'
|
||||
Loading…
Reference in new issue