Nuxt/packages/core/src/module.js

163 lines
4.0 KiB
JavaScript
Raw Normal View History

2018-03-16 16:12:06 +00:00
import path from 'path'
import fs from 'fs'
import hash from 'hash-sum'
import consola from 'consola'
2018-12-22 21:05:13 +00:00
import { chainFn, sequence } from '@nuxt/utils'
2017-05-11 10:59:08 +00:00
2018-03-16 16:12:06 +00:00
export default class ModuleContainer {
2017-10-30 17:41:22 +00:00
constructor(nuxt) {
2017-05-11 10:04:15 +00:00
this.nuxt = nuxt
2017-05-11 10:59:08 +00:00
this.options = nuxt.options
2018-01-11 13:28:45 +00:00
this.requiredModules = {}
2017-07-17 19:26:41 +00:00
}
2017-10-30 17:41:22 +00:00
async ready() {
2018-01-11 13:28:45 +00:00
// Call before hook
2017-10-31 11:45:32 +00:00
await this.nuxt.callHook('modules:before', this, this.options.modules)
2018-01-11 13:28:45 +00:00
2017-10-30 17:41:22 +00:00
// Load every module in sequence
2017-07-17 19:26:41 +00:00
await sequence(this.options.modules, this.addModule.bind(this))
2018-01-11 13:28:45 +00:00
2017-10-30 21:39:08 +00:00
// Call done hook
await this.nuxt.callHook('modules:done', this)
2017-05-11 10:59:08 +00:00
}
addVendor() {
consola.warn('addVendor has been deprecated due to webpack4 optimization')
2017-05-11 10:59:08 +00:00
}
2017-10-30 17:41:22 +00:00
addTemplate(template) {
2018-01-11 15:13:52 +00:00
if (!template) {
throw new Error('Invalid template: ' + JSON.stringify(template))
2017-05-11 10:59:08 +00:00
}
2018-01-11 13:28:45 +00:00
// Validate & parse source
const src = template.src || template
const srcPath = path.parse(src)
2018-08-03 15:06:18 +00:00
if (typeof src !== 'string' || !fs.existsSync(src)) {
throw new Error('Template src not found: ' + src)
2017-05-11 10:59:08 +00:00
}
2018-01-11 13:28:45 +00:00
// Generate unique and human readable dst filename
2018-01-11 13:28:45 +00:00
const dst =
template.fileName ||
2018-01-11 19:43:34 +00:00
path.basename(srcPath.dir) + `.${srcPath.name}.${hash(src)}` + srcPath.ext
2018-01-11 13:28:45 +00:00
// Add to templates list
const templateObj = {
src,
dst,
options: template.options
2017-05-11 10:59:08 +00:00
}
2018-01-11 13:28:45 +00:00
2017-05-11 18:47:53 +00:00
this.options.build.templates.push(templateObj)
return templateObj
}
2017-10-30 17:41:22 +00:00
addPlugin(template) {
2017-06-11 14:17:36 +00:00
const { dst } = this.addTemplate(template)
2018-01-11 13:28:45 +00:00
// Add to nuxt plugins
this.options.plugins.unshift({
2017-06-11 14:17:36 +00:00
src: path.join(this.options.buildDir, dst),
2018-12-20 09:28:10 +00:00
// TODO: remove deprecated option in Nuxt 3
ssr: template.ssr,
mode: template.mode
})
2017-05-11 10:59:08 +00:00
}
2018-02-07 11:58:48 +00:00
addLayout(template, name) {
const { dst, src } = this.addTemplate(template)
const layoutName = name || path.parse(src).name
const layout = this.options.layouts[layoutName]
if (layout) {
consola.warn(`Duplicate layout registration, "${layoutName}" has been registered as "${layout}"`)
}
2018-02-07 11:58:48 +00:00
2018-02-14 19:31:11 +00:00
// Add to nuxt layouts
this.options.layouts[layoutName] = `./${dst}`
// If error layout, set ErrorPage
if (name === 'error') {
this.addErrorLayout(dst)
}
}
addErrorLayout(dst) {
const relativeBuildDir = path.relative(this.options.rootDir, this.options.buildDir)
this.options.ErrorPage = `~/${relativeBuildDir}/${dst}`
2018-02-07 11:58:48 +00:00
}
2017-10-30 17:41:22 +00:00
addServerMiddleware(middleware) {
2017-05-19 09:14:24 +00:00
this.options.serverMiddleware.push(middleware)
}
2017-10-30 17:41:22 +00:00
extendBuild(fn) {
2017-05-12 07:57:24 +00:00
this.options.build.extend = chainFn(this.options.build.extend, fn)
}
2017-10-30 17:41:22 +00:00
extendRoutes(fn) {
2018-01-11 13:28:45 +00:00
this.options.router.extendRoutes = chainFn(
this.options.router.extendRoutes,
fn
)
2017-05-11 10:59:08 +00:00
}
2017-10-30 17:41:22 +00:00
requireModule(moduleOpts) {
2018-01-11 13:28:45 +00:00
return this.addModule(moduleOpts, true /* require once */)
}
async addModule(moduleOpts, requireOnce) {
2018-01-11 13:28:45 +00:00
let src
let options
let handler
// Type 1: String or Function
if (typeof moduleOpts === 'string' || typeof moduleOpts === 'function') {
2018-01-11 13:28:45 +00:00
src = moduleOpts
2018-01-11 15:13:52 +00:00
} else if (Array.isArray(moduleOpts)) {
// Type 2: Babel style array
[src, options] = moduleOpts
2018-01-11 15:13:52 +00:00
} else if (typeof moduleOpts === 'object') {
// Type 3: Pure object
({ src, options, handler } = moduleOpts)
2018-01-11 13:28:45 +00:00
}
2017-07-03 11:11:40 +00:00
// Define handler if src is a function
if (typeof src === 'function') {
handler = src
}
2018-01-11 13:28:45 +00:00
// Resolve handler
if (!handler) {
handler = this.nuxt.resolver.requireModule(src)
2017-05-11 10:59:08 +00:00
}
2017-06-13 22:09:03 +00:00
2018-01-11 13:28:45 +00:00
// Validate handler
if (typeof handler !== 'function') {
throw new Error('Module should export a function: ' + src)
2017-05-11 10:59:08 +00:00
}
2017-07-03 11:11:40 +00:00
2018-01-11 13:28:45 +00:00
// Resolve module meta
const key = (handler.meta && handler.meta.name) || handler.name || src
2017-10-30 21:39:08 +00:00
// Update requiredModules
if (typeof key === 'string') {
if (requireOnce && this.requiredModules[key]) {
2017-06-05 08:52:02 +00:00
return
}
2018-01-11 13:28:45 +00:00
this.requiredModules[key] = { src, options, handler }
2017-06-05 08:52:02 +00:00
}
2017-07-03 11:11:40 +00:00
// Default module options to empty object
if (options === undefined) {
options = {}
}
const result = await handler.call(this, options)
return result
2017-05-11 10:04:15 +00:00
}
}