component and middleware rootDir

This commit is contained in:
David Cheung 2016-08-11 16:32:28 -04:00
parent c000435be9
commit d748e181f1
4 changed files with 41 additions and 27 deletions

View File

@ -26,10 +26,11 @@ PluginBase.prototype.load = function(context) {
var env = this.options.env;
assert(this.name, 'Plugin name must to be set');
debug('Root dir: %s, env: %s, artifact: %s', rootDir, env, this.artifact);
var config = {};
if (this.options[this.name]) {
// First check if options have the corresponding config object
debug('Artifact: %s is using provided config obj instead' +
' of config file');
config = this.options[this.name];
} else {
if (this.artifact) {
@ -63,6 +64,7 @@ PluginBase.prototype.merge = function(target, config, keyPrefix) {
*/
PluginBase.prototype.loadNamed = function(rootDir, env, name) {
var files = this.findConfigFiles(rootDir, env, name);
debug('Looking in dir %s for %s configs', rootDir, this.name);
if (files.length) {
debug('found %s %s files: %j', env, name, files);
files.forEach(function(f) {

View File

@ -21,6 +21,10 @@ function Component(options) {
util.inherits(Component, PluginBase);
Component.prototype.getRootDir = function() {
return this.options.componentRootDir || this.options.rootDir;
};
Component.prototype.buildInstructions = function(context, rootDir, config) {
return Object.keys(config)
.filter(function(name) {

View File

@ -25,6 +25,10 @@ function Middleware(options) {
util.inherits(Middleware, PluginBase);
Middleware.prototype.getRootDir = function() {
return this.options.middlewareRootDir || this.options.rootDir;
};
Middleware.prototype.merge = function(target, config, fileName) {
var err, phase;
for (phase in config) {
@ -87,7 +91,6 @@ Middleware.prototype.buildInstructions = function(context, rootDir, config) {
allConfigs.forEach(function(config) {
var resolved = resolveMiddlewarePath(rootDir, middleware, config);
// resolved.sourceFile will be false-y if an optional middleware
// is not resolvable.
// if a non-optional middleware is not resolvable, it will throw

View File

@ -1955,7 +1955,7 @@ describe('compiler', function() {
sourceFileForUrlNotFound, done);
});
it('supports `middlewareRootDir` option', function() {
it('supports `middlewareRootDir` option', function(done) {
var middlewareJson = {
initial: {},
custom: {
@ -1968,23 +1968,24 @@ describe('compiler', function() {
fs.mkdirsSync(customDir);
fs.writeJsonSync(path.resolve(customDir, 'middleware.json'),
middlewareJson);
var instructions = boot.compile({
boot.compile({
appRootDir: appdir.PATH,
middlewareRootDir: path.resolve(appdir.PATH, 'custom'),
});
expect(instructions.middleware).to.eql({
phases: ['initial', 'custom'],
middleware: [
{
sourceFile: sourceFileForUrlNotFound,
config: {
phase: 'custom',
params: 'some-config-data',
middlewareRootDir: customDir,
}, function(err, context) {
var instructions = context.instructions;
expect(instructions.middleware).to.eql({
phases: ['initial', 'custom'],
middleware: [
{
sourceFile: sourceFileForUrlNotFound,
config: {
phase: 'custom',
params: 'some-config-data',
},
},
},
],
],
});
done();
});
});
@ -2724,7 +2725,7 @@ describe('compiler', function() {
});
});
it('supports `componentRootDir` option', function() {
it('supports `componentRootDir` option', function(done) {
var componentJson = {
debug: {
option: 'value',
@ -2735,16 +2736,20 @@ describe('compiler', function() {
fs.writeJsonSync(
path.resolve(customDir, 'component-config.json'), componentJson);
var instructions = boot.compile({
boot.compile({
appRootDir: appdir.PATH,
componentRootDir: path.resolve(appdir.PATH, 'custom'),
});
var component = instructions.components[0];
expect(component).to.eql({
sourceFile: require.resolve('debug'),
config: {
option: 'value',
},
}, function(err, context) {
if (err) return done(err);
var instructions = context.instructions;
var component = instructions.components[0];
expect(component).to.eql({
sourceFile: require.resolve('debug'),
config: {
option: 'value',
},
});
done();
});
});