* WIP new fallback system and @systemMethod:fallback
This commit is contained in:
parent
6c38ff54d5
commit
41cdeb4c55
|
@ -81,17 +81,6 @@ var RE_ESC_CODE_ANYWHERE = new RegExp( [
|
||||||
].join('|'));
|
].join('|'));
|
||||||
|
|
||||||
|
|
||||||
/*
|
|
||||||
Convert names to eg 'ctrl-x', 'shift-x',...
|
|
||||||
https://github.com/chjj/blessed/blob/master/lib/program.js
|
|
||||||
|
|
||||||
Look at blessed DSR stuff, etc
|
|
||||||
Also cursor shape
|
|
||||||
|
|
||||||
Key filtering here: https://github.com/chjj/blessed/blob/master/lib/widgets/textarea.js
|
|
||||||
*/
|
|
||||||
|
|
||||||
|
|
||||||
function Client(input, output) {
|
function Client(input, output) {
|
||||||
stream.call(this);
|
stream.call(this);
|
||||||
|
|
||||||
|
@ -480,6 +469,33 @@ Client.prototype.gotoMenuModule = function(options, cb) {
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Client.prototype.fallbackMenuModule = function(options, cb) {
|
||||||
|
var self = this;
|
||||||
|
|
||||||
|
var modOpts;
|
||||||
|
|
||||||
|
if(_.isString(self.currentMenuModule.menuConfig.fallback)()) {
|
||||||
|
modOpts = {
|
||||||
|
name : self.currentMenuModule.menuConfig.fallback,
|
||||||
|
extraArgs : options.extraArgs,
|
||||||
|
};
|
||||||
|
|
||||||
|
self.gotoMenuModule(modOpts, cb);
|
||||||
|
|
||||||
|
} else if(self.lastMenuModuleInfo) {
|
||||||
|
modOpts = {
|
||||||
|
name : self.lastMenuModuleInfo.menuName,
|
||||||
|
extraArgs : self.lastMenuModuleInfo.extraArgs,
|
||||||
|
savedState : self.lastMenuModuleInfo.savedState,
|
||||||
|
};
|
||||||
|
|
||||||
|
self.gotoMenuModule(modOpts, cb);
|
||||||
|
} else {
|
||||||
|
cb(new Error('Nothing to fallback to!'));
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
/*
|
||||||
Client.prototype.fallbackMenuModule = function(cb) {
|
Client.prototype.fallbackMenuModule = function(cb) {
|
||||||
var self = this;
|
var self = this;
|
||||||
|
|
||||||
|
@ -495,6 +511,7 @@ Client.prototype.fallbackMenuModule = function(cb) {
|
||||||
cb(new Error('Nothing to fallback to!'));
|
cb(new Error('Nothing to fallback to!'));
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
*/
|
||||||
|
|
||||||
///////////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
// Default error handlers
|
// Default error handlers
|
||||||
|
|
|
@ -134,3 +134,11 @@ function logoff(callingMenu, formData, extraArgs) {
|
||||||
client.end();
|
client.end();
|
||||||
}, 500);
|
}, 500);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function fallbackMenu(callingMenu, formData, extraArgs) {
|
||||||
|
callingMenu.client.fallbackMenuModule( { extraArgs : extraArgs }, function result(err) {
|
||||||
|
if(err) {
|
||||||
|
callingMenu.client.log.error( { error : err }, 'Error attempting to ')
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
Loading…
Reference in New Issue