Nuxt/lib/nuxt.js

182 lines
5.4 KiB
JavaScript
Raw Normal View History

2017-01-11 19:14:59 +00:00
'use strict'
import _ from 'lodash'
import compression from 'compression'
2017-01-11 19:14:59 +00:00
import fs from 'fs-extra'
import pify from 'pify'
import Server from './server'
2017-05-11 10:04:15 +00:00
import Module from './module'
2017-01-11 19:14:59 +00:00
import * as build from './build'
import * as render from './render'
import generate from './generate'
import serveStatic from 'serve-static'
import { resolve, join } from 'path'
2017-01-11 21:51:52 +00:00
import * as utils from './utils'
2016-11-07 01:34:58 +00:00
class Nuxt {
2016-12-09 18:40:59 +00:00
constructor (options = {}) {
const defaults = {
dev: (process.env.NODE_ENV !== 'production'),
buildDir: '.nuxt',
2016-11-25 14:37:06 +00:00
env: {},
head: {
meta: [],
link: [],
style: [],
script: []
},
2016-11-08 01:57:55 +00:00
plugins: [],
2016-11-07 01:34:58 +00:00
css: [],
2017-05-11 09:11:27 +00:00
modules: [],
2017-05-18 08:45:15 +00:00
layouts: {},
serverMiddleware: [],
2017-05-18 08:45:15 +00:00
ErrorPage: null,
2016-11-07 01:34:58 +00:00
loading: {
color: 'black',
failedColor: 'red',
height: '2px',
2016-11-07 01:34:58 +00:00
duration: 5000
2016-11-10 16:16:37 +00:00
},
transition: {
name: 'page',
mode: 'out-in'
},
2016-11-10 16:16:37 +00:00
router: {
2017-02-17 08:43:48 +00:00
mode: 'history',
2016-11-10 16:16:37 +00:00
base: '/',
2017-02-03 14:09:27 +00:00
middleware: [],
2017-01-18 16:25:38 +00:00
linkActiveClass: 'nuxt-link-active',
linkExactActiveClass: 'nuxt-link-exact-active',
2017-01-26 14:56:47 +00:00
extendRoutes: null,
scrollBehavior: null
2016-11-10 16:16:37 +00:00
},
2017-05-21 12:06:01 +00:00
render: {
http2: {
push: false
},
static: {},
2017-03-25 11:57:34 +00:00
gzip: {
threshold: 0
2017-05-19 07:45:36 +00:00
},
2017-05-21 12:18:21 +00:00
etag: {
weak: true // Faster for responses > 5KB
2017-05-21 12:06:01 +00:00
}
2017-02-21 17:39:29 +00:00
},
watchers: {
webpack: {},
chokidar: {}
2017-05-24 01:05:15 +00:00
}
2016-11-07 01:34:58 +00:00
}
2017-02-03 14:09:27 +00:00
// Sanitization
2016-11-07 01:34:58 +00:00
if (options.loading === true) delete options.loading
if (options.router && typeof options.router.middleware === 'string') options.router.middleware = [options.router.middleware]
2017-05-17 09:27:05 +00:00
if (options.router && typeof options.router.base === 'string') {
this._routerBaseSpecified = true
}
if (typeof options.transition === 'string') options.transition = {name: options.transition}
2016-11-07 01:34:58 +00:00
this.options = _.defaultsDeep(options, defaults)
// Ready variable
this._ready = false
2016-11-07 01:34:58 +00:00
// Env variables
this.dev = this.options.dev
2017-05-23 23:52:48 +00:00
// Explicit srcDir, rootDir and buildDir
2016-11-07 01:34:58 +00:00
this.dir = (typeof options.rootDir === 'string' && options.rootDir ? options.rootDir : process.cwd())
2016-12-08 18:19:39 +00:00
this.srcDir = (typeof options.srcDir === 'string' && options.srcDir ? resolve(this.dir, options.srcDir) : this.dir)
this.buildDir = join(this.dir, options.buildDir)
options.rootDir = this.dir
options.srcDir = this.srcDir
2017-05-23 23:52:48 +00:00
options.buildDir = this.buildDir
2016-11-18 08:17:39 +00:00
// If store defined, update store options to true
2016-12-25 20:16:30 +00:00
if (fs.existsSync(join(this.srcDir, 'store'))) {
2016-11-18 08:17:39 +00:00
this.options.store = true
}
2017-02-22 18:19:49 +00:00
// If app.html is defined, set the template path to the user template
this.options.appTemplatePath = resolve(__dirname, 'views/app.template.html')
if (fs.existsSync(join(this.srcDir, 'app.html'))) {
this.options.appTemplatePath = join(this.srcDir, 'app.html')
}
2016-11-07 01:34:58 +00:00
// renderer used by Vue.js (via createBundleRenderer)
this.renderer = null
2016-11-10 01:19:47 +00:00
// For serving static/ files to /
this.serveStatic = pify(serveStatic(resolve(this.srcDir, 'static'), this.options.render.static))
2017-02-16 17:16:00 +00:00
// For serving .nuxt/dist/ files (only when build.publicPath is not an URL)
2017-05-23 23:52:48 +00:00
this.serveStaticNuxt = pify(serveStatic(resolve(this.buildDir, 'dist'), {
maxAge: (this.dev ? 0 : '1y') // 1 year in production
}))
2017-05-21 12:06:01 +00:00
// gzip middleware for production
if (!this.dev && this.options.render.gzip) {
this.gzipMiddleware = pify(compression(this.options.render.gzip))
}
2016-12-09 19:09:12 +00:00
// Add this.Server Class
this.Server = Server
2016-11-07 01:34:58 +00:00
// Add this.build
2016-12-07 17:47:02 +00:00
build.options.call(this) // Add build options
this.build = build.build.bind(this)
2017-02-21 18:22:57 +00:00
// Error template
this.errorTemplate = _.template(fs.readFileSync(resolve(__dirname, 'views', 'error.html'), 'utf8'), {
interpolate: /{{([\s\S]+?)}}/g
})
2016-11-28 15:44:38 +00:00
// Add this.render and this.renderRoute
this.render = render.render.bind(this)
this.renderRoute = render.renderRoute.bind(this)
2016-12-07 17:47:02 +00:00
this.renderAndGetWindow = render.renderAndGetWindow.bind(this)
2016-11-10 11:33:52 +00:00
// Add this.generate
this.generate = generate.bind(this)
2017-01-11 21:51:52 +00:00
// Add this.utils (tests purpose)
this.utils = utils
2017-05-11 10:04:15 +00:00
// Add module integration
this.module = new Module(this)
// Init nuxt.js
this._ready = this.ready()
// Return nuxt.js instance
return this
}
async ready () {
if (this._ready) {
await this._ready
return this
}
// Init modules
await this.module.ready()
// Launch build in development but don't wait for it to be finished
if (this.dev) {
this.build()
} else {
build.production.call(this)
}
return this
2016-11-07 01:34:58 +00:00
}
close (callback) {
2016-11-07 01:34:58 +00:00
let promises = []
2016-12-21 14:27:30 +00:00
/* istanbul ignore if */
2016-11-07 01:34:58 +00:00
if (this.webpackDevMiddleware) {
const p = new Promise((resolve, reject) => {
this.webpackDevMiddleware.close(() => resolve())
})
promises.push(p)
}
2016-12-21 14:27:30 +00:00
/* istanbul ignore if */
2016-11-07 01:34:58 +00:00
if (this.webpackServerWatcher) {
const p = new Promise((resolve, reject) => {
this.webpackServerWatcher.close(() => resolve())
})
promises.push(p)
}
2016-12-21 14:27:30 +00:00
/* istanbul ignore if */
2017-05-21 17:18:48 +00:00
if (this.filesWatcher) {
this.filesWatcher.close()
}
/* istanbul ignore if */
if (this.customFilesWatcher) {
this.customFilesWatcher.close()
}
2017-05-18 08:45:15 +00:00
return Promise.all(promises).then(() => {
2016-11-07 01:34:58 +00:00
if (typeof callback === 'function') callback()
})
}
}
2017-01-11 21:18:23 +00:00
export default Nuxt