2014-10-23 05:41:00 +00:00
|
|
|
/* jslint node: true */
|
|
|
|
'use strict';
|
|
|
|
|
2015-03-30 03:47:48 +00:00
|
|
|
// ENiGMA½
|
2014-10-23 05:41:00 +00:00
|
|
|
var MCIViewFactory = require('./mci_view_factory.js').MCIViewFactory;
|
2015-03-28 00:02:00 +00:00
|
|
|
var menuUtil = require('./menu_util.js');
|
2015-03-30 03:47:48 +00:00
|
|
|
var Log = require('./logger.js').log;
|
2015-03-28 00:02:00 +00:00
|
|
|
|
2015-03-30 03:47:48 +00:00
|
|
|
var events = require('events');
|
|
|
|
var util = require('util');
|
|
|
|
var assert = require('assert');
|
2015-03-28 00:02:00 +00:00
|
|
|
var async = require('async');
|
2015-04-02 04:13:29 +00:00
|
|
|
var _ = require('lodash');
|
2014-10-23 05:41:00 +00:00
|
|
|
|
|
|
|
exports.ViewController = ViewController;
|
|
|
|
|
2014-11-02 19:07:17 +00:00
|
|
|
function ViewController(client, formId) {
|
2014-10-23 05:41:00 +00:00
|
|
|
events.EventEmitter.call(this);
|
|
|
|
|
|
|
|
var self = this;
|
|
|
|
|
|
|
|
this.client = client;
|
|
|
|
this.views = {}; // map of ID -> view
|
2014-11-02 19:07:17 +00:00
|
|
|
this.formId = formId || 0;
|
2014-10-23 05:41:00 +00:00
|
|
|
|
|
|
|
this.onClientKeyPress = function(key, isSpecial) {
|
|
|
|
if(isSpecial) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(self.focusedView && self.focusedView.acceptsInput) {
|
|
|
|
key = 'string' === typeof key ? key : key.toString();
|
|
|
|
self.focusedView.onKeyPress(key, isSpecial);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
this.onClientSpecialKeyPress = function(keyName) {
|
|
|
|
if(self.focusedView && self.focusedView.acceptsInput) {
|
|
|
|
self.focusedView.onSpecialKeyPress(keyName);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
this.onViewAction = function(action) {
|
|
|
|
switch(action) {
|
|
|
|
case 'next' :
|
|
|
|
self.emit('action', { view : this, action : action });
|
|
|
|
self.nextFocus();
|
|
|
|
break;
|
|
|
|
|
2014-11-02 19:07:17 +00:00
|
|
|
case 'accept' : // :TODO: consider naming this 'done'
|
2014-10-23 05:41:00 +00:00
|
|
|
// :TODO: check if id is submit, etc.
|
2015-03-31 03:29:06 +00:00
|
|
|
if(self.focusedView && self.focusedView.submit) {
|
2014-11-02 19:07:17 +00:00
|
|
|
self.submitForm();
|
|
|
|
} else {
|
|
|
|
self.nextFocus();
|
|
|
|
}
|
2014-10-23 05:41:00 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2014-11-02 19:07:17 +00:00
|
|
|
this.submitForm = function() {
|
2015-03-26 05:23:14 +00:00
|
|
|
/*
|
|
|
|
Generate a form resonse. Example:
|
|
|
|
|
|
|
|
{
|
|
|
|
id : 0,
|
|
|
|
submitId : 1,
|
2015-03-30 03:47:48 +00:00
|
|
|
value : {
|
2015-03-26 05:23:14 +00:00
|
|
|
"1" : "hurp",
|
|
|
|
"2" : [ 'a', 'b', ... ],
|
|
|
|
"3 " 2,
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
*/
|
2014-11-02 19:07:17 +00:00
|
|
|
var formData = {
|
2015-03-26 05:23:14 +00:00
|
|
|
id : self.formId,
|
|
|
|
submitId : self.focusedView.id,
|
2015-03-30 03:47:48 +00:00
|
|
|
value : {},
|
2014-11-02 19:07:17 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
var viewData;
|
|
|
|
for(var id in self.views) {
|
|
|
|
try {
|
|
|
|
viewData = self.views[id].getViewData();
|
|
|
|
if(typeof viewData !== 'undefined') {
|
2015-03-30 03:47:48 +00:00
|
|
|
formData.value[id] = viewData;
|
2014-11-02 19:07:17 +00:00
|
|
|
}
|
|
|
|
} catch(e) {
|
2015-03-30 03:47:48 +00:00
|
|
|
Log.error(e); // :TODO: Log better ;)
|
2014-11-02 19:07:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
self.emit('submit', formData);
|
|
|
|
};
|
|
|
|
|
2014-10-23 05:41:00 +00:00
|
|
|
this.attachClientEvents();
|
|
|
|
}
|
|
|
|
|
|
|
|
util.inherits(ViewController, events.EventEmitter);
|
|
|
|
|
|
|
|
ViewController.prototype.attachClientEvents = function() {
|
|
|
|
if(this.attached) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.client.on('key press', this.onClientKeyPress);
|
|
|
|
this.client.on('special key', this.onClientSpecialKeyPress);
|
|
|
|
|
|
|
|
this.attached = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
ViewController.prototype.detachClientEvents = function() {
|
|
|
|
if(!this.attached) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.client.removeListener('key press', this.onClientKeyPress);
|
|
|
|
this.client.removeListener('special key', this.onClientSpecialKeyPress);
|
|
|
|
|
2014-11-04 07:34:54 +00:00
|
|
|
for(var id in this.views) {
|
|
|
|
this.views[id].removeAllListeners();
|
|
|
|
}
|
|
|
|
|
2014-10-23 05:41:00 +00:00
|
|
|
this.attached = false;
|
|
|
|
};
|
|
|
|
|
|
|
|
ViewController.prototype.viewExists = function(id) {
|
|
|
|
return id in this.views;
|
|
|
|
};
|
|
|
|
|
|
|
|
ViewController.prototype.addView = function(view) {
|
|
|
|
assert(!this.viewExists(view.id), 'View with ID ' + view.id + ' already exists');
|
|
|
|
|
|
|
|
this.views[view.id] = view;
|
|
|
|
};
|
|
|
|
|
|
|
|
ViewController.prototype.getView = function(id) {
|
|
|
|
return this.views[id];
|
|
|
|
};
|
|
|
|
|
|
|
|
ViewController.prototype.switchFocus = function(id) {
|
|
|
|
if(this.focusedView && this.focusedView.acceptsFocus) {
|
|
|
|
this.focusedView.setFocus(false);
|
|
|
|
}
|
|
|
|
|
|
|
|
var view = this.getView(id);
|
|
|
|
if(view && view.acceptsFocus) {
|
|
|
|
this.focusedView = view;
|
|
|
|
this.focusedView.setFocus(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
// :TODO: Probably log here
|
|
|
|
};
|
|
|
|
|
|
|
|
ViewController.prototype.nextFocus = function() {
|
|
|
|
if(!this.focusedView) {
|
|
|
|
this.switchFocus(this.views[this.firstId].id);
|
|
|
|
} else {
|
|
|
|
var nextId = this.views[this.focusedView.id].nextId;
|
|
|
|
this.switchFocus(nextId);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
ViewController.prototype.setViewOrder = function(order) {
|
|
|
|
var viewIdOrder = order || [];
|
|
|
|
|
|
|
|
if(0 === viewIdOrder.length) {
|
|
|
|
for(var id in this.views) {
|
2014-10-28 03:58:34 +00:00
|
|
|
if(this.views[id].acceptsFocus) {
|
|
|
|
viewIdOrder.push(id);
|
|
|
|
}
|
2014-10-23 05:41:00 +00:00
|
|
|
}
|
|
|
|
|
2014-10-28 03:58:34 +00:00
|
|
|
viewIdOrder.sort(function intSort(a, b) {
|
|
|
|
return a - b;
|
|
|
|
});
|
2014-10-23 05:41:00 +00:00
|
|
|
}
|
|
|
|
|
2014-10-31 22:25:11 +00:00
|
|
|
if(viewIdOrder.length > 0) {
|
|
|
|
var view;
|
|
|
|
var count = viewIdOrder.length - 1;
|
|
|
|
for(var i = 0; i < count; ++i) {
|
|
|
|
this.views[viewIdOrder[i]].nextId = viewIdOrder[i + 1];
|
|
|
|
}
|
2014-10-23 05:41:00 +00:00
|
|
|
|
2014-10-31 22:25:11 +00:00
|
|
|
this.firstId = viewIdOrder[0];
|
|
|
|
var lastId = viewIdOrder.length > 1 ? viewIdOrder[viewIdOrder.length - 1] : this.firstId;
|
|
|
|
this.views[lastId].nextId = this.firstId;
|
|
|
|
}
|
2014-10-23 05:41:00 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
ViewController.prototype.loadFromMCIMap = function(mciMap) {
|
|
|
|
var factory = new MCIViewFactory(this.client);
|
|
|
|
var self = this;
|
|
|
|
|
|
|
|
Object.keys(mciMap).forEach(function onMciEntry(name) {
|
|
|
|
var mci = mciMap[name];
|
|
|
|
var view = factory.createFromMCI(mci);
|
|
|
|
|
|
|
|
if(view) {
|
|
|
|
view.on('action', self.onViewAction);
|
2014-11-04 07:34:54 +00:00
|
|
|
self.addView(view);
|
2014-10-31 22:25:11 +00:00
|
|
|
view.redraw(); // :TODO: This can result in double redraw() if we set focus on this item after
|
2014-10-23 05:41:00 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2015-03-30 03:47:48 +00:00
|
|
|
ViewController.prototype.loadFromMCIMapAndConfig = function(options, cb) {
|
|
|
|
assert(options.mciMap);
|
|
|
|
|
2015-04-04 20:41:04 +00:00
|
|
|
var factory = new MCIViewFactory(this.client);
|
|
|
|
var self = this;
|
|
|
|
var formIdKey = options.formId ? options.formId.toString() : '0';
|
|
|
|
var initialFocusId;
|
|
|
|
|
|
|
|
// :TODO: remove all the passing of fromConfig - use local
|
2015-03-28 00:02:00 +00:00
|
|
|
|
|
|
|
async.waterfall(
|
|
|
|
[
|
|
|
|
function getFormConfig(callback) {
|
2015-04-02 04:13:29 +00:00
|
|
|
menuUtil.getFormConfig(options.menuConfig, formIdKey, options.mciMap, function onFormConfig(err, formConfig) {
|
2015-03-28 00:02:00 +00:00
|
|
|
if(err) {
|
2015-03-30 03:47:48 +00:00
|
|
|
Log.warn(err, 'Unable to load menu configuration');
|
2015-03-28 00:02:00 +00:00
|
|
|
}
|
2015-03-30 03:47:48 +00:00
|
|
|
|
2015-03-28 00:02:00 +00:00
|
|
|
callback(null, formConfig);
|
|
|
|
});
|
|
|
|
},
|
|
|
|
function createViewsFromMCIMap(formConfig, callback) {
|
2015-03-30 03:47:48 +00:00
|
|
|
async.each(Object.keys(options.mciMap), function onMciEntry(name, eachCb) {
|
|
|
|
var mci = options.mciMap[name];
|
2015-03-28 00:02:00 +00:00
|
|
|
var view = factory.createFromMCI(mci);
|
|
|
|
|
|
|
|
if(view) {
|
|
|
|
view.on('action', self.onViewAction);
|
|
|
|
self.addView(view);
|
|
|
|
view.redraw(); // :TODO: This can result in double redraw() if we set focus on this item after
|
|
|
|
}
|
|
|
|
eachCb(null);
|
|
|
|
},
|
|
|
|
function eachMciComplete(err) {
|
|
|
|
self.setViewOrder();
|
|
|
|
|
|
|
|
callback(err, formConfig);
|
|
|
|
});
|
|
|
|
},
|
|
|
|
function applyFormConfig(formConfig, callback) {
|
2015-03-30 03:47:48 +00:00
|
|
|
if(formConfig) {
|
|
|
|
async.each(Object.keys(formConfig.mci), function onMciConf(mci, eachCb) {
|
|
|
|
var viewId = parseInt(mci[2]); // :TODO: what about auto-generated ID's? Do they simply not apply to menu configs?
|
2015-03-31 03:29:06 +00:00
|
|
|
var view = self.getView(viewId);
|
2015-03-30 03:47:48 +00:00
|
|
|
var mciConf = formConfig.mci[mci];
|
|
|
|
|
|
|
|
// :TODO: Break all of this up ... and/or better way of doing it
|
|
|
|
if(mciConf.items) {
|
2015-03-31 03:29:06 +00:00
|
|
|
view.setItems(mciConf.items);
|
2015-03-30 03:47:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if(mciConf.submit) {
|
2015-03-31 03:29:06 +00:00
|
|
|
view.submit = true; // :TODO: should really be actual value
|
2015-03-30 03:47:48 +00:00
|
|
|
}
|
|
|
|
|
2015-03-31 03:29:06 +00:00
|
|
|
if(mciConf.text) {
|
|
|
|
view.setText(mciConf.text);
|
|
|
|
}
|
|
|
|
|
2015-04-04 20:41:04 +00:00
|
|
|
if(mciConf.focus) {
|
|
|
|
initialFocusId = viewId;
|
|
|
|
}
|
2015-03-30 03:47:48 +00:00
|
|
|
|
|
|
|
eachCb(null);
|
|
|
|
},
|
|
|
|
function eachMciConfComplete(err) {
|
|
|
|
callback(err, formConfig);
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
callback(null);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
function mapMenuSubmit(formConfig, callback) {
|
|
|
|
if(formConfig) {
|
|
|
|
//
|
|
|
|
// If we have a 'submit' section, create a submit handler
|
|
|
|
// and map the various entries to menus/etc.
|
|
|
|
//
|
2015-04-02 04:13:29 +00:00
|
|
|
if(_.isObject(formConfig.submit)) {
|
2015-03-30 03:47:48 +00:00
|
|
|
self.on('submit', function onSubmit(formData) {
|
|
|
|
Log.debug( { formData : formData }, 'Submit form');
|
|
|
|
|
2015-04-02 04:13:29 +00:00
|
|
|
var confForFormId;
|
|
|
|
if(_.isObject(formConfig.submit[formData.submitId])) {
|
|
|
|
confForFormId = formConfig.submit[formData.submitId];
|
|
|
|
} else if(_.isObject(formConfig.submit['*'])) {
|
|
|
|
confForFormId = formConfig.submit['*'];
|
|
|
|
} else {
|
|
|
|
// no configuration for this submitId
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
var formValueCompare = function(formDataValue, formConfigValue) {
|
|
|
|
//
|
|
|
|
// Any key(s) in formConfigValue must:
|
|
|
|
// 1) be present in formDataValue
|
|
|
|
// 2) must either:
|
|
|
|
// a) be set to null (wildcard/any)
|
|
|
|
// b) have matching values
|
|
|
|
//
|
|
|
|
var formConfigValueKeys = Object.keys(formConfigValue);
|
|
|
|
for(var k = 0; k < formConfigValueKeys.length; ++k) {
|
|
|
|
var memberKey = formConfigValueKeys[k];
|
|
|
|
|
|
|
|
// submit data contains config key?
|
|
|
|
if(!_.has(formDataValue, memberKey)) {
|
|
|
|
return false; // not present in what was submitted
|
|
|
|
}
|
|
|
|
|
|
|
|
if(null !== formConfigValue[memberKey] && formConfigValue[memberKey] !== formDataValue[memberKey]) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
2015-03-31 03:29:06 +00:00
|
|
|
};
|
|
|
|
|
2015-04-04 20:41:04 +00:00
|
|
|
var conf;
|
2015-04-02 04:13:29 +00:00
|
|
|
for(var c = 0; c < confForFormId.length; ++c) {
|
2015-04-04 20:41:04 +00:00
|
|
|
conf = confForFormId[c];
|
|
|
|
if(_.isEqual(formData.value, conf.value, formValueCompare)) {
|
|
|
|
|
|
|
|
var formattedArgs;
|
|
|
|
if(conf.args) {
|
|
|
|
formattedArgs = self.formatMenuArgs(conf.args);
|
|
|
|
}
|
|
|
|
|
|
|
|
self.client.gotoMenuModule( { name : conf.menu, args : formattedArgs } );
|
2015-03-30 03:47:48 +00:00
|
|
|
break;
|
|
|
|
}
|
2015-04-02 04:13:29 +00:00
|
|
|
}
|
2015-03-30 03:47:48 +00:00
|
|
|
});
|
2015-03-28 00:02:00 +00:00
|
|
|
}
|
2015-03-30 03:47:48 +00:00
|
|
|
}
|
2015-04-04 20:41:04 +00:00
|
|
|
|
|
|
|
callback(null);
|
|
|
|
},
|
|
|
|
function setInitialFocus(callback) {
|
|
|
|
if(initialFocusId) {
|
|
|
|
self.switchFocus(initialFocusId);
|
|
|
|
}
|
|
|
|
|
|
|
|
callback(null);
|
2015-03-28 00:02:00 +00:00
|
|
|
}
|
|
|
|
],
|
|
|
|
function complete(err) {
|
|
|
|
if(cb) {
|
|
|
|
cb(err);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
);
|
|
|
|
};
|
2015-04-04 20:41:04 +00:00
|
|
|
|
|
|
|
ViewController.prototype.formatMCIString = function(format) {
|
|
|
|
var self = this;
|
|
|
|
var view;
|
|
|
|
|
|
|
|
return format.replace(/{(\d+)}/g, function replacer(match, number) {
|
|
|
|
view = self.getView(number);
|
|
|
|
|
|
|
|
if(!view) {
|
|
|
|
return match;
|
|
|
|
}
|
|
|
|
|
|
|
|
return view.getViewData();
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
ViewController.prototype.formatMenuArgs = function(args) {
|
|
|
|
var self = this;
|
|
|
|
|
|
|
|
return _.forIn(args, function onArg(value, key) {
|
|
|
|
if('string' === typeof value) {
|
|
|
|
args[key] = self.formatMCIString(value);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
};
|