component and middleware rootDir
This commit is contained in:
parent
c000435be9
commit
d748e181f1
|
@ -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) {
|
||||
|
|
|
@ -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) {
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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();
|
||||
});
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in New Issue