2014-10-31 04:59:21 +00:00
|
|
|
/* jslint node: true */
|
|
|
|
'use strict';
|
|
|
|
|
2016-07-03 05:09:27 +00:00
|
|
|
// ENiGMA½
|
|
|
|
const MenuView = require('./menu_view.js').MenuView;
|
|
|
|
const ansi = require('./ansi_term.js');
|
|
|
|
const strUtil = require('./string_util.js');
|
|
|
|
const colorCodes = require('./color_codes.js');
|
2015-05-04 21:39:48 +00:00
|
|
|
|
2016-07-03 05:09:27 +00:00
|
|
|
// deps
|
|
|
|
const util = require('util');
|
2014-10-31 04:59:21 +00:00
|
|
|
|
2014-10-31 22:25:11 +00:00
|
|
|
exports.VerticalMenuView = VerticalMenuView;
|
|
|
|
|
2015-04-09 04:54:13 +00:00
|
|
|
function VerticalMenuView(options) {
|
2015-05-07 03:19:24 +00:00
|
|
|
options.cursor = options.cursor || 'hide';
|
2015-06-29 04:31:12 +00:00
|
|
|
options.justify = options.justify || 'right'; // :TODO: default to center
|
2015-04-09 04:54:13 +00:00
|
|
|
|
|
|
|
MenuView.call(this, options);
|
2014-10-31 22:25:11 +00:00
|
|
|
|
2016-07-03 05:09:27 +00:00
|
|
|
const self = this;
|
2014-10-31 22:25:11 +00:00
|
|
|
|
2015-05-07 03:19:24 +00:00
|
|
|
this.performAutoScale = function() {
|
2015-05-07 22:14:16 +00:00
|
|
|
if(this.autoScale.height) {
|
2015-05-06 04:19:21 +00:00
|
|
|
this.dimens.height = (self.items.length * (self.itemSpacing + 1)) - (self.itemSpacing);
|
2015-06-30 05:14:17 +00:00
|
|
|
this.dimens.height = Math.min(self.dimens.height, self.client.term.termHeight - self.position.row);
|
2015-05-07 22:14:16 +00:00
|
|
|
}
|
2015-05-05 04:04:36 +00:00
|
|
|
|
2016-02-03 04:35:59 +00:00
|
|
|
if(self.autoScale.width) {
|
2016-07-03 05:09:27 +00:00
|
|
|
let maxLen = 0;
|
|
|
|
self.items.forEach( item => {
|
|
|
|
if(item.text.length > maxLen) {
|
|
|
|
maxLen = Math.min(item.text.length, self.client.term.termWidth - self.position.col);
|
2015-05-05 04:04:36 +00:00
|
|
|
}
|
|
|
|
});
|
2016-07-03 05:09:27 +00:00
|
|
|
self.dimens.width = maxLen + 1;
|
2015-05-05 04:04:36 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2015-05-07 03:19:24 +00:00
|
|
|
this.performAutoScale();
|
2014-11-02 19:07:17 +00:00
|
|
|
|
2015-06-30 05:14:17 +00:00
|
|
|
this.updateViewVisibleItems = function() {
|
|
|
|
self.maxVisibleItems = Math.ceil(self.dimens.height / (self.itemSpacing + 1));
|
|
|
|
|
|
|
|
self.viewWindow = {
|
|
|
|
top : self.focusedItemIndex,
|
|
|
|
bottom : Math.min(self.focusedItemIndex + self.maxVisibleItems, self.items.length) - 1
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2015-08-26 05:17:09 +00:00
|
|
|
/*
|
2014-11-01 15:50:11 +00:00
|
|
|
this.drawItem = function(index) {
|
|
|
|
var item = self.items[index];
|
|
|
|
if(!item) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-11-03 23:49:15 +00:00
|
|
|
var text = strUtil.stylizeString(item.text, item.focused ? self.focusTextStyle : self.textStyle);
|
2014-11-02 19:07:17 +00:00
|
|
|
self.client.term.write(
|
2015-07-06 01:05:55 +00:00
|
|
|
ansi.goto(item.row, self.position.col) +
|
|
|
|
(index === self.focusedItemIndex ? self.getFocusSGR() : self.getSGR()) +
|
|
|
|
strUtil.pad(text, this.dimens.width, this.fillChar, this.justify)
|
|
|
|
);
|
2014-11-01 15:50:11 +00:00
|
|
|
};
|
2015-08-26 05:17:09 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
this.drawItem = function(index) {
|
2016-07-03 05:09:27 +00:00
|
|
|
const item = self.items[index];
|
2015-08-26 05:17:09 +00:00
|
|
|
|
|
|
|
if(!item) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-07-03 05:09:27 +00:00
|
|
|
let focusItem;
|
|
|
|
let text;
|
2015-08-26 05:17:09 +00:00
|
|
|
|
|
|
|
if(self.hasFocusItems()) {
|
|
|
|
focusItem = self.focusItems[index];
|
|
|
|
}
|
|
|
|
|
|
|
|
if(focusItem) {
|
|
|
|
if(item.focused) {
|
|
|
|
text = strUtil.stylizeString(focusItem.text, self.focusTextStyle);
|
|
|
|
} else {
|
|
|
|
text = strUtil.stylizeString(item.text, self.textStyle);
|
|
|
|
}
|
|
|
|
|
|
|
|
// :TODO: Need to support pad()
|
|
|
|
// :TODO: shoudl we detect if pipe codes are used?
|
|
|
|
self.client.term.write(
|
2015-12-22 01:07:03 +00:00
|
|
|
ansi.goto(item.row, self.position.col) +
|
|
|
|
colorCodes.pipeToAnsi(text, self.client)
|
2015-08-26 05:17:09 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
} else {
|
|
|
|
text = strUtil.stylizeString(item.text, item.focused ? self.focusTextStyle : self.textStyle);
|
|
|
|
|
|
|
|
self.client.term.write(
|
|
|
|
ansi.goto(item.row, self.position.col) +
|
|
|
|
(index === self.focusedItemIndex ? self.getFocusSGR() : self.getSGR()) +
|
|
|
|
strUtil.pad(text, this.dimens.width, this.fillChar, this.justify)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
};
|
2014-10-31 04:59:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
util.inherits(VerticalMenuView, MenuView);
|
|
|
|
|
2015-04-27 03:57:23 +00:00
|
|
|
VerticalMenuView.prototype.redraw = function() {
|
2016-07-03 05:09:27 +00:00
|
|
|
VerticalMenuView.super_.prototype.redraw.call(this);
|
2015-05-06 04:19:21 +00:00
|
|
|
|
2015-07-01 04:45:27 +00:00
|
|
|
// :TODO: rename positionCacheExpired to something that makese sense; combine methods for such
|
2015-06-30 05:14:17 +00:00
|
|
|
if(this.positionCacheExpired) {
|
|
|
|
this.performAutoScale();
|
|
|
|
this.updateViewVisibleItems();
|
|
|
|
|
|
|
|
this.positionCacheExpired = false;
|
|
|
|
}
|
|
|
|
|
2016-07-03 05:09:27 +00:00
|
|
|
// erase old items
|
|
|
|
// :TODO: optimize this: only needed if a item is removed or new max width < old.
|
|
|
|
if(this.oldDimens) {
|
|
|
|
const blank = new Array(Math.max(this.oldDimens.width, this.dimens.width)).join(' ');
|
|
|
|
let seq = ansi.goto(this.position.row, this.position.col) + this.getSGR() + blank;
|
|
|
|
let row = this.position.row + 1;
|
|
|
|
const endRow = (row + this.oldDimens.height) - 2;
|
|
|
|
|
|
|
|
while(row < endRow) {
|
|
|
|
seq += ansi.goto(row, this.position.col) + blank;
|
|
|
|
row += 1;
|
|
|
|
}
|
|
|
|
this.client.term.write(seq);
|
|
|
|
delete this.oldDimens;
|
|
|
|
}
|
|
|
|
|
|
|
|
let row = this.position.row;
|
|
|
|
for(let i = this.viewWindow.top; i <= this.viewWindow.bottom; ++i) {
|
2015-05-20 19:24:39 +00:00
|
|
|
this.items[i].row = row;
|
|
|
|
row += this.itemSpacing + 1;
|
2015-05-06 04:19:21 +00:00
|
|
|
this.items[i].focused = this.focusedItemIndex === i;
|
|
|
|
this.drawItem(i);
|
|
|
|
}
|
2015-04-27 03:57:23 +00:00
|
|
|
};
|
|
|
|
|
2015-06-30 05:14:17 +00:00
|
|
|
VerticalMenuView.prototype.setHeight = function(height) {
|
|
|
|
VerticalMenuView.super_.prototype.setHeight.call(this, height);
|
|
|
|
|
|
|
|
this.positionCacheExpired = true;
|
|
|
|
};
|
|
|
|
|
2014-10-31 22:25:11 +00:00
|
|
|
VerticalMenuView.prototype.setPosition = function(pos) {
|
|
|
|
VerticalMenuView.super_.prototype.setPosition.call(this, pos);
|
|
|
|
|
2014-11-03 23:49:15 +00:00
|
|
|
this.positionCacheExpired = true;
|
2014-10-31 22:25:11 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
VerticalMenuView.prototype.setFocus = function(focused) {
|
|
|
|
VerticalMenuView.super_.prototype.setFocus.call(this, focused);
|
|
|
|
|
2015-12-24 18:54:03 +00:00
|
|
|
this.redraw();
|
|
|
|
};
|
|
|
|
|
|
|
|
VerticalMenuView.prototype.setFocusItemIndex = function(index) {
|
|
|
|
VerticalMenuView.super_.prototype.setFocusItemIndex.call(this, index); // sets this.focusedItemIndex
|
2016-02-03 04:35:59 +00:00
|
|
|
|
2016-07-14 04:46:14 +00:00
|
|
|
const remainAfterFocus = this.items.length - index;
|
|
|
|
if(remainAfterFocus >= this.maxVisibleItems) {
|
|
|
|
this.viewWindow = {
|
|
|
|
top : this.focusedItemIndex,
|
|
|
|
bottom : Math.min(this.focusedItemIndex + this.maxVisibleItems, this.items.length) - 1
|
|
|
|
};
|
2016-07-18 04:15:43 +00:00
|
|
|
|
|
|
|
this.positionCacheExpired = false; // skip standard behavior
|
|
|
|
this.performAutoScale();
|
2016-02-03 04:35:59 +00:00
|
|
|
}
|
2015-12-24 18:54:03 +00:00
|
|
|
|
2014-10-31 22:25:11 +00:00
|
|
|
this.redraw();
|
2014-11-01 15:50:11 +00:00
|
|
|
};
|
|
|
|
|
2015-06-05 22:20:26 +00:00
|
|
|
VerticalMenuView.prototype.onKeyPress = function(ch, key) {
|
|
|
|
|
|
|
|
if(key) {
|
2015-09-18 04:53:19 +00:00
|
|
|
if(this.isKeyMapped('up', key.name)) {
|
|
|
|
this.focusPrevious();
|
2015-07-02 02:18:34 +00:00
|
|
|
} else if(this.isKeyMapped('down', key.name)) {
|
2015-09-18 04:53:19 +00:00
|
|
|
this.focusNext();
|
2014-11-01 15:50:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-06-05 22:20:26 +00:00
|
|
|
VerticalMenuView.super_.prototype.onKeyPress.call(this, ch, key);
|
2014-11-02 19:07:17 +00:00
|
|
|
};
|
|
|
|
|
2015-04-17 04:29:53 +00:00
|
|
|
VerticalMenuView.prototype.getData = function() {
|
2014-11-02 19:07:17 +00:00
|
|
|
return this.focusedItemIndex;
|
|
|
|
};
|
|
|
|
|
|
|
|
VerticalMenuView.prototype.setItems = function(items) {
|
2016-07-03 05:09:27 +00:00
|
|
|
// if we have items already, save off their drawing area so we don't leave fragments at redraw
|
|
|
|
if(this.items && this.items.length) {
|
|
|
|
this.oldDimens = this.dimens;
|
|
|
|
}
|
|
|
|
|
2014-11-02 19:07:17 +00:00
|
|
|
VerticalMenuView.super_.prototype.setItems.call(this, items);
|
|
|
|
|
2015-06-30 05:14:17 +00:00
|
|
|
this.positionCacheExpired = true;
|
|
|
|
};
|
2015-05-06 04:19:21 +00:00
|
|
|
|
2015-09-21 01:10:09 +00:00
|
|
|
// :TODO: Apply draw optimizaitons when only two items need drawn vs entire view!
|
2015-09-18 04:53:19 +00:00
|
|
|
|
|
|
|
VerticalMenuView.prototype.focusNext = function() {
|
|
|
|
if(this.items.length - 1 === this.focusedItemIndex) {
|
|
|
|
this.focusedItemIndex = 0;
|
|
|
|
|
|
|
|
this.viewWindow = {
|
|
|
|
top : 0,
|
2016-07-18 04:15:43 +00:00
|
|
|
bottom : Math.min(this.maxVisibleItems, this.items.length) - 1
|
2015-09-18 04:53:19 +00:00
|
|
|
};
|
|
|
|
} else {
|
|
|
|
this.focusedItemIndex++;
|
|
|
|
|
|
|
|
if(this.focusedItemIndex > this.viewWindow.bottom) {
|
|
|
|
this.viewWindow.top++;
|
|
|
|
this.viewWindow.bottom++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
this.redraw();
|
2015-10-11 22:05:45 +00:00
|
|
|
|
|
|
|
VerticalMenuView.super_.prototype.focusNext.call(this);
|
2015-09-18 04:53:19 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
VerticalMenuView.prototype.focusPrevious = function() {
|
|
|
|
if(0 === this.focusedItemIndex) {
|
|
|
|
this.focusedItemIndex = this.items.length - 1;
|
|
|
|
|
|
|
|
this.viewWindow = {
|
|
|
|
//top : this.items.length - this.maxVisibleItems,
|
|
|
|
top : Math.max(this.items.length - this.maxVisibleItems, 0),
|
|
|
|
bottom : this.items.length - 1
|
|
|
|
};
|
|
|
|
|
|
|
|
} else {
|
|
|
|
this.focusedItemIndex--;
|
|
|
|
|
|
|
|
if(this.focusedItemIndex < this.viewWindow.top) {
|
|
|
|
this.viewWindow.top--;
|
|
|
|
this.viewWindow.bottom--;
|
2016-07-18 04:15:43 +00:00
|
|
|
|
|
|
|
// adjust for focus index being set & window needing expansion as we scroll up
|
|
|
|
const rem = (this.viewWindow.bottom - this.viewWindow.top) + 1;
|
|
|
|
if(rem < this.maxVisibleItems && (this.items.length - 1) > this.focusedItemIndex) {
|
|
|
|
this.viewWindow.bottom = this.items.length - 1;
|
|
|
|
}
|
2015-09-18 04:53:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
this.redraw();
|
2015-10-11 22:05:45 +00:00
|
|
|
|
|
|
|
VerticalMenuView.super_.prototype.focusPrevious.call(this);
|
2015-09-18 04:53:19 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2015-08-26 05:17:09 +00:00
|
|
|
VerticalMenuView.prototype.setFocusItems = function(items) {
|
|
|
|
VerticalMenuView.super_.prototype.setFocusItems.call(this, items);
|
|
|
|
|
|
|
|
this.positionCacheExpired = true;
|
2015-10-11 22:05:45 +00:00
|
|
|
};
|
2015-08-26 05:17:09 +00:00
|
|
|
|
2015-06-30 05:14:17 +00:00
|
|
|
VerticalMenuView.prototype.setItemSpacing = function(itemSpacing) {
|
|
|
|
VerticalMenuView.super_.prototype.setItemSpacing.call(this, itemSpacing);
|
2015-05-06 22:43:49 +00:00
|
|
|
|
2015-06-30 05:14:17 +00:00
|
|
|
this.positionCacheExpired = true;
|
2014-10-31 04:59:21 +00:00
|
|
|
};
|