mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-16 02:44:51 +00:00
34 lines
961 B
TypeScript
34 lines
961 B
TypeScript
import type { RequestListener } from 'http'
|
|
import type { ListenOptions } from 'listhen'
|
|
import { loading } from '@nuxt/design'
|
|
|
|
export function createServer () {
|
|
const listener = createDynamicFunction(createLoadingHandler('Loading...'))
|
|
|
|
async function listen (opts: Partial<ListenOptions>) {
|
|
const { listen } = await import('listhen')
|
|
return listen(listener.call, opts)
|
|
}
|
|
|
|
return {
|
|
setApp: (app: RequestListener) => listener.set(app),
|
|
listen
|
|
}
|
|
}
|
|
|
|
export function createLoadingHandler (message: string): RequestListener {
|
|
return (_req, res) => {
|
|
res.setHeader('Content-Type', 'text/html; charset=UTF-8')
|
|
res.statusCode = 503 /* Service Unavailable */
|
|
res.end(loading({ loading: message }))
|
|
}
|
|
}
|
|
|
|
function createDynamicFunction<T extends (...args: any[]) => any> (initialValue: T) {
|
|
let fn = initialValue
|
|
return {
|
|
set: (newFn: T) => { fn = newFn },
|
|
call: ((...args: Parameters<T>) => fn(...args)) as T
|
|
}
|
|
}
|