2017-01-11 19:14:59 +00:00
|
|
|
'use strict'
|
|
|
|
|
|
|
|
import _ from 'lodash'
|
2017-02-21 17:10:19 +00:00
|
|
|
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 = {}) {
|
2017-05-15 20:51:27 +00:00
|
|
|
const defaults = {
|
2016-11-09 22:59:41 +00:00
|
|
|
dev: true,
|
2017-05-30 14:09:36 +00:00
|
|
|
buildDir: '.nuxt',
|
2016-11-25 14:37:06 +00:00
|
|
|
env: {},
|
2017-05-11 09:42:20 +00:00
|
|
|
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: {},
|
2017-05-19 07:35:20 +00:00
|
|
|
serverMiddleware: [],
|
2017-05-18 08:45:15 +00:00
|
|
|
ErrorPage: null,
|
2016-11-07 01:34:58 +00:00
|
|
|
loading: {
|
2016-11-07 18:21:32 +00:00
|
|
|
color: 'black',
|
|
|
|
failedColor: 'red',
|
|
|
|
height: '2px',
|
2016-11-07 01:34:58 +00:00
|
|
|
duration: 5000
|
2016-11-10 16:16:37 +00:00
|
|
|
},
|
2016-11-21 18:53:11 +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',
|
2017-05-09 18:44:53 +00:00
|
|
|
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: {
|
2017-05-22 10:51:03 +00:00
|
|
|
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
|
|
|
},
|
2017-03-25 14:16:07 +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
|
2017-02-03 14:09:27 +00:00
|
|
|
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
|
|
|
|
}
|
2016-11-21 18:53:11 +00:00
|
|
|
if (typeof options.transition === 'string') options.transition = { name: options.transition }
|
2016-11-07 01:34:58 +00:00
|
|
|
this.options = _.defaultsDeep(options, defaults)
|
|
|
|
// Env variables
|
2016-11-09 22:59:41 +00:00
|
|
|
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)
|
2017-05-30 14:09:36 +00:00
|
|
|
this.buildDir = join(this.dir, options.buildDir)
|
2017-05-11 09:48:09 +00:00
|
|
|
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 /
|
2017-05-22 10:51:03 +00:00
|
|
|
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'), {
|
2017-02-21 17:10:19 +00:00
|
|
|
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))
|
2017-02-21 17:10:19 +00:00
|
|
|
}
|
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
|
2017-05-15 20:51:27 +00:00
|
|
|
this.build = build.build.bind(this)
|
2017-02-21 18:22:57 +00:00
|
|
|
// Error template
|
2017-02-21 17:10:19 +00:00
|
|
|
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)
|
2016-11-07 01:34:58 +00:00
|
|
|
}
|
|
|
|
|
2016-11-10 02:38:11 +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()
|
2016-11-10 02:38:11 +00:00
|
|
|
}
|
2017-05-12 08:27:59 +00:00
|
|
|
/* 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
|