Skip to content

Commit

Permalink
feat: support serverMiddleware (#26)
Browse files Browse the repository at this point in the history
  • Loading branch information
pi0 committed Nov 12, 2020
2 parents ba4fc02 + f37ecb4 commit 92e5015
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,19 +32,26 @@ export default <Module> function slsModule () {
// TODO: render:setupMiddleware hook
// TODO: support m.prefix and m.route
nuxt.hook('modules:done', () => {
const unsupported = []
for (let m of nuxt.options.serverMiddleware) {
if (typeof m === 'string') {
m = { handler: m }
}
if (typeof m.handler !== 'string') {
console.warn('[Serverless] Unsupported serverMiddleware format:', m)
continue
}

const route = m.path || m.route || '/'
const handle = nuxt.resolver.resolvePath(m.handler || m.handle)

if (typeof handle !== 'string' || typeof route !== 'string') {
unsupported.push(m)
continue
}

options.serverMiddleware.push({ route, handle })
}
if (unsupported.length) {
console.warn('[serverless] Unsupported Server middleware used: ', unsupported)
console.info('Supported format is `{ path: string, handler: string }` and handler should export `(req, res) => {}`')
}
})

if (options.nuxtHooks) {
Expand Down

0 comments on commit 92e5015

Please sign in to comment.