* WIP new fallback system and @systemMethod:fallback

This commit is contained in:
Bryan Ashby 2015-09-23 22:24:37 -06:00
parent 6c38ff54d5
commit 41cdeb4c55
2 changed files with 36 additions and 11 deletions

View File

@ -81,17 +81,6 @@ var RE_ESC_CODE_ANYWHERE = new RegExp( [
].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) {
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) {
var self = this;
@ -495,6 +511,7 @@ Client.prototype.fallbackMenuModule = function(cb) {
cb(new Error('Nothing to fallback to!'));
}
};
*/
///////////////////////////////////////////////////////////////////////////////
// Default error handlers

View File

@ -134,3 +134,11 @@ function logoff(callingMenu, formData, extraArgs) {
client.end();
}, 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 ')
}
});
}