neo-blessed/lib/widget.js

5367 lines
126 KiB
JavaScript
Raw Normal View History

/**
* Blessed high-level interface
2013-06-11 16:48:37 +00:00
* Copyright (c) 2013, Christopher Jeffrey (MIT License)
* Still under heavy development.
*/
2013-06-06 09:03:25 +00:00
/**
* Modules
*/
2013-07-12 12:48:55 +00:00
var EventEmitter = require('events').EventEmitter
, assert = require('assert')
2013-07-12 12:48:55 +00:00
, path = require('path')
2013-07-14 11:43:17 +00:00
, fs = require('fs')
, colors = require('./colors')
, widget = exports;
2013-06-06 09:03:25 +00:00
/**
* Node
*/
function Node(options) {
2013-06-14 20:58:54 +00:00
if (!(this instanceof Node)) {
return new Node(options);
}
2013-06-06 09:03:25 +00:00
EventEmitter.call(this);
2013-07-18 22:56:05 +00:00
options = options || {};
this.options = options;
this.screen = this.screen
2013-06-14 08:51:12 +00:00
|| Screen.global
|| (function(){throw new Error('No active screen.')})();
this.parent = options.parent || null;
this.children = [];
2013-06-18 10:08:31 +00:00
this.$ = this._ = this.data = {};
this.uid = Node.uid++;
this.index = -1;
if (this.parent) {
this.parent.append(this);
}
if (!this.parent) {
this._detached = true;
}
(options.children || []).forEach(this.append.bind(this));
2013-07-04 04:15:09 +00:00
// if (this.type === 'screen' && !this.focused) {
// this.focused = this.children[0];
// }
}
Node.uid = 0;
2013-06-06 09:03:25 +00:00
Node.prototype.__proto__ = EventEmitter.prototype;
2013-06-25 11:34:10 +00:00
Node.prototype.type = 'node';
Node.prototype.insert = function(element, i) {
var old = element.parent;
element.detach();
element.parent = this;
if (this.type === 'screen' && !this.focused) {
this.focused = element;
}
if (!~this.children.indexOf(element)) {
if (i === 0) {
this.children.unshift(element);
} else if (i === this.children.length) {
this.children.push(element);
} else {
this.children.splice(i, 0, element);
}
}
element.emit('reparent', this);
this.emit('adopt', element);
if (!old) {
// element.emitDescendants('attach', function(el) {
// el._detached = false;
// });
(function emit(el) {
el._detached = false;
el.emit('attach');
if (el.children) el.children.forEach(emit);
})(element);
}
};
2013-07-15 03:12:36 +00:00
Node.prototype.prepend = function(element) {
this.insert(element, 0);
};
Node.prototype.append = function(element) {
this.insert(element, this.children.length);
};
Node.prototype.insertBefore = function(element, other) {
var i = this.children.indexOf(other);
if (~i) this.insert(element, i);
};
Node.prototype.insertAfter = function(element, other) {
var i = this.children.indexOf(other);
if (~i) this.insert(element, i + 1);
};
Node.prototype.remove = function(element) {
if (element.parent !== this) return;
element.parent = null;
var i = this.children.indexOf(element);
if (~i) {
this.children.splice(i, 1);
}
2013-07-03 23:47:55 +00:00
if (this.type !== 'screen') {
i = this.screen.clickable.indexOf(element);
if (~i) this.screen.clickable.splice(i, 1);
i = this.screen.keyable.indexOf(element);
if (~i) this.screen.keyable.splice(i, 1);
}
2013-07-03 23:47:55 +00:00
if (this.type === 'screen' && this.focused === element) {
this.focused = this.children[0];
}
2013-06-11 18:13:49 +00:00
element.emit('reparent', null);
this.emit('remove', element);
// element.emitDescendants('detach', function(el) {
// el._detached = true;
// });
(function emit(el) {
el._detached = true;
el.emit('detach');
if (el.children) el.children.forEach(emit);
})(element);
2013-06-20 12:18:04 +00:00
2013-07-04 06:50:50 +00:00
// this.clearPos();
};
2013-06-20 16:48:12 +00:00
Node.prototype.detach = function() {
2013-07-18 22:56:05 +00:00
if (this.parent) this.parent.remove(this);
};
Node.prototype.forDescendants = function(iter, s) {
if (s) iter(this);
el.children.forEach(function emit(el) {
iter(el);
el.children.forEach(emit);
});
};
Node.prototype.forAncestors = function(iter, s) {
var el = this;
if (s) iter(this);
while (el = el.parent) {
iter(el);
el.emit.apply(el, args);
}
};
Node.prototype.collectDescendants = function(s) {
var out = [];
this.forDescendants(function(el) {
out.push(el);
}, s);
return out;
};
Node.prototype.collectAncestors = function(s) {
var out = [];
this.forAncestors(function(el) {
out.push(el);
}, s);
return out;
};
2013-06-20 12:18:04 +00:00
Node.prototype.emitDescendants = function() {
var args = Array.prototype.slice(arguments)
, iter;
if (typeof args[args.length-1] === 'function') {
iter = args.pop();
}
return this.forDescendants(function(el) {
2013-06-20 12:18:04 +00:00
if (iter) iter(el);
el.emit.apply(el, args);
}, true);
2013-06-20 12:18:04 +00:00
};
Node.prototype.emitAncestors = function() {
var args = Array.prototype.slice(arguments)
, iter;
if (typeof args[args.length-1] === 'function') {
iter = args.pop();
}
return this.forAncestors(function(el) {
if (iter) iter(el);
el.emit.apply(el, args);
}, true);
};
Node.prototype.hasDescendant = function(target) {
// return this.collectDescendants().indexOf(target) !== -1;
return (function find(el) {
for (var i = 0; i < el.children.length; i++) {
if (el.children[i] === target) {
return true;
}
if (find(el.children[i]) === true) {
return true;
}
}
return false;
})(this);
};
Node.prototype.hasAncestor = function(target) {
// return this.collectAncestors().indexOf(target) !== -1;
var el = this;
while (el = el.parent) {
if (el === target) return true;
}
return false;
};
2013-06-25 22:31:13 +00:00
Node.prototype.gon = function(type, callback) {
var self = this
, events = this._events || {}
, listeners = (events[type] || []).slice();
2013-07-03 23:46:06 +00:00
return this.on(type, function() {
if (callback.apply(this, arguments) === true) {
2013-06-25 22:31:13 +00:00
self._events[type] = listeners;
}
});
};
2013-07-12 09:59:58 +00:00
Node.prototype.get = function(name, value) {
if (this.data.hasOwnProperty(name)) {
return this.data[name];
}
return value;
};
Node.prototype.set = function(name, value) {
return this.data[name] = value;
};
/**
* Screen
*/
function Screen(options) {
2013-06-01 05:29:31 +00:00
var self = this;
2013-06-14 20:58:54 +00:00
if (!(this instanceof Screen)) {
return new Screen(options);
}
2013-07-18 22:56:05 +00:00
options = options || {};
if (options.rsety && options.listen) {
2013-06-14 20:58:54 +00:00
options = { program: options };
}
options.program = options.program
|| require('./program').global
|| new (require('./program'))(options);
2013-06-14 08:51:12 +00:00
if (!Screen.global) {
Screen.global = this;
}
Node.call(this, options);
this.program = options.program;
this.program.zero = true;
this.tput = this.program.tput;
this.dattr = ((0 << 18) | (0x1ff << 9)) | 0x1ff;
2013-06-01 05:29:31 +00:00
this.position = {
2013-06-11 16:48:37 +00:00
left: this.left = this.rleft = 0,
right: this.right = this.rright = 0,
top: this.top = this.rtop = 0,
bottom: this.bottom = this.rbottom = 0
2013-06-01 05:29:31 +00:00
};
2013-06-16 14:31:55 +00:00
this.hover = null;
2013-06-09 20:52:22 +00:00
this.history = [];
this.clickable = [];
this.keyable = [];
2013-06-09 20:02:12 +00:00
this.grabKeys = false;
this.lockKeys = false;
this.focused;
this._ci = -1;
2013-07-13 02:51:24 +00:00
function resize() {
2013-06-01 05:29:31 +00:00
self.alloc();
self.render();
2013-06-24 11:16:02 +00:00
(function emit(el) {
el.emit('resize');
if (el.children) {
el.children.forEach(emit);
}
})(self);
2013-07-03 23:46:06 +00:00
// self.emitDescendants('resize');
2013-07-13 02:51:24 +00:00
}
this.program.on('resize', function() {
if (!self.options.resizeTimeout) {
return resize();
}
if (self._resizeTimer) {
clearTimeout(self._resizeTimer);
delete self._resizeTimer;
}
var time = typeof self.options.resizeTimeout === 'number'
? self.options.resizeTimeout
: 300;
self._resizeTimer = setTimeout(resize, time);
2013-06-01 05:29:31 +00:00
});
2013-06-06 09:03:25 +00:00
this.program.on('focus', function() {
self.emit('focus');
});
this.program.on('blur', function() {
self.emit('blur');
});
this.program.alternateBuffer();
this.program.hideCursor();
2013-07-15 06:44:11 +00:00
this.program.cup(0, 0);
2013-07-15 23:53:04 +00:00
//this.program.csr(0, this.height - 1);
this.alloc();
2013-06-18 11:30:26 +00:00
function reset() {
if (reset.done) return;
reset.done = true;
2013-07-15 23:53:04 +00:00
if (self.program.scrollTop !== 0
|| self.program.scrollBottom !== self.rows - 1) {
self.program.csr(0, self.height - 1);
}
self.program.clear();
self.program.showCursor();
self.program.normalBuffer();
2013-06-18 11:30:26 +00:00
if (self._listenedMouse) {
self.program.disableMouse();
}
}
2013-06-24 11:16:02 +00:00
this._maxListeners = Infinity;
2013-06-18 11:30:26 +00:00
process.on('uncaughtException', function(err) {
reset();
2013-07-17 03:28:56 +00:00
if (err) console.error(err.stack ? err.stack + '' : err + '');
2013-07-18 06:03:47 +00:00
return process.exit(1);
2013-06-18 11:30:26 +00:00
});
process.on('exit', function() {
reset();
});
2013-06-11 14:27:50 +00:00
this.on('newListener', function fn(type) {
2013-07-04 04:15:09 +00:00
if (type === 'keypress' || type.indexOf('key ') === 0 || type === 'mouse') {
if (type === 'keypress' || type.indexOf('key ') === 0) self._listenKeys();
2013-06-11 14:27:50 +00:00
if (type === 'mouse') self._listenMouse();
}
2013-07-12 09:59:58 +00:00
if (type === 'mouse'
|| type === 'click'
|| type === 'mouseover'
|| type === 'mouseout'
|| type === 'mousedown'
|| type === 'mouseup'
|| type === 'mousewheel'
|| type === 'wheeldown'
|| type === 'wheelup'
|| type === 'mousemove') {
self._listenMouse();
}
2013-06-11 14:27:50 +00:00
});
2013-06-01 05:29:31 +00:00
}
2013-06-14 08:51:12 +00:00
Screen.global = null;
2013-06-01 05:29:31 +00:00
Screen.prototype.__proto__ = Node.prototype;
2013-06-25 11:34:10 +00:00
Screen.prototype.type = 'screen';
2013-07-04 04:15:09 +00:00
// TODO: Bubble and capture events throughout the tree.
2013-06-16 14:31:55 +00:00
Screen.prototype._listenMouse = function(el) {
2013-06-06 09:03:25 +00:00
var self = this;
2013-06-16 14:31:55 +00:00
if (el && !~this.clickable.indexOf(el)) {
el.clickable = true;
2013-06-16 14:31:55 +00:00
this.clickable.push(el);
2013-06-06 09:03:25 +00:00
}
if (this._listenedMouse) return;
this._listenedMouse = true;
this.program.enableMouse();
2013-07-03 23:46:06 +00:00
// this.on('element click', el.focus.bind(el));
2013-06-06 09:03:25 +00:00
this.program.on('mouse', function(data) {
if (self.lockKeys) return;
var clickable = hsort(self.clickable)
, i = 0
2013-06-16 14:31:55 +00:00
, left
, top
, width
, height
, el
, set
, ret;
for (; i < clickable.length; i++) {
el = clickable[i];
2013-07-12 15:22:06 +00:00
2013-06-18 10:08:31 +00:00
if (!el.visible) continue;
2013-06-16 14:31:55 +00:00
2013-07-12 15:22:06 +00:00
// Something like (doesn't work because textbox is usually focused):
// if (self.grabKeys && self.focused !== el
// && !el.hasAncestor(self.focused)) continue;
2013-07-17 09:38:11 +00:00
ret = el.lpos;
2013-06-16 14:31:55 +00:00
if (!ret) continue;
left = ret.xi;
top = ret.yi;
width = ret.xl - ret.xi;
height = ret.yl - ret.yi;
2013-07-14 13:05:42 +00:00
if (data.x >= left && data.x < left + width
&& data.y >= top && data.y < top + height) {
2013-06-06 09:03:25 +00:00
el.emit('mouse', data);
self.emit('element mouse', el, data);
2013-06-06 09:03:25 +00:00
if (data.action === 'mouseup') {
el.emit('click', data);
self.emit('element click', el, data);
2013-06-16 14:31:55 +00:00
} else if (data.action === 'mousemove') {
if (self.hover && el.index > self.hover.index) {
set = false;
}
2013-06-16 14:31:55 +00:00
if (self.hover !== el && !set) {
if (self.hover) {
self.hover.emit('mouseout', data);
self.emit('element mouseout', self.hover, data);
}
el.emit('mouseover', data);
self.emit('element mouseover', el, data);
self.hover = el;
}
set = true;
2013-06-06 09:03:25 +00:00
}
el.emit(data.action, data);
self.emit('element ' + data.action, el, data);
// XXX Temporary workaround for List wheel events.
// Make sure they get propogated to the list instead of the list item.
if ((data.action === 'wheeldown' || data.action === 'wheelup')
&& el.listeners(data.action).length === 0
&& el.parent.listeners(data.action).length > 0) {
el.parent.emit(data.action, data);
self.emit('element ' + data.action, el.parent, data);
}
// Seems to work better without this if statement:
// if (data.action !== 'mousemove')
break;
2013-06-06 09:03:25 +00:00
}
}
2013-06-16 14:31:55 +00:00
2013-07-03 23:46:06 +00:00
// Just mouseover?
if ((data.action === 'mousemove'
|| data.action === 'mousedown'
|| data.action === 'mouseup')
&& self.hover
&& !set) {
2013-06-16 14:31:55 +00:00
self.hover.emit('mouseout', data);
self.emit('element mouseout', self.hover, data);
self.hover = null;
}
2013-06-06 09:03:25 +00:00
self.emit('mouse', data);
});
};
2013-07-03 23:46:06 +00:00
// TODO: Bubble and capture events throughout the tree.
2013-06-06 09:03:25 +00:00
Screen.prototype._listenKeys = function(el) {
var self = this;
if (el && !~this.keyable.indexOf(el)) {
el.keyable = true;
2013-07-03 23:46:06 +00:00
// Listen for click, but do not enable
// mouse if it's not enabled yet.
if (el.options.autoFocus !== false) {
2013-06-16 14:31:55 +00:00
var lm = this._listenedMouse;
this._listenedMouse = true;
2013-07-03 23:46:06 +00:00
el.on('click', el.focus.bind(el));
2013-06-16 14:31:55 +00:00
this._listenedMouse = lm;
2013-06-09 20:02:12 +00:00
}
this.keyable.push(el);
2013-06-06 09:03:25 +00:00
}
if (this._listenedKeys) return;
this._listenedKeys = true;
2013-07-03 23:46:06 +00:00
// NOTE: The event emissions used to be reversed:
// element + screen
// They are now:
// screen + element
// After the first keypress emitted, the handler
// checks to make sure grabKeys, lockKeys, and focused
// weren't changed, and handles those situations appropriately.
2013-06-06 09:03:25 +00:00
this.program.on('keypress', function(ch, key) {
if (self.lockKeys) return;
2013-07-03 23:46:06 +00:00
var focused = self.focused
, grabKeys = self.grabKeys;
if (!grabKeys) {
2013-06-09 18:14:42 +00:00
self.emit('keypress', ch, key);
2013-07-12 09:59:58 +00:00
self.emit('key ' + key.full, ch, key);
2013-06-09 18:14:42 +00:00
}
2013-07-03 23:46:06 +00:00
// If something changed from the screen key handler, stop.
if (self.grabKeys !== grabKeys || self.lockKeys) {
return;
}
if (~self.keyable.indexOf(focused)) {
2013-06-25 22:31:13 +00:00
focused.emit('keypress', ch, key);
2013-07-12 09:59:58 +00:00
focused.emit('key ' + key.full, ch, key);
self.emit('element keypress', focused, ch, key);
self.emit('element key ' + key.full, focused, ch, key);
2013-06-25 22:31:13 +00:00
}
2013-06-06 09:03:25 +00:00
});
};
2013-06-01 05:29:31 +00:00
Screen.prototype.__defineGetter__('cols', function() {
return this.program.cols;
});
Screen.prototype.__defineGetter__('rows', function() {
return this.program.rows;
});
Screen.prototype.__defineGetter__('width', function() {
return this.program.cols;
});
Screen.prototype.__defineGetter__('height', function() {
return this.program.rows;
});
Screen.prototype.alloc = function() {
var x, y;
2013-07-14 17:21:14 +00:00
2013-06-01 05:29:31 +00:00
this.lines = [];
for (y = 0; y < this.rows; y++) {
this.lines[y] = [];
for (x = 0; x < this.cols; x++) {
this.lines[y][x] = [this.dattr, ' '];
}
2013-07-14 17:21:14 +00:00
this.lines[y].dirty = false;
}
2013-07-14 17:21:14 +00:00
2013-06-06 10:19:52 +00:00
this.olines = [];
for (y = 0; y < this.rows; y++) {
this.olines[y] = [];
for (x = 0; x < this.cols; x++) {
this.olines[y][x] = [this.dattr, ' '];
2013-06-06 10:19:52 +00:00
}
}
2013-07-14 17:21:14 +00:00
this.program.clear();
2013-06-01 05:29:31 +00:00
};
Screen.prototype.render = function() {
var self = this;
2013-07-15 23:53:04 +00:00
this.emit('prerender');
2013-06-11 19:16:19 +00:00
// TODO: Could possibly drop .dirty and just clear the `lines` buffer every
// time before a screen.render. This way clearRegion doesn't have to be
// called in arbitrary places for the sake of clearing a spot where an
// element used to be (e.g. when an element moves or is hidden). There could
// be some overhead though.
// this.screen.clearRegion(0, this.cols, 0, this.rows);
this._ci = 0;
this.children.forEach(function(el) {
el.index = self._ci++;
el.render();
});
this._ci = -1;
2013-07-15 23:53:04 +00:00
this.draw(0, this.rows - 1);
2013-07-15 23:53:04 +00:00
this.emit('render');
};
Screen.prototype.blankLine = function(ch, dirty) {
var out = [];
2013-06-29 22:56:09 +00:00
for (var x = 0; x < this.cols; x++) {
out[x] = [this.dattr, ch || ' '];
}
2013-06-29 22:56:09 +00:00
out.dirty = dirty;
return out;
};
Screen.prototype.insertLine = function(n, y, top, bottom) {
if (!this.tput
|| !this.tput.strings.change_scroll_region
|| !this.tput.strings.delete_line
|| !this.tput.strings.insert_line) return;
2013-07-15 23:53:04 +00:00
this.program.sc();
this.program.csr(top, bottom);
this.program.cup(y, 0);
2013-07-15 23:53:04 +00:00
//if (y === top && n === 1) {
// this.program.ri(); // su
//} else {
this.program.il(n);
this.program.csr(0, this.height - 1);
2013-07-15 23:53:04 +00:00
this.program.rc();
2013-07-15 23:53:04 +00:00
var j = bottom + 1;
while (n--) {
this.lines.splice(y, 0, this.blankLine());
this.lines.splice(j, 1);
this.olines.splice(y, 0, this.blankLine());
this.olines.splice(j, 1);
}
};
Screen.prototype.deleteLine = function(n, y, top, bottom) {
if (!this.tput
|| !this.tput.strings.change_scroll_region
|| !this.tput.strings.delete_line
|| !this.tput.strings.insert_line) return;
2013-07-15 23:53:04 +00:00
this.program.sc();
this.program.csr(top, bottom);
2013-07-15 23:53:04 +00:00
//if (y === top && n === 1) {
// this.program.cup(bottom, 0);
// this.program.ind(); // sd
//} else {
this.program.cup(y, 0);
this.program.dl(n);
this.program.csr(0, this.height - 1);
2013-07-15 23:53:04 +00:00
this.program.rc();
2013-07-15 23:53:04 +00:00
var j = bottom + 1;
while (n--) {
this.lines.splice(j, 0, this.blankLine());
this.lines.splice(y, 1);
this.olines.splice(j, 0, this.blankLine());
this.olines.splice(y, 1);
}
};
// This is how ncurses does it.
// Scroll down (up cursor-wise).
// This will only work for top line deletion as opposed to arbitrary lines.
Screen.prototype.insertLineNC = function(n, y, top, bottom) {
if (!this.tput
|| !this.tput.strings.change_scroll_region
|| !this.tput.strings.delete_line
|| !this.tput.strings.insert_line) return;
if (y !== top) return this.insertLine.apply(this, arguments);
this.program.sc();
this.program.csr(top, bottom);
this.program.cup(top, 0);
this.program.dl(n);
this.program.csr(0, this.height - 1);
// this.program.cup(top, 0);
this.program.rc();
var j = bottom + 1;
while (n--) {
this.lines.splice(j, 0, this.blankLine());
this.lines.splice(y, 1);
this.olines.splice(j, 0, this.blankLine());
this.olines.splice(y, 1);
}
};
// This is how ncurses does it.
// Scroll up (down cursor-wise).
// This will only work for bottom line deletion as opposed to arbitrary lines.
Screen.prototype.deleteLineNC = function(n, y, top, bottom) {
if (!this.tput
|| !this.tput.strings.change_scroll_region
|| !this.tput.strings.delete_line
|| !this.tput.strings.insert_line) return;
if (y !== bottom) return this.deleteLine.apply(this, arguments);
this.program.sc();
this.program.csr(top, bottom);
this.program.cup(bottom, 0);
this.program.write(Array(n + 1).join('\n'));
this.program.csr(0, this.height - 1);
// this.program.cup(bottom - 1, 0);
this.program.rc();
var j = bottom + 1;
while (n--) {
this.lines.splice(j, 0, this.blankLine());
this.lines.splice(y, 1);
this.olines.splice(j, 0, this.blankLine());
this.olines.splice(y, 1);
}
};
Screen.prototype.insertBottom = function(top, bottom) {
return this.deleteLine(1, top, top, bottom);
};
Screen.prototype.insertTop = function(top, bottom) {
return this.insertLine(1, top, top, bottom);
};
2013-07-04 04:15:09 +00:00
Screen.prototype.deleteBottom = function(top, bottom) {
return this.clearRegion(0, this.width, bottom, bottom);
};
Screen.prototype.deleteTop = function(top, bottom) {
// Same as: return this.insertBottom(top, bottom);
2013-07-04 04:15:09 +00:00
return this.deleteLine(1, top, top, bottom);
};
2013-07-14 16:58:44 +00:00
// Parse the sides of an element to determine
// whether an element has uniform cells on
// both sides. If it does, we can use CSR to
// optimize scrolling on a scrollable element.
// Not exactly sure how worthwile this is.
// This will cause a performance/cpu-usage hit,
// but will it be less or greater than the
// performance hit of slow-rendering scrollable
// boxes with clean sides?
Screen.prototype.cleanSides = function(el) {
2013-07-17 09:38:11 +00:00
var pos = el.lpos;
2013-07-14 16:58:44 +00:00
if (!pos) {
return false;
}
if (pos._cleanSides != null) {
return pos._cleanSides;
}
if (pos.xi === 0 && pos.xl === this.width) {
return pos._cleanSides = true;
}
2013-07-15 06:44:11 +00:00
if (!this.options.smartCSR) {
return false;
}
2013-07-18 07:37:18 +00:00
// The scrollbar can't update properly, and there's also a
// chance that the scrollbar may get moved around senselessly.
if (this.scrollbar) {
return false;
}
var yi = pos.yi + el.itop
, yl = pos.yl - el.ibottom
, first
2013-07-14 16:58:44 +00:00
, ch
, x
, y;
for (x = pos.xi - 1; x >= 0; x--) {
first = this.olines[yi][x];
for (y = yi; y < yl; y++) {
ch = this.olines[y][x];
if (ch[0] !== first[0] || ch[1] !== first[1]) {
return pos._cleanSides = false;
}
}
}
for (x = pos.xl; x < this.width; x++) {
first = this.olines[yi][x];
for (y = yi; y < yl; y++) {
ch = this.olines[y][x];
if (ch[0] !== first[0] || ch[1] !== first[1]) {
return pos._cleanSides = false;
}
}
}
return pos._cleanSides = true;
};
Screen.prototype.draw = function(start, end) {
var x
, y
, line
, out
, ch
, data
, attr
2013-07-15 18:15:41 +00:00
, fg
, bg
2013-07-22 04:53:10 +00:00
, flags;
var clr
, neq
, xx;
2013-06-06 10:19:52 +00:00
var lx = -1
, ly = -1
, o;
2013-07-22 04:53:10 +00:00
var acs;
// var cx = this.program.x
// , cy = this.program.y
// , ch = this.program.cursorHidden;
//
// if (!ch) this.program.hideCursor();
2013-07-22 04:53:10 +00:00
// this.program.sc('draw');
this.program.sc();
for (y = start; y <= end; y++) {
line = this.lines[y];
2013-06-06 10:19:52 +00:00
o = this.olines[y];
2013-06-06 10:19:52 +00:00
// TODO: Possibly get rid of .dirty altogether.
if (!line.dirty) continue;
line.dirty = false;
out = '';
attr = this.dattr;
2013-06-01 05:29:31 +00:00
for (x = 0; x < this.cols; x++) {
data = line[x][0];
ch = line[x][1];
2013-07-22 04:53:10 +00:00
// Take advantage of xterm's back_color_erase feature by using a
// lookahead. Stop spitting out so many damn spaces. NOTE: Is checking
// the bg for non BCE terminals worth the overhead?
if (ch === ' '
&& ((this.tput && this.tput.bools.back_color_erase)
|| (data & 0x1ff) === (this.dattr & 0x1ff))
&& ((data >> 18) & 8) === ((this.dattr >> 18) & 8)) {
clr = true;
neq = false;
for (xx = x; xx < this.cols; xx++) {
if (line[xx][0] !== data || line[xx][1] !== ' ') {
clr = false;
break;
}
2013-07-22 04:53:10 +00:00
if (line[xx][0] !== o[xx][0] || line[xx][1] !== o[xx][1]) {
neq = true;
}
}
2013-07-22 04:53:10 +00:00
if (clr && neq) {
if (data !== attr) {
out += this.codeAttr(data);
attr = data;
}
out += this.tput.el(0);
2013-07-22 04:53:10 +00:00
for (xx = x; xx < this.cols; xx++) {
o[xx][0] = data;
o[xx][1] = ' ';
}
break;
}
2013-07-22 04:53:10 +00:00
// If there's more than 10 spaces, use EL regardless
// and start over drawing the rest of line. Might
// not be worth it.
// if (!clr && neq && (xx - x) > 10) {
// if (data !== attr) {
// out += this.codeAttr(data);
// attr = data;
// }
// out += this.tput.el(0) + this.tput.cuf(xx - x);
// clr = xx; // tmp
// for (xx = x; xx < this.cols; xx++) {
// o[xx][0] = data;
// o[xx][1] = ' ';
// }
// x = clr - 1;
// continue;
// }
// Skip to the next line if the
// rest of the line is already drawn.
// Comment the break in the first
// xx loop above for this to work.
// Which carries less overhead?
// OR use another for loop:
// for (xx = x; xx < this.cols; xx++) {
// if (line[xx][0] !== o[xx][0] || line[xx][1] !== o[xx][1]) {
// neq = true;
// break;
// }
// }
// if (!neq) {
// attr = data;
// break;
// }
}
// Optimize by comparing the real output
// buffer to the pending output buffer.
2013-06-06 10:19:52 +00:00
if (data === o[x][0] && ch === o[x][1]) {
if (lx === -1) {
lx = x;
ly = y;
}
continue;
} else if (lx !== -1) {
2013-06-11 18:13:49 +00:00
if (this.tput) {
out += y === ly
? this.tput.cuf(x - lx)
: this.tput.cup(y, x);
} else {
out += y === ly
? '\x1b[' + (x - lx) + 'C'
: '\x1b[' + (y + 1) + ';' + (x + 1) + 'H';
}
2013-06-06 10:19:52 +00:00
lx = -1, ly = -1;
}
o[x][0] = data;
o[x][1] = ch;
2013-06-06 09:03:25 +00:00
if (data !== attr) {
if (attr !== this.dattr) {
out += '\x1b[m';
}
if (data !== this.dattr) {
out += '\x1b[';
2013-07-15 18:15:41 +00:00
bg = data & 0x1ff;
fg = (data >> 9) & 0x1ff;
flags = data >> 18;
// bold
if (flags & 1) {
out += '1;';
}
// underline
if (flags & 2) {
out += '4;';
}
// blink
if (flags & 4) {
out += '5;';
}
// inverse
if (flags & 8) {
out += '7;';
}
// invisible
if (flags & 16) {
out += '8;';
}
2013-07-15 18:15:41 +00:00
if (bg !== 0x1ff) {
bg = this._reduceColor(bg);
if (bg < 16) {
if (bg < 8) {
bg += 40;
} else if (bg < 16) {
bg -= 8;
bg += 100;
}
2013-07-15 18:15:41 +00:00
out += bg + ';';
} else {
2013-07-15 18:15:41 +00:00
out += '48;5;' + bg + ';';
}
}
2013-07-15 18:15:41 +00:00
if (fg !== 0x1ff) {
fg = this._reduceColor(fg);
if (fg < 16) {
if (fg < 8) {
fg += 30;
} else if (fg < 16) {
fg -= 8;
fg += 90;
}
2013-07-15 18:15:41 +00:00
out += fg + ';';
} else {
2013-07-15 18:15:41 +00:00
out += '38;5;' + fg + ';';
}
}
if (out[out.length-1] === ';') out = out.slice(0, -1);
out += 'm';
}
}
2013-07-14 08:14:48 +00:00
// Attempt to use ACS for supported characters.
// This is not ideal, but it's how ncurses works.
// There are a lot of terminals that support ACS
// *and UTF8, but do not declare U8. So ACS ends
// up being used (slower than utf8). Terminals
// that do not support ACS and do not explicitly
// support UTF8 get ugly their unicode characters
// replaced with really ugly ascii characters.
// It is possible there is a terminal out there
// somewhere that does not support ACS, but
// supports UTF8, but I imagine it's unlikely.
// Maybe remove !this.tput.unicode check, however,
// this seems to be the way ncurses does it.
if (this.tput) {
2013-07-22 04:53:10 +00:00
if (this.tput.strings.enter_alt_charset_mode) {
if (!this.tput.brokenACS || !this.tput.unicode) {
if (this.tput.acscr[ch]) {
if (acs) {
ch = this.tput.acscr[ch];
} else {
ch = this.tput.smacs()
+ this.tput.acscr[ch]
acs = true;
}
} else if (acs) {
ch = this.tput.rmacs() + ch;
acs = false;
}
}
} else {
// U8 is not consistently correct. Some terminfo's
// terminals that do not declare it may actually
// support utf8 (e.g. urxvt), but if the terminal
// does not declare support for ACS (and U8), chances
// are it does not support UTF8. This is probably
// the "safest" way to do this. Should fix things
// like sun-color.
2013-07-22 04:53:10 +00:00
// if (this.program.term('sun') && ch > '~') {
// if (this.tput.numbers.U8 !== 1 && ch > '~') {
if (this.tput.numbers.U8 !== 1 && this.utoa[ch]) {
ch = this.tput.utoa[ch] || '?';
}
}
}
out += ch;
attr = data;
}
2013-06-06 09:03:25 +00:00
if (attr !== this.dattr) {
out += '\x1b[m';
}
2013-06-11 18:13:49 +00:00
if (this.tput) {
if (out) this.program.write(this.tput.cup(y, 0) + out);
} else {
if (out) this.program.write('\x1b[' + (y + 1) + ';1H' + out);
}
}
// this.program.cup(cy, cx);
// if (ch) this.program.hideCursor();
2013-07-22 04:53:10 +00:00
// this.program.rc('draw', true);
this.program.rc();
};
2013-06-16 09:21:57 +00:00
Screen.prototype._reduceColor = function(col) {
if (this.tput) {
if (col >= 16 && this.tput.colors <= 16) {
2013-07-14 11:43:17 +00:00
col = colors.ccolors[col];
2013-06-16 09:21:57 +00:00
} else if (col >= 8 && this.tput.colors <= 8) {
col -= 8;
} else if (col >= 2 && this.tput.colors <= 2) {
col %= 2;
}
}
return col;
};
2013-07-15 06:44:11 +00:00
// Convert an SGR string to our own attribute format.
Screen.prototype.attrCode = function(code, cur) {
var flags = (cur >> 18) & 0x1ff
, fg = (cur >> 9) & 0x1ff
, bg = cur & 0x1ff
, c
, i;
code = /^\x1b\[([\d;]*)m$/.exec(code);
if (!code) return cur;
code = code[1].split(';');
if (!code[0]) code[0] = '0';
for (i = 0; i < code.length; i++) {
c = +code[i] || 0;
switch (c) {
case 0: // normal
bg = 0x1ff;
fg = 0x1ff;
flags = 0;
break;
case 1: // bold
flags |= 1;
break;
case 22:
flags &= ~1;
break;
case 4: // underline
flags |= 2;
break;
case 24:
flags &= ~2;
break;
case 5: // blink
flags |= 4;
break;
case 25:
flags &= ~4;
break;
case 7: // inverse
flags |= 8;
break;
case 27:
flags &= ~8;
break;
case 8: // invisible
flags |= 16;
break;
case 28:
flags &= ~16;
break;
2013-07-22 04:53:10 +00:00
case 100: // default fg/bg
bg = 0x1ff;
fg = 0x1ff;
break;
2013-07-15 06:44:11 +00:00
default: // color
2013-07-22 04:53:10 +00:00
if (c === 48 && +code[i+1] === 5) {
2013-07-15 06:44:11 +00:00
i += 2;
bg = +code[i];
break;
2013-07-22 04:53:10 +00:00
} else if (c === 48 && +code[i+1] === 2) {
i += 2;
bg = colors.matchColor(
colors.RGBToHex(+code[i], +code[i+1], +code[i+2]));
i += 2;
break;
} else if (c === 38 && +code[i+1] === 5) {
2013-07-15 06:44:11 +00:00
i += 2;
fg = +code[i];
break;
2013-07-22 04:53:10 +00:00
} else if (c === 38 && +code[i+1] === 2) {
i += 2;
fg = colors.matchColor(
colors.RGBToHex(+code[i], +code[i+1], +code[i+2]));
i += 2;
break;
2013-07-15 06:44:11 +00:00
}
if (c >= 40 && c <= 47) {
bg = c - 40;
} else if (c >= 100 && c <= 107) {
bg = c - 100;
bg += 8;
} else if (c === 49) {
bg = 0x1ff;
} else if (c >= 30 && c <= 37) {
fg = c - 30;
} else if (c >= 90 && c <= 97) {
fg = c - 90;
fg += 8;
} else if (c === 39) {
fg = 0x1ff;
}
break;
}
}
return (flags << 18) | (fg << 9) | bg;
};
// Convert our own attribute format to an SGR string.
Screen.prototype.codeAttr = function(code) {
var flags = (code >> 18) & 0x1ff
, fg = (code >> 9) & 0x1ff
, bg = code & 0x1ff
, out = '';
// bold
if (flags & 1) {
out += '1;';
}
// underline
if (flags & 2) {
out += '4;';
}
// blink
if (flags & 4) {
out += '5;';
}
// inverse
if (flags & 8) {
out += '7;';
}
// invisible
if (flags & 16) {
out += '8;';
}
if (bg !== 0x1ff) {
bg = this._reduceColor(bg);
if (bg < 16) {
if (bg < 8) {
bg += 40;
} else if (bg < 16) {
bg -= 8;
bg += 100;
}
out += bg + ';';
} else {
out += '48;5;' + bg + ';';
}
}
if (fg !== 0x1ff) {
fg = this._reduceColor(fg);
if (fg < 16) {
if (fg < 8) {
fg += 30;
} else if (fg < 16) {
fg -= 8;
fg += 90;
}
out += fg + ';';
} else {
out += '38;5;' + fg + ';';
}
}
if (out[out.length-1] === ';') out = out.slice(0, -1);
return '\x1b[' + out + 'm';
};
2013-06-06 09:03:25 +00:00
Screen.prototype.focus = function(offset) {
var shown = this.keyable.filter(function(el) {
2013-06-18 10:08:31 +00:00
return el.visible;
});
2013-07-10 17:48:18 +00:00
if (!shown.length || !offset) return;
var i = this.keyable.indexOf(this.focused);
2013-06-06 09:03:25 +00:00
if (!~i) return;
2013-06-18 10:08:31 +00:00
if (offset > 0) {
while (offset--) {
if (++i > this.keyable.length - 1) i = 0;
if (!this.keyable[i].visible) offset++;
2013-06-06 09:03:25 +00:00
}
} else {
2013-06-18 10:08:31 +00:00
offset = -offset;
while (offset--) {
if (--i < 0) i = this.keyable.length - 1;
if (!this.keyable[i].visible) offset++;
2013-06-18 10:08:31 +00:00
}
2013-06-06 09:03:25 +00:00
}
return this.keyable[i].focus();
2013-06-06 09:03:25 +00:00
};
Screen.prototype.focusPrev = function() {
return this.focus(-1);
};
Screen.prototype.focusNext = function() {
return this.focus(1);
};
2013-06-09 20:52:22 +00:00
Screen.prototype.focusPush = function(el) {
if (this.history.length === 10) {
this.history.shift();
}
this.history.push(el);
2013-07-21 07:12:16 +00:00
el._focus();
2013-06-09 20:52:22 +00:00
};
Screen.prototype.focusLast =
Screen.prototype.focusPop = function() {
return this.history.pop();
};
2013-06-20 18:03:31 +00:00
Screen.prototype.saveFocus = function() {
return this._savedFocus = this.focused;
};
Screen.prototype.restoreFocus = function() {
if (!this._savedFocus) return;
this._savedFocus.focus();
delete this._savedFocus;
return this.focused;
};
2013-06-09 20:52:22 +00:00
Screen.prototype.__defineGetter__('focused', function() {
return this.history[this.history.length-1];
});
Screen.prototype.__defineSetter__('focused', function(el) {
return this.focusPush(el);
});
2013-06-06 10:38:30 +00:00
Screen.prototype.clearRegion = function(xi, xl, yi, yl) {
return this.fillRegion(this.dattr, ' ', xi, xl, yi, yl);
};
Screen.prototype.fillRegion = function(attr, ch, xi, xl, yi, yl) {
2013-06-06 10:38:30 +00:00
var lines = this.lines
2013-06-10 01:25:13 +00:00
, cell
2013-06-06 10:38:30 +00:00
, xx;
for (; yi < yl; yi++) {
if (!lines[yi]) break;
for (xx = xi; xx < xl; xx++) {
cell = lines[yi][xx];
if (!cell) break;
if (attr !== cell[0] || ch !== cell[1]) {
lines[yi][xx][0] = attr;
lines[yi][xx][1] = ch;
lines[yi].dirty = true;
}
}
}
};
2013-07-12 10:11:15 +00:00
Screen.prototype.key = function() {
return this.program.key.apply(this, arguments);
2013-07-04 04:15:09 +00:00
};
2013-07-12 10:11:15 +00:00
Screen.prototype.onceKey = function() {
return this.program.onceKey.apply(this, arguments);
2013-07-10 17:48:18 +00:00
};
Screen.prototype.unkey =
2013-07-12 10:11:15 +00:00
Screen.prototype.removeKey = function() {
return this.program.unkey.apply(this, arguments);
2013-07-10 17:48:18 +00:00
};
2013-07-04 04:15:09 +00:00
Screen.prototype.spawn = function(file, args, options) {
if (!Array.isArray(args)) {
options = args;
args = [];
}
var options = options || {}
, spawn = require('child_process').spawn
, screen = this;
options.stdio = 'inherit';
screen.program.saveCursor();
2013-07-04 04:15:09 +00:00
screen.program.normalBuffer();
screen.program.showCursor();
2013-07-14 15:06:28 +00:00
var listenedMouse = screen._listenedMouse;
if (listenedMouse) {
2013-07-04 04:15:09 +00:00
screen.program.disableMouse();
}
2013-07-14 15:06:28 +00:00
var write = screen.program.output.write;
screen.program.output.write = function() {};
screen.program.input.pause();
screen.program.input.setRawMode(false);
2013-07-04 04:15:09 +00:00
var resume = function() {
if (resume.done) return;
resume.done = true;
2013-07-14 15:06:28 +00:00
screen.program.input.setRawMode(true);
screen.program.input.resume();
screen.program.output.write = write;
2013-07-04 04:15:09 +00:00
screen.program.alternateBuffer();
// Restoring the cursor, or resetting to program.x/y - either works.
// Technically, restoring cursor might be more foolproof.
// screen.program.cup(screen.program.y, screen.program.x);
screen.program.restoreCursor();
2013-07-04 04:15:09 +00:00
screen.program.hideCursor();
2013-07-14 15:06:28 +00:00
if (listenedMouse) {
2013-07-04 04:15:09 +00:00
screen.program.enableMouse();
}
screen.alloc();
screen.render();
};
var ps = spawn(file, args, options);
ps.on('error', resume);
ps.on('exit', resume);
return ps;
};
Screen.prototype.exec = function(file, args, options, callback) {
var callback = arguments[arguments.length-1]
, ps = this.spawn(file, args, options);
ps.on('error', function(err) {
return callback(err, false);
});
ps.on('exit', function(code) {
return callback(null, code === 0);
});
return ps;
};
Screen.prototype.readEditor = function(options, callback) {
if (typeof options === 'string') {
options = { editor: options };
}
if (!callback) {
callback = options;
options = null;
}
options = options || {};
var self = this
, fs = require('fs')
, editor = options.editor || process.env.EDITOR || 'vi'
2013-07-10 17:48:18 +00:00
, name = options.name || process.title || 'blessed'
, rnd = Math.random().toString(36).split('.').pop()
, file = '/tmp/' + name + '.' + rnd
2013-07-04 04:15:09 +00:00
, args = [file]
, opt;
opt = {
stdio: 'inherit',
env: process.env,
cwd: process.env.HOME
};
function writeFile(callback) {
if (!options.value) return callback();
return fs.writeFile(file, options.value, callback);
}
return writeFile(function() {
return self.exec(editor, args, opt, function(err, success) {
if (err) return callback(err);
return fs.readFile(file, 'utf8', function(err, data) {
return fs.unlink(file, function() {
if (err) return callback(err);
return callback(null, data);
});
2013-07-04 04:15:09 +00:00
});
});
});
};
2013-07-12 08:34:32 +00:00
Screen.prototype.setEffects = function(el, fel, over, out, effects, temp) {
if (!effects) return;
var tmp = {};
if (temp) el[temp] = tmp;
if (typeof el !== 'function') {
var _el = el;
el = function() { return _el; };
}
fel.on(over, function() {
Object.keys(effects).forEach(function(key) {
var val = effects[key];
if (val !== null && typeof val === 'object') {
tmp[key] = tmp[key] || {};
Object.keys(val).forEach(function(k) {
var v = val[k];
tmp[key][k] = el()[key][k];
el().style[key][k] = v;
2013-07-12 08:34:32 +00:00
});
return;
}
tmp[key] = el().style[key];
el().style[key] = val;
2013-07-12 08:34:32 +00:00
});
el().screen.render();
});
fel.on(out, function() {
Object.keys(effects).forEach(function(key) {
var val = effects[key];
if (val !== null && typeof val === 'object') {
tmp[key] = tmp[key] || {};
Object.keys(val).forEach(function(k) {
if (tmp[key].hasOwnProperty(k)) {
el().style[key][k] = tmp[key][k];
2013-07-12 08:34:32 +00:00
}
});
return;
}
if (tmp.hasOwnProperty(key)) {
el().style[key] = tmp[key];
2013-07-12 08:34:32 +00:00
}
});
el().screen.render();
});
};
2013-07-14 15:06:28 +00:00
Screen.prototype.sigtstp = function(callback) {
var self = this;
this.program.sigtstp(function() {
self.alloc();
self.render();
if (callback) callback();
});
};
/**
* Element
*/
function Element(options) {
2013-06-11 14:27:50 +00:00
var self = this;
2013-06-14 20:58:54 +00:00
if (!(this instanceof Element)) {
return new Element(options);
}
2013-07-18 22:56:05 +00:00
options = options || {};
Node.call(this, options);
this.name = options.name;
if (options.width === 'shrink' || options.height === 'shrink') {
if (options.width === 'shrink') delete options.width;
if (options.height === 'shrink') delete options.height;
options.shrink = true;
}
this.position = {
left: options.left || 0,
right: options.right || 0,
top: options.top || 0,
bottom: options.bottom || 0,
width: options.width || null,
height: options.height || null
};
this.style = options.style;
if (!this.style) {
this.style = {};
this.style.fg = options.fg;
this.style.bg = options.bg;
this.style.bold = options.bold;
this.style.underline = options.underline;
this.style.blink = options.blink;
this.style.inverse = options.inverse;
this.style.invisible = options.invisible;
}
2013-06-14 05:38:36 +00:00
this.hidden = options.hidden || false;
this.fixed = options.fixed || false;
this.align = options.align || 'left';
this.valign = options.valign || 'top';
2013-06-13 09:22:45 +00:00
this.shrink = options.shrink;
if (typeof options.padding === 'number' || !options.padding) {
options.padding = {
left: options.padding,
top: options.padding,
right: options.padding,
bottom: options.padding
};
}
this.padding = {
left: options.padding.left || 0,
top: options.padding.top || 0,
right: options.padding.right || 0,
bottom: options.padding.bottom || 0
};
2013-06-14 05:38:36 +00:00
this.border = options.border;
2013-06-01 07:06:04 +00:00
if (this.border) {
this.border.type = this.border.type || 'bg';
if (this.border.type === 'ascii') this.border.type = 'line';
2013-06-01 07:06:04 +00:00
this.border.ch = this.border.ch || ' ';
if (!this.border.style) {
2013-07-17 03:28:56 +00:00
this.border.style = this.style.border || {};
this.border.style.fg = this.border.fg;
this.border.style.bg = this.border.bg;
}
this.style.border = this.border.style;
2013-06-01 07:06:04 +00:00
}
2013-06-06 09:03:25 +00:00
if (options.clickable) {
this.screen._listenMouse(this);
}
if (options.input || options.keyable) {
2013-06-06 09:03:25 +00:00
this.screen._listenKeys(this);
}
2013-06-14 01:21:41 +00:00
this.parseTags = options.parseTags || options.tags;
2013-06-20 12:18:04 +00:00
this.setContent(options.content || '');
2013-06-09 20:02:12 +00:00
if (options.label) {
2013-06-13 09:22:45 +00:00
this.append(new Box({
2013-06-09 20:02:12 +00:00
screen: this.screen,
content: options.label,
left: 2,
2013-06-13 09:22:45 +00:00
top: this.border ? 0 : -1,
2013-07-12 12:48:55 +00:00
tags: this.parseTags,
2013-07-17 00:13:16 +00:00
shrink: true,
style: this.style.label
2013-06-09 20:02:12 +00:00
}));
}
2013-06-11 14:27:50 +00:00
// TODO: Possibly move this to Node for screen.on('mouse', ...).
this.on('newListener', function fn(type) {
if (type === 'mouse'
|| type === 'click'
2013-06-16 09:21:57 +00:00
|| type === 'mouseover'
|| type === 'mouseout'
2013-06-11 14:27:50 +00:00
|| type === 'mousedown'
|| type === 'mouseup'
|| type === 'mousewheel'
|| type === 'wheeldown'
|| type === 'wheelup'
2013-06-16 14:31:55 +00:00
|| type === 'mousemove') {
2013-06-11 14:27:50 +00:00
self.screen._listenMouse(self);
2013-07-04 04:15:09 +00:00
} else if (type === 'keypress' || type.indexOf('key ') === 0) {
2013-06-11 14:27:50 +00:00
self.screen._listenKeys(self);
}
});
this.on('resize', function() {
self.parseContent();
});
this.on('attach', function() {
self.parseContent();
});
2013-06-29 17:07:51 +00:00
if (options.hoverBg != null) {
options.hoverEffects = options.hoverEffects || {};
options.hoverEffects.bg = options.hoverBg;
2013-06-29 17:07:51 +00:00
}
if (this.style.hover) {
options.hoverEffects = this.style.hover;
//delete this.style.hover;
}
if (this.style.focus) {
options.focusEffects = this.style.focus;
//delete this.style.focus;
}
// if (options.effects) {
// if (options.effects.hover) options.hoverEffects = options.effects.hover;
// if (options.effects.focus) options.focusEffects = options.effects.focus;
// }
2013-07-12 08:34:32 +00:00
[['hoverEffects', 'mouseover', 'mouseout', '_htemp'],
['focusEffects', 'focus', 'blur', '_ftemp']].forEach(function(props) {
var pname = props[0], over = props[1], out = props[2], temp = props[3];
self.screen.setEffects(self, self, over, out, self.options[pname], temp);
});
if (options.focused) {
this.focus();
}
}
Element.prototype.__proto__ = Node.prototype;
2013-06-25 11:34:10 +00:00
Element.prototype.type = 'element';
2013-07-16 17:33:55 +00:00
Element.prototype.sattr = function(obj, fg, bg) {
var bold = obj.bold
, underline = obj.underline
, blink = obj.blink
, inverse = obj.inverse
, invisible = obj.invisible;
// This used to be a loop, but I decided
// to unroll it for performance's sake.
if (typeof bold === 'function') bold = bold(this);
if (typeof underline === 'function') underline = underline(this);
if (typeof blink === 'function') blink = blink(this);
if (typeof inverse === 'function') inverse = inverse(this);
if (typeof invisible === 'function') invisible = invisible(this);
if (typeof fg === 'function') fg = fg(this);
if (typeof bg === 'function') bg = bg(this);
return ((((invisible ? 16 : 0) << 18)
| ((inverse ? 8 : 0) << 18)
| ((blink ? 4 : 0) << 18)
| ((underline ? 2 : 0) << 18))
| ((bold ? 1 : 0) << 18)
| (colors.convert(fg) << 9))
| colors.convert(bg);
};
2013-06-24 11:16:02 +00:00
Element.prototype.onScreenEvent = function(type, listener) {
var self = this;
if (this.parent) {
this.screen.on(type, listener);
}
this.on('attach', function() {
self.screen.on(type, listener);
});
this.on('detach', function() {
self.screen.removeListener(type, listener);
});
};
2013-06-06 10:38:30 +00:00
Element.prototype.hide = function() {
2013-06-12 08:47:35 +00:00
if (this.hidden) return;
2013-06-06 10:38:30 +00:00
this.hidden = true;
2013-07-04 06:50:50 +00:00
this.clearPos();
2013-06-11 18:13:49 +00:00
this.emit('hide');
var below = this.screen.history[this.screen.history.length-2];
if (below && this.screen.focused === this) below.focus();
2013-06-06 10:38:30 +00:00
};
Element.prototype.show = function() {
2013-06-12 08:47:35 +00:00
if (!this.hidden) return;
2013-06-06 10:38:30 +00:00
this.hidden = false;
2013-06-11 18:13:49 +00:00
this.emit('show');
2013-06-06 10:38:30 +00:00
};
Element.prototype.toggle = function() {
return this.hidden ? this.show() : this.hide();
};
2013-06-06 09:03:25 +00:00
Element.prototype.focus = function() {
this.screen.focused = this;
2013-07-21 07:12:16 +00:00
};
Element.prototype._focus = function() {
var old = this.screen.history[this.screen.history.length-2];
// Find a scrollable ancestor if we have one.
var el = this;
while (el = el.parent) {
if (el.childBase != null) break;
}
// If we're in a scrollable element,
// automatically scroll to the focused element.
if (el) {
var ryi = this.top - el.top - el.itop
, ryl = this.top + this.height - el.top - el.ibottom
, visible = el.height - el.iheight;
if (ryi < el.childBase) {
el.scrollTo(ryi);
this.screen.render();
} else if (ryi >= el.childBase + visible) {
el.scrollTo(ryi);
this.screen.render();
} else if (ryl >= el.childBase + visible) {
el.scrollTo(ryi);
this.screen.render();
}
}
2013-07-21 07:12:16 +00:00
if (old) old.emit('blur', this);
2013-06-06 09:03:25 +00:00
this.emit('focus', old);
this.screen.emit('element blur', old, this);
this.screen.emit('element focus', old, this);
};
2013-06-20 12:18:04 +00:00
Element.prototype.setContent = function(content, noClear) {
2013-06-20 17:07:35 +00:00
this.content = content || '';
this.parseContent();
2013-07-04 06:50:50 +00:00
if (!noClear) this.clearPos();
2013-06-09 18:14:42 +00:00
};
2013-06-20 17:07:35 +00:00
Element.prototype.parseContent = function() {
if (this.detached) return false;
var width = this.width - this.iwidth;
2013-06-20 17:07:35 +00:00
if (this._clines == null
|| this._clines.width !== width
|| this._clines.content !== this.content) {
var content = this.content;
2013-07-16 08:50:42 +00:00
// Possibly keep this for set/get/insert/etcLine
// Although, it may not work since the lines handled
// by those methods need to be wrapped. If the line
// indexes were only within the context of the box
// (e.g. line 0 is always the top of the box) like they
// were before, this may be feasible.
// this._oclines = content.split('\n');
2013-06-20 17:07:35 +00:00
// Could move these 2 lines back to setContent (?)
content = content.replace(/\x1b(?!\[[\d;]*m)/g, '');
2013-07-18 07:37:39 +00:00
content = this._parseTags(content);
content = content.replace(/\t/g, ' ');
2013-07-18 07:37:39 +00:00
this._clines = this._wrapContent(content, width);
2013-06-20 17:07:35 +00:00
this._clines.width = width;
this._clines.content = this.content;
this._clines.attr = this._parseAttr(this._clines);
2013-06-20 17:07:35 +00:00
this._pcontent = this._clines.join('\n');
this.emit('parsed content');
return true;
}
this._clines.attr = this._parseAttr(this._clines) || this._clines.attr;
2013-06-20 17:07:35 +00:00
return false;
};
2013-06-14 01:21:41 +00:00
// Convert `{red-fg}foo{/red-fg}` to `\x1b[31mfoo\x1b[39m`.
Element.prototype._parseTags = function(text) {
if (!this.parseTags) return text;
var program = this.screen.program;
2013-07-16 05:18:31 +00:00
return text.replace(/{(\/?)([\w\-,;!#]*)}/g, function(tag, slash, color) {
2013-06-14 01:21:41 +00:00
if (!color) return slash ? '\x1b[m' : tag;
color = color.replace(/-/g, ' ');
var result = program._attr(color, !slash);
// Parse error. Just return the original text.
if (!/^\x1b\[[\d;]*m$/.test(result)) {
return tag;
}
return result;
});
};
Element.prototype._parseAttr = function(lines) {
var attr = this.sattr(this.style, this.style.fg, this.style.bg)
, attrs = []
, line
, i
, j
, c;
if (lines[0].attr === attr) {
return;
}
2013-07-21 10:31:24 +00:00
if (this.childBase == null) {
return;
}
for (j = 0; j < lines.length; j++) {
line = lines[j];
attrs[j] = attr;
for (i = 0; i < line.length; i++) {
if (line[i] === '\x1b') {
if (c = /^\x1b\[[\d;]*m/.exec(line.substring(i))) {
attr = this.screen.attrCode(c[0], attr);
i += c[0].length - 1;
}
}
}
}
return attrs;
};
2013-07-18 07:37:39 +00:00
Element.prototype._align = function(line, width, align) {
2013-07-18 07:37:18 +00:00
if (!align) return line;
var len = line.replace(/\x1b\[[\d;]*m/g, '').length
, s = width - len;
if (len === 0) return line;
if (s < 0) return line;
if (align === 'center') {
s = Array(((s / 2) | 0) + 1).join(' ');
return s + line + s;
} else if (align === 'right') {
s = Array(s + 1).join(' ');
return s + line;
}
return line;
2013-07-18 07:37:39 +00:00
};
Element.prototype._wrapContent = function(content, width) {
var el = this
, tags = this.parseTags
, state = this.align
, margin = 0;
2013-07-18 07:37:18 +00:00
var lines = content.split('\n')
, out = [];
if (!content) {
2013-07-18 07:37:39 +00:00
out.push(content);
2013-07-18 07:37:18 +00:00
return out;
}
2013-07-18 07:37:39 +00:00
if (el.scrollbar) margin++;
if (el.type === 'textarea') margin++;
if (width > margin) width -= margin;
2013-07-18 07:37:18 +00:00
lines.forEach(function(line) {
var align = state
, cap;
if (tags) {
//if (cap = /^(\x1b\[[\d;]*m)*^{(left|center|right)}/.exec(line)) {
// line = (cap[1] || '') + line.substring(cap[0].length);
// align = state = cap[2] !== 'left'
// ? cap[2]
// : null;
//}
//if (cap = /{\/(left|center|right)}(\x1b\[[\d;]*m)*$/.exec(line)) {
// line = line.slice(0, -cap[0].length) + (cap[2] || '');
// state = null;
//}
if (cap = /^{(left|center|right)}/.exec(line)) {
line = line.substring(cap[0].length);
align = state = cap[1] !== 'left'
? cap[1]
: null;
}
if (cap = /{\/(left|center|right)}$/.exec(line)) {
line = line.slice(0, -cap[0].length);
state = null;
}
}
var total
, i
, part
, esc;
while (line.length > width) {
for (i = 0, total = 0; i < line.length; i++) {
while (line[i] === '\x1b') {
while (line[i] && line[i++] !== 'm');
}
if (!line[i]) break;
if (++total === width) {
// Try to find a space to break on:
if (line[i] !== ' ') {
var j = i;
while (j > i - 10 && j > 0 && line[j] !== ' ') j--;
if (line[j] === ' ') i = j + 1;
else i++;
} else {
i++;
}
break;
}
}
// XXX This shouldn't be required, but is.
i++;
part = line.substring(0, i - 1);
esc = /\x1b[\[\d;]*$/.exec(part);
if (esc) {
part = part.slice(0, -esc[0].length);
line = line.substring(i - 1 - esc[0].length);
2013-07-18 07:37:39 +00:00
out.push(el._align(part, width, align));
2013-07-18 07:37:18 +00:00
} else {
line = line.substring(i - 1);
2013-07-18 07:37:39 +00:00
out.push(el._align(part, width, align));
2013-07-18 07:37:18 +00:00
}
// Make sure we didn't wrap the line to the very end, otherwise
// we get a pointless empty line after a newline.
if (line === '') return;
}
// If only an escape code got cut off, at it to `part`.
if (/^(?:\x1b[\[\d;]*m)+$/.test(line)) {
out[out.length-1] += line;
return;
}
2013-07-18 07:37:39 +00:00
out.push(el._align(line, width, align));
2013-07-18 07:37:18 +00:00
});
return out;
2013-07-18 07:37:39 +00:00
};
2013-07-18 07:37:18 +00:00
2013-06-18 10:08:31 +00:00
Element.prototype.__defineGetter__('visible', function() {
var el = this;
do {
if (el.hidden) return false;
} while (el = el.parent);
return true;
});
Element.prototype.__defineGetter__('detached', function() {
var el = this;
do {
2013-07-03 23:47:55 +00:00
if (el.type === 'screen') return false;
if (!el.parent) return true;
} while (el = el.parent);
return false;
});
2013-07-12 09:59:58 +00:00
Element.prototype.key = function() {
return this.screen.program.key.apply(this, arguments);
2013-07-12 09:59:58 +00:00
};
Element.prototype.onceKey = function() {
return this.screen.program.onceKey.apply(this, arguments);
2013-07-12 09:59:58 +00:00
};
Element.prototype.unkey =
Element.prototype.removeKey = function() {
return this.screen.program.unkey.apply(this, arguments);
2013-07-04 06:50:50 +00:00
};
Element.prototype.clearPos = function() {
2013-07-21 10:31:24 +00:00
// if (this.lpos && !this.lpos.cleared) {
// // optimize by making sure we only clear once.
// this.lpos.cleared = true;
// this.screen.clearRegion(
// this.lpos.xi, this.lpos.xl,
// this.lpos.yi, this.lpos.yl);
// }
if (this.detached) return;
var lpos = this._getCoords();
if (!lpos) return;
this.screen.clearRegion(
lpos.xi, lpos.xl,
lpos.yi, lpos.yl);
2013-07-04 06:50:50 +00:00
};
/**
* Positioning
*/
// The below methods are a bit confusing: basically
// whenever Box.render is called `lpos` gets set on
// the element, an object containing the rendered
// coordinates. Since these don't update if the
// element is moved somehow, they're unreliable in
// that situation. However, if we can guarantee that
// lpos is good and up to date, it can be more
// accurate than the calculated positions below.
// In this case, if the element is being rendered,
// it's guaranteed that the parent will have been
// rendered first, in which case we can use the
// parant's lpos instead of recalculating it's
// position (since that might be wrong because
// it doesn't handle content shrinkage).
Screen.prototype._getPos = function() {
return this;
};
Element.prototype._getPos = function() {
var pos = this.lpos;
assert.ok(pos && !pos.changed);
if (pos.left != null) return pos;
pos.left = pos.xi;
pos.top = pos.yi;
pos.right = this.screen.cols - pos.xl;
pos.bottom = this.screen.rows - pos.yl;
pos.width = pos.xl - pos.xi;
pos.height = pos.yl - pos.yi;
return pos;
};
Element.prototype._bindPosChanged = function() {
function changed() {
self.forDescendants(function(el) {
if (el.lpos) el.lpos.changed = true;
}, true);
2013-06-06 09:03:25 +00:00
}
this.on('move', changed);
// Resize might be tricky because it's
// emitted recursively for a screen resize.
this.on('resize', changed);
this.on('reparent', changed);
};
/**
* Position Getters
*/
Element.prototype._getWidth = function(get) {
var parent = get ? this.parent._getPos() : this.parent;
var width = this.position.width;
2013-06-01 05:29:31 +00:00
if (typeof width === 'string') {
if (width === 'half') width = '50%';
width = +width.slice(0, -1) / 100;
return parent.width * width | 0;
2013-06-01 05:29:31 +00:00
}
// This is for if the element is being streched or shrunken.
// Although the width for shrunken elements is calculated
// in the render function, it may be calculated based on
// the content width, and the content width is initially
// decided by the width the element, so it needs to be
// calculated here.
2013-06-01 05:29:31 +00:00
if (!width) {
2013-06-01 10:47:18 +00:00
var left = this.position.left;
if (typeof left === 'string') {
if (left === 'center') left = '50%';
left = +left.slice(0, -1) / 100;
left = parent.width * left | 0;
2013-06-01 10:47:18 +00:00
}
width = parent.width - this.position.right - left;
2013-06-01 05:29:31 +00:00
}
return width;
};
Element.prototype.__defineGetter__('width', function() {
return this._getWidth(false);
});
Element.prototype._getHeight = function(get) {
var parent = get ? this.parent._getPos() : this.parent;
var height = this.position.height;
2013-06-01 05:29:31 +00:00
if (typeof height === 'string') {
if (height === 'half') height = '50%';
height = +height.slice(0, -1) / 100;
return parent.height * height | 0;
2013-06-01 05:29:31 +00:00
}
// This is for if the element is being streched or shrunken.
// Although the width for shrunken elements is calculated
// in the render function, it may be calculated based on
// the content width, and the content width is initially
// decided by the width the element, so it needs to be
// calculated here.
2013-06-01 05:29:31 +00:00
if (!height) {
2013-06-01 10:47:18 +00:00
var top = this.position.top;
if (typeof top === 'string') {
if (top === 'center') top = '50%';
top = +top.slice(0, -1) / 100;
top = parent.height * top | 0;
2013-06-01 10:47:18 +00:00
}
height = parent.height - this.position.bottom - top;
2013-06-01 05:29:31 +00:00
}
return height;
};
Element.prototype.__defineGetter__('height', function() {
return this._getHeight(false);
});
Element.prototype._getLeft = function(get) {
var parent = get ? this.parent._getPos() : this.parent;
2013-06-01 10:47:18 +00:00
var left = this.position.left;
if (typeof left === 'string') {
if (left === 'center') left = '50%';
left = +left.slice(0, -1) / 100;
left = parent.width * left | 0;
if (this.position.left === 'center') {
left -= this._getWidth(get) / 2 | 0;
}
2013-06-01 10:47:18 +00:00
}
2013-06-06 09:03:25 +00:00
if (this.options.left == null && this.options.right != null) {
return this.screen.cols - this._getWidth(get) - this._getRight(get);
2013-06-06 09:03:25 +00:00
}
return (parent.left || 0) + left;
};
Element.prototype.__defineGetter__('left', function() {
return this._getLeft(false);
2013-06-01 10:47:18 +00:00
});
Element.prototype._getRight = function(get) {
var parent = get ? this.parent._getPos() : this.parent;
if (this.options.right == null && this.options.left != null) {
return this.screen.cols - (this._getLeft(get) + this._getWidth(get));
}
return (parent.right || 0) + this.position.right;
};
Element.prototype.__defineGetter__('right', function() {
return this._getRight(false);
2013-06-01 10:47:18 +00:00
});
Element.prototype._getTop = function(get) {
var parent = get ? this.parent._getPos() : this.parent;
2013-06-01 10:47:18 +00:00
var top = this.position.top;
if (typeof top === 'string') {
if (top === 'center') top = '50%';
top = +top.slice(0, -1) / 100;
top = parent.height * top | 0;
if (this.position.top === 'center') {
top -= this._getHeight(get) / 2 | 0;
}
2013-06-01 10:47:18 +00:00
}
2013-06-06 09:03:25 +00:00
if (this.options.top == null && this.options.bottom != null) {
return this.screen.rows - this._getHeight(get) - this._getBottom(get);
2013-06-06 09:03:25 +00:00
}
return (parent.top || 0) + top;
};
Element.prototype.__defineGetter__('top', function() {
return this._getTop(false);
2013-06-01 10:47:18 +00:00
});
Element.prototype._getBottom = function(get) {
var parent = get ? this.parent._getPos() : this.parent;
if (this.options.bottom == null && this.options.top != null) {
return this.screen.rows - (this._getTop(get) + this._getHeight(get));
}
return (parent.bottom || 0) + this.position.bottom;
};
Element.prototype.__defineGetter__('bottom', function() {
return this._getBottom(false);
});
Element.prototype.__defineGetter__('rleft', function() {
return this.left - this.parent.left;
});
Element.prototype.__defineGetter__('rright', function() {
return this.right - this.parent.right;
});
Element.prototype.__defineGetter__('rtop', function() {
return this.top - this.parent.top;
});
Element.prototype.__defineGetter__('rbottom', function() {
return this.bottom - this.parent.bottom;
2013-06-01 10:47:18 +00:00
});
/**
* Position Setters
*/
// NOTE:
// For right, bottom, rright, and rbottom:
// If position.bottom is null, we could simply set top instead.
// But it wouldn't replicate bottom behavior appropriately if
// the parent was resized, etc.
Element.prototype.__defineSetter__('width', function(val) {
if (this.position.width === val) return;
this.emit('resize');
this.clearPos();
return this.options.width = this.position.width = val;
});
Element.prototype.__defineSetter__('height', function(val) {
if (this.position.height === val) return;
this.emit('resize');
this.clearPos();
return this.options.height = this.position.height = val;
});
2013-06-11 14:09:57 +00:00
Element.prototype.__defineSetter__('left', function(val) {
if (typeof val === 'string') {
if (val === 'center') {
val = this.screen.width / 2 | 0;
val -= this.width / 2 | 0;
} else {
val = +val.slice(0, -1) / 100;
val = this.screen.width * val | 0;
}
}
2013-06-12 19:31:48 +00:00
val -= this.parent.left;
if (this.position.left === val) return;
2013-06-11 14:09:57 +00:00
this.emit('move');
2013-07-04 06:50:50 +00:00
this.clearPos();
2013-06-12 19:31:48 +00:00
return this.options.left = this.position.left = val;
2013-06-11 14:09:57 +00:00
});
Element.prototype.__defineSetter__('right', function(val) {
2013-06-12 19:31:48 +00:00
val -= this.parent.right;
if (this.position.right === val) return;
2013-06-11 14:09:57 +00:00
this.emit('move');
2013-07-04 06:50:50 +00:00
this.clearPos();
2013-06-12 19:31:48 +00:00
return this.options.right = this.position.right = val;
2013-06-11 14:09:57 +00:00
});
Element.prototype.__defineSetter__('top', function(val) {
if (typeof val === 'string') {
if (val === 'center') {
val = this.screen.height / 2 | 0;
val -= this.height / 2 | 0;
} else {
val = +val.slice(0, -1) / 100;
val = this.screen.height * val | 0;
}
}
2013-06-12 19:31:48 +00:00
val -= this.parent.top;
if (this.position.top === val) return;
2013-06-11 14:09:57 +00:00
this.emit('move');
2013-07-04 06:50:50 +00:00
this.clearPos();
2013-06-12 19:31:48 +00:00
return this.options.top = this.position.top = val;
2013-06-11 14:09:57 +00:00
});
Element.prototype.__defineSetter__('bottom', function(val) {
2013-06-12 19:31:48 +00:00
val -= this.parent.bottom;
if (this.position.bottom === val) return;
2013-06-11 14:09:57 +00:00
this.emit('move');
2013-07-04 06:50:50 +00:00
this.clearPos();
2013-06-12 19:31:48 +00:00
return this.options.bottom = this.position.bottom = val;
2013-06-11 14:09:57 +00:00
});
Element.prototype.__defineSetter__('rleft', function(val) {
2013-06-12 19:31:48 +00:00
if (this.position.left === val) return;
2013-06-11 14:09:57 +00:00
this.emit('move');
2013-07-04 06:50:50 +00:00
this.clearPos();
2013-06-11 14:09:57 +00:00
return this.options.left = this.position.left = val;
});
Element.prototype.__defineSetter__('rright', function(val) {
2013-06-12 19:31:48 +00:00
if (this.position.right === val) return;
2013-06-11 14:09:57 +00:00
this.emit('move');
2013-07-04 06:50:50 +00:00
this.clearPos();
2013-06-11 14:09:57 +00:00
return this.options.right = this.position.right = val;
});
Element.prototype.__defineSetter__('rtop', function(val) {
2013-06-12 19:31:48 +00:00
if (this.position.top === val) return;
2013-06-11 14:09:57 +00:00
this.emit('move');
2013-07-04 06:50:50 +00:00
this.clearPos();
2013-06-11 14:09:57 +00:00
return this.options.top = this.position.top = val;
});
Element.prototype.__defineSetter__('rbottom', function(val) {
2013-06-12 19:31:48 +00:00
if (this.position.bottom === val) return;
2013-06-11 14:09:57 +00:00
this.emit('move');
2013-07-04 06:50:50 +00:00
this.clearPos();
2013-06-11 14:09:57 +00:00
return this.options.bottom = this.position.bottom = val;
});
2013-07-18 19:52:56 +00:00
Element.prototype.__defineGetter__('ileft', function() {
return (this.border ? 1 : 0) + this.padding.left;
2013-07-18 19:52:56 +00:00
});
Element.prototype.__defineGetter__('itop', function() {
return (this.border ? 1 : 0) + this.padding.top;
2013-07-18 19:52:56 +00:00
});
Element.prototype.__defineGetter__('iright', function() {
return (this.border ? 1 : 0) + this.padding.right;
2013-07-18 19:52:56 +00:00
});
Element.prototype.__defineGetter__('ibottom', function() {
return (this.border ? 1 : 0) + this.padding.bottom;
2013-07-18 19:52:56 +00:00
});
Element.prototype.__defineGetter__('iwidth', function() {
return (this.border ? 2 : 0) + this.padding.left + this.padding.right;
2013-07-18 19:52:56 +00:00
});
Element.prototype.__defineGetter__('iheight', function() {
return (this.border ? 2 : 0) + this.padding.top + this.padding.bottom;
});
Element.prototype.__defineGetter__('tpadding', function() {
return this.padding.left + this.padding.top
+ this.padding.right + this.padding.bottom;
2013-07-18 19:52:56 +00:00
});
/**
* Box
*/
function Box(options) {
2013-06-14 20:58:54 +00:00
if (!(this instanceof Box)) {
return new Box(options);
}
2013-07-18 22:56:05 +00:00
options = options || {};
Element.call(this, options);
}
Box.prototype.__proto__ = Element.prototype;
2013-06-25 11:34:10 +00:00
Box.prototype.type = 'box';
Box.prototype._getShrinkSize = function() {
// TODO: Possibly move this to parseContent.
2013-06-16 09:21:57 +00:00
return {
2013-06-20 12:18:04 +00:00
height: this._clines.length,
width: this._clines.reduce(function(current, line) {
line = line.replace(/\x1b\[[\d;]*m/g, '');
2013-06-16 09:21:57 +00:00
return line.length > current
2013-06-20 12:18:04 +00:00
? line.length
2013-06-16 09:21:57 +00:00
: current;
}, 0)
};
};
2013-07-17 08:57:30 +00:00
Box.prototype._getShrinkBox = function(xi, xl, yi, yl) {
2013-07-17 08:52:21 +00:00
if (!this.children.length) {
return { xi: xi, xl: xi, yi: yi, yl: yi };
2013-07-17 08:52:21 +00:00
}
2013-07-17 10:03:50 +00:00
var i, el, ret, mxi = 0, mxl = 0, myi = 0, myl = 0;
2013-07-17 08:52:21 +00:00
for (i = 0; i < this.children.length; i++) {
el = this.children[i];
ret = el._getCoords();
if (!ret) continue;
2013-07-17 08:52:21 +00:00
if (ret.xi < mxi) mxi = ret.xi;
if (ret.xl > mxl) mxl = ret.xl;
if (ret.yi < myi) myi = ret.yi;
if (ret.yl > myl) myl = ret.yl;
}
2013-07-17 10:03:50 +00:00
if (this.options.width == null
&& (this.options.left == null
|| this.options.right == null)) {
if (this.options.left == null && this.options.right != null) {
xi = xl - (mxl - mxi);
xi -= this.padding.left + this.padding.right;
2013-07-17 10:03:50 +00:00
} else {
xl = mxl;
xl += this.padding.left + this.padding.right;
2013-07-17 10:03:50 +00:00
}
2013-07-17 08:52:21 +00:00
}
2013-07-17 10:03:50 +00:00
if (this.options.height == null
&& (this.options.top == null
|| this.options.bottom == null)
&& this.childBase == null) {
if (this.options.top == null && this.options.bottom != null) {
yi = yl - (myl - myi);
yi -= this.padding.top + this.padding.bottom;
2013-07-17 10:03:50 +00:00
} else {
yl = myl;
yl += this.padding.top + this.padding.bottom;
2013-07-17 10:03:50 +00:00
}
2013-07-17 08:52:21 +00:00
}
2013-07-17 08:57:30 +00:00
return { xi: xi, xl: xl, yi: yi, yl: yl };
2013-07-17 08:52:21 +00:00
};
Box.prototype._getShrinkContent = function(xi, xl, yi, yl) {
var hw = this._getShrinkSize()
2013-07-17 08:52:21 +00:00
, h = hw.height
2013-07-17 10:03:50 +00:00
, w = hw.width;
2013-07-17 08:52:21 +00:00
if (this.options.width == null
&& (this.options.left == null
|| this.options.right == null)) {
if (this.options.left == null && this.options.right != null) {
xi = xl - w - this.iwidth;
2013-07-17 08:52:21 +00:00
} else {
xl = xi + w + this.iwidth;
2013-07-17 08:52:21 +00:00
}
}
if (this.options.height == null
&& (this.options.top == null
|| this.options.bottom == null)
&& this.childBase == null) {
if (this.options.top == null && this.options.bottom != null) {
yi = yl - h - this.iheight;
2013-07-17 08:52:21 +00:00
} else {
yl = yi + h + this.iheight;
2013-07-17 08:52:21 +00:00
}
}
2013-07-17 08:57:30 +00:00
return { xi: xi, xl: xl, yi: yi, yl: yl };
2013-07-17 08:52:21 +00:00
};
Box.prototype._getShrink = function(xi, xl, yi, yl) {
2013-07-17 08:57:30 +00:00
var shrinkBox = this._getShrinkBox(xi, xl, yi, yl)
, shrinkContent = this._getShrinkContent(xi, xl, yi, yl)
2013-07-17 10:03:50 +00:00
, xll = xl
, yll = yl;
2013-07-17 08:52:21 +00:00
2013-07-17 10:03:50 +00:00
// Figure out which one is bigger and use it.
if (shrinkBox.xl - shrinkBox.xi > shrinkContent.xl - shrinkContent.xi) {
xi = shrinkBox.xi;
xl = shrinkBox.xl;
2013-07-17 08:52:21 +00:00
} else {
xi = shrinkContent.xi;
xl = shrinkContent.xl;
2013-07-17 08:52:21 +00:00
}
if (shrinkBox.yl - shrinkBox.yi > shrinkContent.yl - shrinkContent.yi) {
yi = shrinkBox.yi;
yl = shrinkBox.yl;
2013-07-17 08:52:21 +00:00
} else {
yi = shrinkContent.yi;
yl = shrinkContent.yl;
2013-07-17 08:52:21 +00:00
}
2013-07-17 10:03:50 +00:00
// Recenter shrunken elements.
if (xl < xll && this.options.left === 'center') {
xll = (xll - xl) / 2 | 0;
xi += xll;
xl += xll;
}
if (yl < yll && this.options.top === 'center') {
yll = (yll - yl) / 2 | 0;
yi += yll;
yl += yll;
}
2013-07-17 08:57:30 +00:00
return { xi: xi, xl: xl, yi: yi, yl: yl };
2013-07-17 08:52:21 +00:00
};
Box.prototype._getCoords = function(get) {
2013-06-06 10:38:30 +00:00
if (this.hidden) return;
var xi = this._getLeft(get)
, xl = xi + this._getWidth(get)
, yi = this._getTop(get)
, yl = yi + this._getHeight(get)
2013-07-19 06:57:17 +00:00
, ryi
, ryl
, visible
2013-07-19 06:57:17 +00:00
, coords
, v;
// Find a scrollable ancestor if we have one.
var el = this;
while (el = el.parent) {
if (el.childBase != null) break;
}
// Check to make sure we're visible and
// inside of the visible scroll area.
2013-07-21 10:31:24 +00:00
// NOTE: Lists have a property where only
// the list items are obfuscated.
if (el && (!el.items || ~el.items.indexOf(this))) {
2013-07-21 10:31:24 +00:00
// This is unfortunate because this._getTop(true) is based on its
// this.parent.lpos.yi - which was saved after it's render() **with the
// childBase subtracted!!!!*** This means nested elements within
// a scrollable box are screwy unless we do this.
var cb = el.childBase;
if (get) {
var el_ = this;
// Do we need to get every parent?
while (el_ = el_.parent) {
if (el_ === el) break;
yi += el_.lpos.cb;
yl += el_.lpos.cb;
}
}
ryi = yi - el._getTop(get) - el.itop;
ryl = yl - el._getTop(get) - el.ibottom;
visible = el._getHeight(get) - el.iheight;
2013-07-21 10:31:24 +00:00
// if (ryi < el.childBase) {
// if (ryl > el.childBase) {
// // Is partially covered above.
// v = ryl - el.childBase;
// yi += (ryl - ryi) - v;
// } else {
// // Is above.
// return;
// }
// } else if (ryi >= el.childBase + visible) {
// // Is below.
// return;
// } else if (ryl >= el.childBase + visible) {
// // Is partially covered below.
// v = el.childBase + visible + (yl - yi) - ryl;
// yl = yi + v;
// }
if (ryi < el.childBase) {
2013-07-21 10:31:24 +00:00
// Is above.
return;
} else if (ryi >= el.childBase + visible) {
2013-07-19 06:57:17 +00:00
// Is below.
2013-06-06 09:03:25 +00:00
return;
}
yi -= el.childBase;
yl -= el.childBase;
2013-06-06 09:03:25 +00:00
}
// Attempt to shrink the element base on the
// size of the content and child elements.
2013-06-16 09:21:57 +00:00
if (this.shrink) {
2013-07-18 08:54:41 +00:00
coords = this._getShrink(xi, xl, yi, yl);
xi = coords.xi, xl = coords.xl;
yi = coords.yi, yl = coords.yl;
2013-07-17 08:20:37 +00:00
}
2013-07-18 08:54:41 +00:00
return {
2013-07-17 08:57:30 +00:00
xi: xi,
2013-06-06 09:03:25 +00:00
xl: xl,
2013-07-17 08:57:30 +00:00
yi: yi,
2013-07-21 10:31:24 +00:00
yl: yl,
cb: cb || 0
2013-06-06 09:03:25 +00:00
};
2013-07-18 08:54:41 +00:00
};
// Here be dragons.
Box.prototype.render = function() {
this.parseContent();
2013-06-06 09:03:25 +00:00
var coords = this._getCoords(true);
2013-07-18 08:54:41 +00:00
if (!coords) return;
2013-06-06 10:38:30 +00:00
2013-07-18 08:54:41 +00:00
var lines = this.screen.lines
, xi = coords.xi
, xl = coords.xl
, yi = coords.yi
, yl = coords.yl
, x
, y
, cell
, attr
, ch
, content = this._pcontent
, ci = this.contentIndex || 0
, battr
, dattr
, c
, rtop
, visible
, i;
2013-07-18 08:54:41 +00:00
this.lpos = coords;
2013-06-06 14:24:03 +00:00
dattr = this.sattr(this.style, this.style.fg, this.style.bg);
2013-06-06 14:24:03 +00:00
attr = dattr;
2013-06-06 12:57:50 +00:00
// If we're in a scrollable text box, check to
// see which attributes this line starts with.
2013-07-21 10:31:24 +00:00
if (this.childBase != null) {
attr = this._clines.attr[Math.min(this.childBase, this._clines.length - 1)];
2013-06-10 01:19:32 +00:00
}
if (this.border) xi++, xl--, yi++, yl--;
2013-06-13 10:30:21 +00:00
// If we have padding/valign, that means the
// content-drawing loop will skip a few cells/lines.
// To deal with this, we can just fill the whole thing
// ahead of time. This could be optimized.
if (this.tpadding || (this.valign && this.valign !== 'top')) {
2013-07-17 08:57:30 +00:00
this.screen.fillRegion(dattr, ' ', xi, xl, yi, yl);
}
if (this.tpadding) {
xi += this.padding.left, xl -= this.padding.right;
yi += this.padding.top, yl -= this.padding.bottom;
2013-06-14 00:02:02 +00:00
}
// Determine where to place the text if it's vertically aligned.
if (this.valign === 'middle' || this.valign === 'bottom') {
2013-07-17 08:57:30 +00:00
visible = yl - yi;
if (this._clines.length < visible) {
if (this.valign === 'middle') {
visible = visible / 2 | 0;
visible -= this._clines.length / 2 | 0;
} else if (this.valign === 'bottom') {
visible -= this._clines.length;
}
2013-07-17 08:57:30 +00:00
yi += visible;
}
}
// Draw the content and background.
2013-07-17 08:57:30 +00:00
for (y = yi; y < yl; y++) {
if (!lines[y]) break;
for (x = xi; x < xl; x++) {
cell = lines[y][x];
if (!cell) break;
2013-06-11 20:01:52 +00:00
ch = content[ci++] || ' ';
2013-06-06 14:24:03 +00:00
// Handle escape codes.
while (ch === '\x1b') {
2013-06-14 05:38:36 +00:00
if (c = /^\x1b\[[\d;]*m/.exec(content.substring(ci - 1))) {
2013-06-06 14:24:03 +00:00
ci += c[0].length - 1;
2013-07-15 06:44:11 +00:00
attr = this.screen.attrCode(c[0], attr);
2013-06-11 20:01:52 +00:00
ch = content[ci] || ' ';
2013-06-06 14:24:03 +00:00
ci++;
2013-06-14 05:38:36 +00:00
} else {
break;
2013-06-06 12:57:50 +00:00
}
}
2013-06-06 12:57:50 +00:00
// Handle newlines.
2013-06-06 14:24:03 +00:00
if (ch === '\t') ch = ' ';
2013-06-06 12:57:50 +00:00
if (ch === '\n' || ch === '\r') {
2013-06-16 09:21:57 +00:00
// If we're on the first cell and we find a newline and the last cell
// of the last line was not a newline, let's just treat this like the
// newline was already "counted".
2013-07-17 08:57:30 +00:00
if (x === xi && y !== yi && content[ci-2] !== '\n') {
x--;
2013-06-16 09:21:57 +00:00
continue;
}
// We could use fillRegion here, name the
// outer loop, and continue to it instead.
2013-06-06 12:57:50 +00:00
ch = ' ';
2013-07-17 08:57:30 +00:00
for (; x < xl; x++) {
cell = lines[y][x];
if (!cell) break;
if (attr !== cell[0] || ch !== cell[1]) {
2013-07-17 08:57:30 +00:00
lines[y][x][0] = attr;
lines[y][x][1] = ch;
lines[y].dirty = true;
}
2013-06-06 12:57:50 +00:00
}
continue;
}
if (attr !== cell[0] || ch !== cell[1]) {
2013-07-17 08:57:30 +00:00
lines[y][x][0] = attr;
lines[y][x][1] = ch;
lines[y].dirty = true;
}
}
}
// Draw the scrollbar.
2013-07-19 06:57:17 +00:00
if (this.scrollbar) {
2013-07-21 10:31:24 +00:00
i = Math.max(this._clines.length + 1,
this._scrollBottom() + (yl - yi) + 1);
2013-07-19 06:57:17 +00:00
}
if (this.scrollbar && (yl - yi) < i) {
2013-07-19 06:57:17 +00:00
i -= yl - yi;
2013-07-17 08:57:30 +00:00
x = xl - 1;
if (this.scrollbar.ignoreBorder && this.border) x++;
2013-07-21 10:31:24 +00:00
y = this.childBase + this.childOffset;
2013-07-19 06:57:17 +00:00
y = y / i;
y = yi + ((yl - yi) * y | 0);
2013-07-17 08:57:30 +00:00
cell = lines[y] && lines[y][x];
if (cell) {
ch = this.scrollbar.ch || ' ';
2013-07-17 17:01:54 +00:00
attr = this.sattr(this.style.scrollbar,
this.style.scrollbar.fg || this.style.fg,
this.style.scrollbar.bg || this.style.bg);
if (attr !== cell[0] || ch !== cell[1]) {
2013-07-17 08:57:30 +00:00
lines[y][x][0] = attr;
lines[y][x][1] = ch;
lines[y].dirty = true;
}
}
}
if (this.border) xi--, xl++, yi--, yl++;
2013-06-14 00:02:02 +00:00
if (this.tpadding) {
xi -= this.padding.left, xl += this.padding.right;
yi -= this.padding.top, yl += this.padding.bottom;
2013-06-14 00:02:02 +00:00
}
// Draw the border.
2013-06-13 10:30:21 +00:00
if (this.border) {
2013-07-18 08:54:41 +00:00
battr = this.sattr(this.style.border,
this.style.border.fg, this.style.border.bg);
2013-07-17 08:57:30 +00:00
y = yi;
for (x = xi; x < xl; x++) {
if (!lines[y]) break;
if (this.border.type === 'line') {
2013-07-17 08:57:30 +00:00
if (x === xi) ch = '┌';
else if (x === xl - 1) ch = '┐';
2013-06-13 10:30:21 +00:00
else ch = '─';
} else if (this.border.type === 'bg') {
ch = this.border.ch;
}
2013-07-17 08:57:30 +00:00
cell = lines[y][x];
if (!cell) break;
if (battr !== cell[0] || ch !== cell[1]) {
2013-07-17 08:57:30 +00:00
lines[y][x][0] = battr;
lines[y][x][1] = ch;
lines[y].dirty = true;
2013-06-13 10:30:21 +00:00
}
}
2013-07-17 08:57:30 +00:00
y = yi + 1;
for (; y < yl; y++) {
if (!lines[y]) break;
if (this.border.type === 'line') {
ch = '│';
} else if (this.border.type === 'bg') {
ch = this.border.ch;
}
2013-07-17 08:57:30 +00:00
cell = lines[y][xi];
if (!cell) break;
if (battr !== cell[0] || ch !== cell[1]) {
2013-07-17 08:57:30 +00:00
lines[y][xi][0] = battr;
lines[y][xi][1] = ch;
lines[y].dirty = true;
}
2013-07-17 08:57:30 +00:00
cell = lines[y][xl - 1];
if (!cell) break;
if (battr !== cell[0] || ch !== cell[1]) {
2013-07-17 08:57:30 +00:00
lines[y][xl - 1][0] = battr;
lines[y][xl - 1][1] = ch;
lines[y].dirty = true;
}
2013-06-13 10:30:21 +00:00
}
2013-07-17 08:57:30 +00:00
y = yl - 1;
for (x = xi; x < xl; x++) {
if (!lines[y]) break;
if (this.border.type === 'line') {
2013-07-17 08:57:30 +00:00
if (x === xi) ch = '└';
else if (x === xl - 1) ch = '┘';
2013-06-13 10:30:21 +00:00
else ch = '─';
} else if (this.border.type === 'bg') {
ch = this.border.ch;
}
2013-07-17 08:57:30 +00:00
cell = lines[y][x];
if (!cell) break;
if (battr !== cell[0] || ch !== cell[1]) {
2013-07-17 08:57:30 +00:00
lines[y][x][0] = battr;
lines[y][x][1] = ch;
lines[y].dirty = true;
2013-06-13 10:30:21 +00:00
}
}
}
this.children.forEach(function(el) {
if (el.screen._ci !== -1) {
el.index = el.screen._ci++;
}
el.render();
});
2013-06-01 11:08:18 +00:00
2013-07-18 08:54:41 +00:00
return coords;
};
2013-06-20 16:48:12 +00:00
// Create a much more efficient rendering by using insert-line,
// delete-line, and change screen region codes when possible.
2013-06-25 11:34:10 +00:00
// NOTE: If someone does:
// box.left = box.right = 0;
// screen.render();
// box.left++;
// box.insertTop('foobar');
// Things will break because we're using lpos instead of _getCoords().
2013-07-17 09:38:11 +00:00
// Maybe lpos could be updated on .left, .right, etc setters?
2013-07-12 08:52:14 +00:00
Box.prototype.insertLine = function(i, line) {
2013-07-17 09:38:11 +00:00
var pos = this.lpos || 0;
if (typeof line === 'string') line = [line];
if (i > this._clines.length) {
for (var j = this._clines.length; j < i; j++) this._clines.push('');
}
i = Math.max(i, 0);
//i = Math.min(i, this._clines.length);
var height = pos.yl - pos.yi - this.iheight
, base = this.childBase || 0
, visible = i >= base && i - base < height;
if (pos && visible && this.screen.cleanSides(this)) {
this.screen.insertLine(line.length,
pos.yi + this.itop + i - base,
pos.yi,
pos.yl - this.ibottom - 1);
2013-07-12 08:52:14 +00:00
}
line.forEach(function(line, j) {
this._clines.splice(i + j, 0, line);
}, this);
2013-07-12 08:52:14 +00:00
this.setContent(this._clines.join('\n'), true);
};
Box.prototype.deleteLine = function(i, n) {
2013-07-17 09:38:11 +00:00
var pos = this.lpos || 0;
var reset = true
, n = n || 1;
i = Math.max(i, 0);
i = Math.min(i, this._clines.length - 1);
var height = pos.yl - pos.yi - this.iheight
, base = this.childBase || 0
, visible = i >= base && i - base < height;
if (pos && visible && this.screen.cleanSides(this)) {
this.screen.deleteLine(n,
pos.yi + this.itop + i - base,
pos.yi,
pos.yl - this.ibottom - 1);
2013-07-12 08:52:14 +00:00
reset = false;
}
while (n--) {
this._clines.splice(i, 1);
}
2013-07-12 08:52:14 +00:00
this.setContent(this._clines.join('\n'), reset);
};
Box.prototype.insertTop = function(line) {
return this.insertLine((this.childBase || 0) + 0, line);
2013-07-12 08:52:14 +00:00
};
Box.prototype.insertBottom = function(line) {
return this.insertLine((this.childBase || 0)
+ this.height - this.iheight, line);
2013-07-12 08:52:14 +00:00
};
Box.prototype.deleteTop = function() {
return this.deleteLine((this.childBase || 0) + 0);
2013-07-12 08:52:14 +00:00
};
Box.prototype.deleteBottom = function() {
return this.deleteLine((this.childBase || 0)
+ this.height - this.iheight);
2013-07-12 08:52:14 +00:00
};
Box.prototype.setLine = function(i, line) {
if (i > this._clines.length) {
for (var j = this._clines.length; j < i; j++) this._clines.push('');
}
2013-07-12 08:52:14 +00:00
i = Math.max(i, 0);
//i = Math.min(i, this._clines.length);
this._clines[(this.childBase || 0) + i] = line;
2013-07-12 08:52:14 +00:00
return this.setContent(this._clines.join('\n'), true);
};
Box.prototype.getLine = function(i) {
i = Math.max(i, 0);
i = Math.min(i, this._clines.length);
return this._clines[(this.childBase || 0) + i];
2013-07-12 08:52:14 +00:00
};
Box.prototype.clearLine = function(i) {
i = Math.min(i, this._clines.length - 1);
2013-07-12 08:52:14 +00:00
return this.setLine(i, '');
};
/**
* Text
*/
function Text(options) {
2013-07-12 08:34:32 +00:00
if (!(this instanceof Text)) {
return new Text(options);
}
2013-07-18 22:56:05 +00:00
options = options || {};
options.shrink = true;
Box.call(this, options);
}
Text.prototype.__proto__ = Box.prototype;
2013-06-06 09:03:25 +00:00
/**
* Line
*/
function Line(options) {
2013-07-14 13:05:42 +00:00
var self = this;
2013-06-14 20:58:54 +00:00
if (!(this instanceof Line)) {
return new Line(options);
}
2013-07-18 22:56:05 +00:00
options = options || {};
2013-06-06 09:03:25 +00:00
var orientation = options.orientation || 'vertical';
delete options.orientation;
if (orientation === 'vertical') {
options.width = 1;
} else {
options.height = 1;
}
this.ch = !options.type || options.type === 'line'
2013-07-14 13:05:42 +00:00
? orientation === 'horizontal' ? '─' : '│'
: options.ch || ' ';
2013-06-06 09:03:25 +00:00
options.border = {
type: 'bg',
2013-07-14 13:05:42 +00:00
get ch() { return self.ch; },
set ch(c) { self.ch = c; }
2013-06-06 09:03:25 +00:00
};
2013-07-17 03:28:56 +00:00
options.style = {
fg: this.style ? this.style.fg : this.fg,
bg: this.style ? this.style.bg : this.bg,
border: {
get fg() { return self.style.fg; },
get bg() { return self.style.bg; },
set fg(c) { self.style.fg = c; },
set bg(c) { self.style.bg = c; }
}
};
2013-06-06 09:03:25 +00:00
delete options.ch;
Box.call(this, options);
}
Line.prototype.__proto__ = Box.prototype;
2013-06-25 11:34:10 +00:00
Line.prototype.type = 'line';
/**
* ScrollableBox
*/
function ScrollableBox(options) {
2013-07-21 10:31:24 +00:00
var self = this;
2013-06-14 20:58:54 +00:00
if (!(this instanceof ScrollableBox)) {
return new ScrollableBox(options);
}
2013-07-18 22:56:05 +00:00
options = options || {};
Box.call(this, options);
2013-06-06 09:03:25 +00:00
this.scrollable = true;
this.childOffset = 0;
2013-06-03 03:29:26 +00:00
this.childBase = 0;
2013-07-21 10:31:24 +00:00
this.contentIndex = 0;
2013-06-06 09:03:25 +00:00
this.baseLimit = options.baseLimit || Infinity;
this.alwaysScroll = options.alwaysScroll;
this.scrollbar = options.scrollbar;
if (this.scrollbar) {
this.scrollbar.ch = this.scrollbar.ch || ' ';
2013-07-19 06:57:17 +00:00
this.style.scrollbar = this.style.scrollbar || this.scrollbar.style;
if (!this.style.scrollbar) {
this.style.scrollbar = {};
this.style.scrollbar.fg = this.scrollbar.fg;
this.style.scrollbar.bg = this.scrollbar.bg;
this.style.scrollbar.bold = this.scrollbar.bold;
this.style.scrollbar.underline = this.scrollbar.underline;
this.style.scrollbar.inverse = this.scrollbar.inverse;
this.style.scrollbar.invisible = this.scrollbar.invisible;
}
this.scrollbar.style = this.style.scrollbar;
}
2013-07-21 10:31:24 +00:00
if (options.mouse) {
this.on('wheeldown', function(data) {
self.scroll(self.height / 2 | 0 || 1);
self.screen.render();
});
this.on('wheelup', function(data) {
self.scroll(-(self.height / 2 | 0) || -1);
self.screen.render();
});
}
if (options.keys && !options.ignoreKeys) {
this.on('keypress', function(ch, key) {
if (key.name === 'up' || (options.vi && key.name === 'k')) {
self.scroll(-1);
self.screen.render();
return;
}
if (key.name === 'down' || (options.vi && key.name === 'j')) {
self.scroll(1);
self.screen.render();
return;
}
if (options.vi && key.name === 'u' && key.ctrl) {
self.scroll(-(self.height / 2 | 0) || -1);
self.screen.render();
return;
}
if (options.vi && key.name === 'd' && key.ctrl) {
self.scroll(self.height / 2 | 0 || 1);
self.screen.render();
return;
}
if (options.vi && key.name === 'b' && key.ctrl) {
self.scroll(-self.height || -1);
self.screen.render();
return;
}
if (options.vi && key.name === 'f' && key.ctrl) {
self.scroll(self.height || 1);
self.screen.render();
return;
}
if (options.vi && key.name === 'g' && !key.shift) {
self.scroll(-self._clines.length);
self.screen.render();
return;
}
if (options.vi && key.name === 'g' && key.shift) {
self.scroll(self._clines.length);
self.screen.render();
return;
}
});
}
this.on('parsed content', function() {
self._recalculateIndex();
});
self._recalculateIndex();
}
ScrollableBox.prototype.__proto__ = Box.prototype;
2013-06-25 11:34:10 +00:00
ScrollableBox.prototype.type = 'scrollable-box';
2013-07-19 06:57:17 +00:00
ScrollableBox.prototype._scrollBottom = function() {
2013-07-21 10:31:24 +00:00
if (!this.scrollable) return 0;
2013-07-19 06:57:17 +00:00
// We could just calculate the children, but we can
// optimize for lists by just returning the items.length.
if (this.type === 'list') {
return this.items.length;
}
if (this.lpos && this.lpos._scrollBottom) {
return this.lpos._scrollBottom;
}
var bottom = this.children.reduce(function(current, el) {
return Math.max(current, el.rtop + el.height);
}, 0);
2013-07-21 10:31:24 +00:00
//bottom -= this.height;
2013-07-19 06:57:17 +00:00
if (this.lpos) this.lpos._scrollBottom = bottom;
return bottom;
};
ScrollableBox.prototype.scrollTo = function(offset) {
return this.scroll(offset - (this.childBase + this.childOffset));
};
2013-06-06 09:03:25 +00:00
ScrollableBox.prototype.scroll = function(offset) {
2013-07-21 10:31:24 +00:00
if (!this.scrollable) return;
// Handle scrolling.
var visible = this.height - this.iheight
, base = this.childBase
, d
, p
, t
, b;
2013-06-06 09:03:25 +00:00
if (this.alwaysScroll) {
// Semi-workaround
this.childOffset = offset > 0
? visible - 1 + offset
: offset;
} else {
this.childOffset += offset;
}
2013-06-06 09:03:25 +00:00
if (this.childOffset > visible - 1) {
d = this.childOffset - (visible - 1);
2013-06-06 09:03:25 +00:00
this.childOffset -= d;
this.childBase += d;
} else if (this.childOffset < 0) {
d = this.childOffset;
2013-06-06 09:03:25 +00:00
this.childOffset += -d;
this.childBase += d;
}
if (this.childBase < 0) {
this.childBase = 0;
} else if (this.childBase > this.baseLimit) {
this.childBase = this.baseLimit;
}
2013-07-21 10:31:24 +00:00
// Find max "bottom" value for
// content and descendant elements.
// Scroll the content if necessary.
var diff = this.childBase - base
, w
, i
, max
, emax
, t;
if (diff === 0) {
return this.emit('scroll');
}
// When scrolling text, we want to be able to handle SGR codes as well as line
// feeds. This allows us to take preformatted text output from other programs
// and put it in a scrollable text box.
this.parseContent();
max = this._clines.length - (this.height - this.iheight);
if (max < 0) max = 0;
emax = this._scrollBottom() - (this.height - this.iheight);
this.childBase = Math.min(this.childBase, Math.max(emax, max));
diff = this.childBase - base;
if (this.childBase < 0) {
this.childBase = 0;
} else if (this.childBase > this.baseLimit) {
this.childBase = this.baseLimit;
}
if (diff > 0) {
for (i = base; i < this.childBase; i++) {
if (!this._clines[i]) continue;
this.contentIndex += this._clines[i].length + 1;
}
} else {
for (i = base - 1; i >= this.childBase; i--) {
if (!this._clines[i]) continue;
this.contentIndex -= this._clines[i].length + 1;
2013-07-19 06:57:17 +00:00
}
}
// Optimize scrolling with CSR + IL/DL.
2013-07-17 09:38:11 +00:00
p = this.lpos;
2013-07-14 16:39:03 +00:00
if (this.childBase !== base && this.screen.cleanSides(this)) {
t = p.yi + this.itop;
b = p.yl - this.ibottom - 1;
d = this.childBase - base;
if (d > 0 && d < visible) {
// scrolled down
this.screen.deleteLine(d, t, t, b);
} else if (d < 0 && -d < visible) {
// scrolled up
d = -d;
this.screen.insertLine(d, t, t, b);
}
2013-07-21 10:31:24 +00:00
}
return this.emit('scroll');
};
ScrollableBox.prototype._recalculateIndex = function() {
var max, emax, i, t;
if (this.detached || !this.scrollabe) {
this.contentIndex = 0;
return 0;
}
max = this._clines.length - (this.height - this.iheight);
if (max < 0) max = 0;
emax = this._scrollBottom() - (this.height - this.iheight);
this.childBase = Math.min(this.childBase, Math.max(emax, max));
if (this.childBase < 0) {
this.childBase = 0;
} else if (this.childBase > this.baseLimit) {
this.childBase = this.baseLimit;
}
2013-07-15 06:44:11 +00:00
2013-07-21 10:31:24 +00:00
for (i = 0, t = 0; i < this.childBase; i++) {
if (!this._clines[i]) continue;
t += this._clines[i].length + 1;
}
2013-07-21 10:31:24 +00:00
this.contentIndex = t;
return t;
2013-06-06 09:03:25 +00:00
};
2013-06-25 22:31:13 +00:00
ScrollableBox.prototype.resetScroll = function() {
2013-07-21 10:31:24 +00:00
this.contentIndex = 0;
2013-06-25 22:31:13 +00:00
this.childOffset = 0;
this.childBase = 0;
2013-07-21 10:31:24 +00:00
return this.emit('scroll');
2013-06-25 22:31:13 +00:00
};
/**
* List
*/
function List(options) {
2013-06-06 09:03:25 +00:00
var self = this;
2013-06-14 20:58:54 +00:00
if (!(this instanceof List)) {
return new List(options);
}
2013-07-18 22:56:05 +00:00
options = options || {};
2013-07-21 10:31:24 +00:00
options.ignoreKeys = true;
ScrollableBox.call(this, options);
2013-06-01 10:47:18 +00:00
this.value = '';
2013-06-01 10:47:18 +00:00
this.items = [];
2013-06-25 11:34:10 +00:00
this.ritems = [];
this.selected = 0;
2013-07-16 17:33:55 +00:00
if (!this.style.selected) {
this.style.selected = {};
this.style.selected.bg = options.selectedBg;
this.style.selected.fg = options.selectedFg;
2013-07-16 17:33:55 +00:00
this.style.selected.bold = options.selectedBold;
this.style.selected.underline = options.selectedUnderline;
this.style.selected.blink = options.selectedBlink;
this.style.selected.inverse = options.selectedInverse;
this.style.selected.invisible = options.selectedInvisible;
}
if (!this.style.item) {
this.style.item = {};
this.style.item.bg = options.itemBg;
this.style.item.fg = options.itemFg;
2013-07-16 17:33:55 +00:00
this.style.item.bold = options.itemBold;
this.style.item.underline = options.itemUnderline;
this.style.item.blink = options.itemBlink;
this.style.item.inverse = options.itemInverse;
this.style.item.invisible = options.itemInvisible;
}
// Legacy: for apps written before the addition of item attributes.
['bg', 'fg', 'bold', 'underline',
'blink', 'inverse', 'invisible'].forEach(function(name) {
if (self.style[name] != null && self.style.item[name] == null) {
self.style.item[name] = self.style[name];
}
});
2013-07-16 17:33:55 +00:00
2013-07-17 17:01:54 +00:00
if (this.options.itemHoverBg) {
this.options.itemHoverEffects = { bg: this.options.itemHoverBg };
}
if (this.options.itemHoverEffects) {
this.style.item.hover = this.options.itemHoverEffects;
}
if (this.options.itemFocusEffects) {
this.style.item.focus = this.options.itemFocusEffects;
}
2013-06-06 10:39:44 +00:00
this.mouse = options.mouse || false;
2013-06-06 09:03:25 +00:00
2013-06-01 07:06:04 +00:00
if (options.items) {
2013-06-25 11:34:10 +00:00
this.ritems = options.items;
2013-06-01 07:06:04 +00:00
options.items.forEach(this.add.bind(this));
2013-06-01 10:47:18 +00:00
}
if (this.children.length) {
// Will throw if this.parent is not set!
// Probably not good to have in a constructor.
// this.select(0);
}
2013-07-21 10:31:24 +00:00
if (options.mouse) {
this.on('wheeldown', function(data) {
self.select(self.selected + 2);
self.screen.render();
});
this.on('wheelup', function(data) {
self.select(self.selected - 2);
self.screen.render();
});
}
2013-06-11 16:48:37 +00:00
if (options.keys) {
this.on('keypress', function(ch, key) {
if (key.name === 'up' || (options.vi && key.name === 'k')) {
self.up();
self.screen.render();
return;
}
if (key.name === 'down' || (options.vi && key.name === 'j')) {
self.down();
self.screen.render();
return;
}
2013-07-18 19:52:56 +00:00
if (key.name === 'enter'
|| (options.vi && key.name === 'l' && !key.shift)) {
self.emit('action', self.items[self.selected], self.selected);
self.emit('select', self.items[self.selected], self.selected);
return;
}
if (key.name === 'escape' || (options.vi && key.name === 'q')) {
self.emit('action');
self.emit('cancel');
return;
}
if (options.vi && key.name === 'u' && key.ctrl) {
self.move(-((self.height - self.iheight) / 2) | 0);
self.screen.render();
return;
}
if (options.vi && key.name === 'd' && key.ctrl) {
self.move((self.height - self.iheight) / 2 | 0);
self.screen.render();
return;
}
if (options.vi && key.name === 'b' && key.ctrl) {
self.move(-(self.height - self.iheight));
self.screen.render();
return;
}
if (options.vi && key.name === 'f' && key.ctrl) {
self.move(self.height - self.iheight);
self.screen.render();
return;
}
if (options.vi && key.name === 'h' && key.shift) {
self.move(self.childBase - self.selected);
self.screen.render();
return;
}
if (options.vi && key.name === 'm' && key.shift) {
2013-07-18 19:52:56 +00:00
// TODO: Maybe use Math.min(this.items.length,
// ... for calculating visible items elsewhere.
var visible = Math.min(
self.height - self.iheight,
2013-07-18 19:52:56 +00:00
self.items.length) / 2 | 0;
self.move(self.childBase + visible - self.selected);
self.screen.render();
return;
}
if (options.vi && key.name === 'l' && key.shift) {
2013-07-03 23:46:06 +00:00
// XXX This goes one too far on lists with an odd number of items.
self.down(self.childBase
+ Math.min(self.height - self.iheight, self.items.length)
- self.selected);
self.screen.render();
return;
}
2013-07-12 12:48:55 +00:00
if (options.vi && key.name === 'g' && !key.shift) {
self.select(0);
self.screen.render();
return;
}
if (options.vi && key.name === 'g' && key.shift) {
self.select(self.items.length - 1);
self.screen.render();
return;
}
});
}
2013-06-14 08:28:59 +00:00
2013-07-12 06:04:57 +00:00
this.on('resize', function() {
var visible = self.height - self.iheight;
2013-06-14 08:28:59 +00:00
if (visible >= self.selected + 1) {
//if (self.selected < visible - 1) {
self.childBase = 0;
self.childOffset = self.selected;
} else {
2013-06-18 10:08:31 +00:00
// Is this supposed to be: self.childBase = visible - self.selected + 1; ?
2013-06-14 08:28:59 +00:00
self.childBase = self.selected - visible + 1;
self.childOffset = visible - 1;
}
2013-07-12 06:04:57 +00:00
});
}
List.prototype.__proto__ = ScrollableBox.prototype;
2013-06-25 11:34:10 +00:00
List.prototype.type = 'list';
List.prototype.add = function(item) {
2013-06-06 09:03:25 +00:00
var self = this;
2013-07-16 05:52:13 +00:00
var options = {
screen: this.screen,
2013-06-29 17:07:51 +00:00
content: item,
align: this.align || 'left',
top: this.itop + this.items.length,
left: this.ileft + 1,
right: this.iright + 1,
2013-07-12 08:34:32 +00:00
tags: this.parseTags,
2013-06-29 17:07:51 +00:00
height: 1,
2013-07-17 17:01:54 +00:00
hoverEffects: this.mouse ? this.style.item.hover : null,
focusEffects: this.mouse ? this.style.item.focus : null
2013-07-16 05:52:13 +00:00
};
['bg', 'fg', 'bold', 'underline',
'blink', 'inverse', 'invisible'].forEach(function(name) {
options[name] = function() {
2013-07-16 09:23:11 +00:00
var attr = self.items[self.selected] === item
? self.style.selected[name]
: self.style.item[name];
2013-07-16 09:23:11 +00:00
if (typeof attr === 'function') attr = attr(item);
return attr;
2013-07-16 05:52:13 +00:00
};
2013-06-01 10:47:18 +00:00
});
2013-06-06 09:03:25 +00:00
2013-07-16 05:52:13 +00:00
var item = new Box(options);
2013-06-01 10:47:18 +00:00
this.append(item);
this.items.push(item);
2013-06-06 09:03:25 +00:00
if (this.mouse) {
item.on('click', function(data) {
if (self.items[self.selected] === item) {
2013-07-12 10:39:22 +00:00
self.emit('action', item, self.selected);
self.emit('select', item, self.selected);
return;
}
self.select(item);
self.screen.render();
});
}
2013-06-01 10:47:18 +00:00
};
List.prototype._remove = List.prototype.remove;
List.prototype.remove = function(child) {
if (typeof child === 'number') {
child = this.children[child];
}
var i = this.items.indexOf(child);
if (~i) this.items.splice(i, 1);
this._remove(child);
};
2013-07-18 19:52:56 +00:00
List.prototype.addItem = List.prototype.add;
List.prototype.appendItem = List.prototype.add;
List.prototype.removeItem = List.prototype.remove;
List.prototype.setItems = function(items) {
var i = 0
2013-06-25 11:34:10 +00:00
, original = this.items.slice()
//, selected = this.selected
, sel = this.ritems[this.selected];
this.ritems = items;
this.select(0);
for (; i < items.length; i++) {
if (this.items[i]) {
this.items[i].setContent(items[i]);
} else {
this.add(items[i]);
}
}
for (; i < original.length; i++) {
this.remove(original[i]);
}
2013-06-25 11:34:10 +00:00
// Try to find our old item if it still exists.
sel = items.indexOf(sel);
if (~sel) this.select(sel);
//this.select(~sel ? sel : selected);
};
List.prototype.select = function(index) {
2013-06-01 10:47:18 +00:00
if (!this.items.length) return;
if (typeof index === 'object') {
2013-06-01 10:47:18 +00:00
index = this.items.indexOf(index);
}
2013-06-01 10:47:18 +00:00
if (index < 0) index = 0;
else if (index >= this.items.length) index = this.items.length - 1;
if (this.selected === index && this._listInitialized) return;
this._listInitialized = true;
2013-06-06 09:03:25 +00:00
this.selected = index;
this.value = this.ritems[this.selected];
2013-07-19 06:57:17 +00:00
this.scrollTo(this.selected);
};
2013-06-01 10:47:18 +00:00
List.prototype.move = function(offset) {
this.select(this.selected + offset);
};
2013-06-01 10:47:18 +00:00
List.prototype.up = function(offset) {
this.move(-(offset || 1));
};
List.prototype.down = function(offset) {
this.move(offset || 1);
};
2013-06-06 09:03:25 +00:00
/**
* ScrollableText
*/
function ScrollableText(options) {
2013-06-14 20:58:54 +00:00
if (!(this instanceof ScrollableText)) {
return new ScrollableText(options);
}
2013-07-18 22:56:05 +00:00
options = options || {};
2013-06-06 09:03:25 +00:00
options.alwaysScroll = true;
ScrollableBox.call(this, options);
}
ScrollableText.prototype.__proto__ = ScrollableBox.prototype;
2013-06-25 11:34:10 +00:00
ScrollableText.prototype.type = 'scrollable-text';
/**
* Form
*/
function Form(options) {
var self = this;
if (!(this instanceof Form)) {
return new Form(options);
}
2013-07-18 22:56:05 +00:00
options = options || {};
2013-07-21 10:31:24 +00:00
options.ignoreKeys = true;
ScrollableBox.call(this, options);
if (options.keys) {
this.screen._listenKeys(this);
this.screen.on('element keypress', function(el, ch, key) {
// Make sure we're not entering input into a textbox.
2013-07-19 03:49:06 +00:00
// if (self.screen.grabKeys || self.screen.lockKeys) {
// return;
// }
// Make sure we're a form or input element.
if (el !== self && !el.hasAncestor(self)) {
return;
}
2013-07-18 19:52:56 +00:00
if ((key.name === 'tab' && !key.shift)
|| key.name === 'down'
|| (options.vi && key.name === 'j')) {
2013-07-19 03:49:06 +00:00
if (el.type === 'textbox' || el.type === 'textarea') {
if (key.name === 'j') return;
if (key.name === 'tab') {
// Workaround, since we can't stop the tab from being added.
el.emit('keypress', null, { name: 'backspace' });
}
el.emit('keypress', '\x1b', { name: 'escape' });
2013-07-19 03:49:06 +00:00
}
self.focusNext();
return;
}
2013-07-18 19:52:56 +00:00
if ((key.name === 'tab' && key.shift)
|| key.name === 'up'
|| (options.vi && key.name === 'k')) {
2013-07-19 03:49:06 +00:00
if (el.type === 'textbox' || el.type === 'textarea') {
if (key.name === 'k') return;
el.emit('keypress', '\x1b', { name: 'escape' });
2013-07-19 03:49:06 +00:00
}
self.focusPrevious();
return;
}
if (key.name === 'escape') {
self.focus();
return;
}
});
}
}
Form.prototype.__proto__ = ScrollableBox.prototype;
Form.prototype.type = 'form';
Form.prototype._refresh = function() {
if (!this._children) {
var out = [];
this.children.forEach(function fn(el) {
if (el.keyable) out.push(el);
el.children.forEach(fn);
});
this._children = out;
}
};
Form.prototype.next = function() {
this._refresh();
if (!this._selected) {
return this._selected = this._children[0];
}
var i = this._children.indexOf(this._selected);
if (!~i || !this._children[i + 1]) {
return this._selected = this._children[0];
}
return this._selected = this._children[i + 1];
};
Form.prototype.previous = function() {
this._refresh();
if (!this._selected) {
return this._selected = this._children[this._children.length - 1];
}
var i = this._children.indexOf(this._selected);
if (!~i || !this._children[i - 1]) {
return this._selected = this._children[this._children.length - 1];
}
return this._selected = this._children[i - 1];
};
Form.prototype.focusNext = function() {
this.next().focus();
};
Form.prototype.focusPrevious = function() {
this.previous().focus();
};
Form.prototype.submit = function() {
var self = this
, out = {};
2013-07-18 19:33:00 +00:00
this.children.forEach(function fn(el) {
if (el.value != null) {
var name = el.name || el.type;
if (Array.isArray(out[name])) {
out[name].push(el.value);
} else if (out[name]) {
out[name] = [out[name], el.value];
} else {
out[name] = el.value;
}
}
2013-07-18 19:33:00 +00:00
el.children.forEach(fn);
});
this.emit('submit', out);
return this.submission = out;
};
Form.prototype.cancel = function() {
this.emit('cancel');
};
Form.prototype.reset = function() {
2013-07-18 19:33:00 +00:00
this.children.forEach(function fn(el) {
switch (el.type) {
case 'screen':
break;
case 'box':
break;
case 'text':
break;
case 'line':
break;
case 'scrollable-box':
break;
case 'list':
el.select(0);
return;
case 'form':
break;
case 'input':
break;
case 'textbox':
el.clearInput();
return;
case 'textarea':
el.clearInput();
return;
case 'button':
break;
case 'progress-bar':
el.setProgress(0);
break;
case 'file-manager':
el.refresh(el.options.cwd);
return;
case 'checkbox':
el.uncheck();
return;
case 'radio-set':
break;
case 'radio-button':
el.uncheck();
return;
case 'prompt':
break;
case 'question':
break;
case 'message':
break;
case 'info':
break;
case 'loading':
break;
case 'pick-list':
el.select(0);
break;
case 'list-bar':
//el.select(0);
break;
case 'dir-manager':
el.refresh(el.options.cwd);
return;
case 'passbox':
el.clearInput();
return;
}
2013-07-18 19:33:00 +00:00
el.children.forEach(fn);
});
this.emit('reset');
};
/**
* Input
*/
function Input(options) {
2013-06-14 20:58:54 +00:00
if (!(this instanceof Input)) {
return new Input(options);
}
2013-07-18 22:56:05 +00:00
options = options || {};
Box.call(this, options);
}
Input.prototype.__proto__ = Box.prototype;
2013-06-25 11:34:10 +00:00
Input.prototype.type = 'input';
/**
* Textbox
*/
function Textbox(options) {
var self = this;
2013-06-14 20:58:54 +00:00
if (!(this instanceof Textbox)) {
return new Textbox(options);
}
2013-06-25 22:31:13 +00:00
2013-07-18 22:56:05 +00:00
options = options || {};
Input.call(this, options);
2013-06-25 22:31:13 +00:00
2013-06-09 20:02:12 +00:00
this.screen._listenKeys(this);
2013-06-25 22:31:13 +00:00
2013-06-20 12:32:50 +00:00
this.value = options.value || '';
2013-06-20 16:48:12 +00:00
this.secret = options.secret;
2013-06-25 11:34:10 +00:00
this.censor = options.censor;
this.__updateCursor = this.updateCursor.bind(this);
this.on('resize', this.__updateCursor);
this.on('move', this.__updateCursor);
}
Textbox.prototype.__proto__ = Input.prototype;
2013-06-25 11:34:10 +00:00
Textbox.prototype.type = 'textbox';
Textbox.prototype.updateCursor = function() {
if (this.screen.focused !== this) return;
2013-07-21 10:31:24 +00:00
//this.screen.program.cup(this.top + this.itop,
// this.left + this.ileft + this.value.length);
var lpos = this._getCoords();
if (!lpos) return;
this.screen.program.cup(lpos.yi + this.itop,
lpos.xi + this.ileft + this.value.length);
};
2013-07-03 23:46:06 +00:00
Textbox.prototype.input =
Textbox.prototype.readInput =
2013-06-09 18:14:42 +00:00
Textbox.prototype.setInput = function(callback) {
var self = this
, focused = this.screen.focused === this;
2013-06-09 18:14:42 +00:00
if (!focused) {
this.screen.saveFocus();
this.focus();
}
2013-06-09 20:02:12 +00:00
this.screen.grabKeys = true;
2013-06-09 18:14:42 +00:00
this.updateCursor();
2013-06-09 18:14:42 +00:00
this.screen.program.showCursor();
this.screen.program.sgr('normal');
this._callback = function(err, value) {
self.screen.program.hideCursor();
2013-07-10 17:48:18 +00:00
self.screen.grabKeys = false;
if (!focused) {
self.screen.restoreFocus();
}
if (err) {
self.emit('error', err);
} else if (value != null) {
self.emit('submit', value);
} else {
self.emit('cancel', value);
}
self.emit('action', value);
if (!callback) return;
2013-06-09 18:14:42 +00:00
return err
? callback(err)
: callback(null, value);
};
this.__listener = this._listener.bind(this);
this.on('keypress', this.__listener);
};
Textbox.prototype._listener = function(ch, key) {
var callback = this._callback
2013-07-18 19:52:56 +00:00
, value = this.value
, width = this.width - this.iwidth;
2013-06-09 18:14:42 +00:00
if (key.name === 'escape' || key.name === 'enter') {
delete this._callback;
this.removeListener('keypress', this.__listener);
delete this.__listener;
callback(null, key.name === 'enter' ? value : null);
} else if (key.name === 'backspace') {
2013-06-20 12:32:50 +00:00
if (this.value.length) {
this.value = this.value.slice(0, -1);
2013-06-20 16:48:12 +00:00
if (this.secret) return;
2013-07-19 03:49:06 +00:00
if (this.value.length < width - 1) {
this.screen.program.cub();
}
2013-06-09 18:14:42 +00:00
}
} else {
if (ch) {
// Tabs only work with textareas.
if (ch === '\t') ch = ' ';
2013-06-20 12:32:50 +00:00
this.value += ch;
2013-06-20 16:48:12 +00:00
if (this.secret) return;
2013-07-18 19:52:56 +00:00
if (this.value.length < width) {
this.screen.program.cuf();
}
2013-06-09 18:14:42 +00:00
}
}
2013-06-20 12:32:50 +00:00
// Maybe just use this instead of render hook:
// Problem - user can't set .value willy nilly.
// if (this.value !== value) {
// var i = -(this.width - this.iwidth - 1);
2013-07-18 19:52:56 +00:00
// this.setContent(this.value.slice(i));
2013-06-20 12:32:50 +00:00
// }
2013-06-09 18:14:42 +00:00
this.screen.render();
};
2013-07-04 06:50:50 +00:00
Textbox.prototype.clearInput = function() {
this.value = '';
this.setContent('');
};
2013-06-20 16:48:12 +00:00
Textbox.prototype.submit = function() {
return this._listener(null, { name: 'enter' });
};
Textbox.prototype.cancel = function() {
return this._listener('\x1b', { name: 'escape' });
};
Textbox.prototype._render = Input.prototype.render;
2013-07-18 08:54:41 +00:00
Textbox.prototype.render = function() {
2013-06-20 12:32:50 +00:00
// setContent is necessary to clear the area in case
// .shrink is being used and the new content is smaller.
// Could technically optimize this.
if (!this._getCoords(true)) return;
2013-06-20 16:48:12 +00:00
if (this.secret) {
this.setContent('');
2013-07-18 08:54:41 +00:00
return this._render();
2013-06-25 11:34:10 +00:00
}
if (this.censor) {
this.setContent(Array(this.value.length + 1).join('*'));
2013-07-18 08:54:41 +00:00
return this._render();
2013-06-20 16:48:12 +00:00
}
var visible = -(this.width - this.iwidth - 1);
2013-07-18 19:52:56 +00:00
this.setContent(this.value.slice(visible));
2013-07-18 08:54:41 +00:00
return this._render();
};
2013-07-03 23:46:06 +00:00
Textbox.prototype.editor =
Textbox.prototype.readEditor =
2013-06-09 18:14:42 +00:00
Textbox.prototype.setEditor = function(callback) {
var self = this;
return this.screen.readEditor({ value: this.value }, function(err, value) {
if (err) return callback && callback(err);
2013-06-20 12:32:50 +00:00
value = value.replace(/[\r\n]/g, '');
self.value = value;
return self.readInput(callback);
2013-06-09 18:14:42 +00:00
});
};
/**
* Textarea
*/
2013-07-04 04:15:09 +00:00
function Textarea(options) {
if (!(this instanceof Textarea)) {
return new Textarea(options);
}
2013-07-04 04:15:09 +00:00
2013-07-18 22:56:05 +00:00
options = options || {};
ScrollableText.call(this, options);
2013-07-04 04:15:09 +00:00
this.screen._listenKeys(this);
2013-07-04 04:15:09 +00:00
this.value = options.value || '';
2013-07-04 04:15:09 +00:00
this.__updateCursor = this.updateCursor.bind(this);
this.on('resize', this.__updateCursor);
this.on('move', this.__updateCursor);
}
Textarea.prototype.__proto__ = ScrollableText.prototype;
Textarea.prototype.type = 'textarea';
Textarea.prototype.updateCursor = function() {
if (this.screen.focused !== this) {
return;
}
2013-07-21 10:31:24 +00:00
var lpos = this.getCoords();
if (!lpos) return;
var last = this._clines[this._clines.length-1]
, program = this.screen.program
, line
, cx
, cy;
2013-07-06 07:54:04 +00:00
// Stop a situation where the textarea begins scrolling
// and the last cline appears to always be empty from the
// _typeScroll `+ '\n'` thing.
// Maybe not necessary anymore?
2013-07-06 07:54:04 +00:00
if (last === '' && this.value[this.value.length-1] !== '\n') {
last = this._clines[this._clines.length-2] || '';
}
line = Math.min(
2013-07-06 07:54:04 +00:00
this._clines.length - 1 - this.childBase,
2013-07-21 10:31:24 +00:00
(lpos.yl - lpos.yi) - this.iheight - 1);
2013-07-21 10:31:24 +00:00
cy = lpos.yi + this.itop + line;
cx = lpos.xi + this.ileft + last.length;
2013-07-12 06:04:57 +00:00
if (cy === program.y && cx === program.x) {
return;
}
2013-07-12 06:04:57 +00:00
if (cy === program.y) {
if (cx > program.x) {
program.cuf(cx - program.x);
} else if (cx < program.x) {
program.cub(program.x - cx);
}
2013-07-12 06:04:57 +00:00
} else if (cx === program.x) {
if (cy > program.y) {
program.cud(cy - program.y);
} else if (cy < program.y) {
program.cuu(program.y - cy);
}
} else {
program.cup(cy, cx);
}
2013-07-04 04:15:09 +00:00
};
Textarea.prototype.input =
Textarea.prototype.readInput =
Textarea.prototype.setInput = function(callback) {
var self = this
, focused = this.screen.focused === this;
2013-07-04 04:15:09 +00:00
if (!focused) {
this.screen.saveFocus();
this.focus();
}
2013-07-04 04:15:09 +00:00
this.screen.grabKeys = true;
2013-07-04 04:15:09 +00:00
this.updateCursor();
this.screen.program.showCursor();
this.screen.program.sgr('normal');
2013-07-04 04:15:09 +00:00
this._callback = function(err, value) {
self.screen.program.hideCursor();
2013-07-10 17:48:18 +00:00
self.screen.grabKeys = false;
if (!focused) {
self.screen.restoreFocus();
}
if (err) {
self.emit('error', err);
} else if (value != null) {
self.emit('submit', value);
} else {
self.emit('cancel', value);
}
self.emit('action', value);
if (!callback) return;
return err
? callback(err)
: callback(null, value);
};
this.__listener = this._listener.bind(this);
this.on('keypress', this.__listener);
2013-07-04 04:15:09 +00:00
};
Textarea.prototype._listener = function(ch, key) {
var callback = this._callback
, value = this.value;
2013-06-09 18:14:42 +00:00
if (key.name === 'enter') {
ch = '\n';
2013-06-14 20:58:54 +00:00
}
2013-06-09 18:14:42 +00:00
// TODO: Handle directional keys.
if (key.name === 'left' || key.name === 'right'
|| key.name === 'up' || key.name === 'down') {
;
}
2013-06-09 18:14:42 +00:00
if (key.name === 'escape') {
delete this._callback;
this.removeListener('keypress', this.__listener);
delete this.__listener;
callback(null, key.name === 'enter' ? value : null);
} else if (key.name === 'backspace') {
if (this.value.length) {
this.value = this.value.slice(0, -1);
}
} else {
if (ch) {
this.value += ch;
}
}
if (this.value !== value) {
this.setContent(this.value);
2013-07-04 06:50:50 +00:00
this._typeScroll();
this.updateCursor();
this.screen.render();
}
};
2013-07-04 06:50:50 +00:00
Textarea.prototype._typeScroll = function() {
// XXX Workaround
var width = this.height - this.iheight;
2013-07-18 19:52:56 +00:00
if (this._clines.length - this.childBase > width) {
//this.setContent(this.value + '\n');
2013-07-04 06:50:50 +00:00
this.scroll(this._clines.length);
}
};
Textarea.prototype.clearInput = function() {
this.value = '';
this.setContent('');
};
Textarea.prototype.submit = function() {
return this._listener('\x1b', { name: 'escape' });
};
Textarea.prototype.cancel = function() {
return this._listener('\x1b', { name: 'escape' });
};
Textarea.prototype.editor =
Textarea.prototype.readEditor =
Textarea.prototype.setEditor = function(callback) {
var self = this;
return this.screen.readEditor({ value: this.value }, function(err, value) {
if (err) return callback && callback(err);
self.value = value;
self.setContent(self.value);
2013-07-04 06:50:50 +00:00
self._typeScroll();
2013-07-04 06:51:16 +00:00
self.updateCursor();
self.screen.render();
return self.readInput(callback);
});
};
2013-06-25 11:34:10 +00:00
/**
* Button
*/
function Button(options) {
2013-06-16 09:21:57 +00:00
var self = this;
2013-06-14 20:58:54 +00:00
if (!(this instanceof Button)) {
return new Button(options);
}
2013-06-16 09:21:57 +00:00
2013-07-18 22:56:05 +00:00
options = options || {};
if (options.autoFocus == null) {
options.autoFocus = false;
}
Input.call(this, options);
2013-06-16 09:21:57 +00:00
this.on('keypress', function(ch, key) {
if (key.name === 'enter' || key.name === 'space') {
self.press();
}
});
2013-06-29 22:46:47 +00:00
if (this.options.mouse) {
this.on('click', function() {
self.press();
});
}
}
Button.prototype.__proto__ = Input.prototype;
2013-06-25 11:34:10 +00:00
Button.prototype.type = 'button';
2013-06-16 09:21:57 +00:00
Button.prototype.press = function() {
var self = this;
this.emit('press');
};
2013-06-01 07:06:04 +00:00
/**
* ProgressBar
*/
function ProgressBar(options) {
2013-06-14 20:58:54 +00:00
if (!(this instanceof ProgressBar)) {
return new ProgressBar(options);
}
2013-07-18 22:56:05 +00:00
options = options || {};
2013-06-01 07:06:04 +00:00
Input.call(this, options);
2013-06-01 07:06:04 +00:00
this.filled = options.filled || 0;
if (typeof this.filled === 'string') {
this.filled = +this.filled.slice(0, -1);
}
this.value = this.filled;
2013-06-01 07:06:04 +00:00
this.ch = options.ch || ' ';
if (!this.style.bar) {
this.style.bar = {};
this.style.bar.fg = options.barFg;
this.style.bar.bg = options.barBg;
}
2013-06-12 09:18:47 +00:00
this.orientation = options.orientation || 'horizontal';
if (options.keys) {
this.on('keypress', function(ch, key) {
var back, forward;
if (self.orientation === 'horizontal') {
back = ['left', 'h'];
forward = ['right', 'l'];
} else if (self.orientation === 'vertical') {
back = ['down', 'j'];
forward = ['up', 'k'];
}
if (key.name === back[0] || (options.vi && key.name === back[1])) {
self.progress(-5);
self.screen.render();
return;
}
if (key.name === forward[0] || (options.vi && key.name === forward[1])) {
self.progress(5);
self.screen.render();
return;
}
});
}
if (options.mouse) {
this.on('click', function(data) {
var x, y, m, p;
if (self.orientation === 'horizontal') {
x = data.x - self.left;
m = self.width - self.iwidth;
p = x / m * 100 | 0;
} else if (self.orientation === 'vertical') {
y = data.y - self.top;
m = self.height - self.iheight;
p = y / m * 100 | 0;
}
self.setProgress(p);
});
}
2013-06-01 07:06:04 +00:00
}
ProgressBar.prototype.__proto__ = Input.prototype;
2013-06-25 11:34:10 +00:00
ProgressBar.prototype.type = 'progress-bar';
2013-06-01 07:06:04 +00:00
ProgressBar.prototype._render = ProgressBar.prototype.render;
2013-07-18 08:54:41 +00:00
ProgressBar.prototype.render = function() {
var ret = this._render();
if (!ret) return;
2013-06-06 09:03:25 +00:00
var xi = ret.xi
, xl = ret.xl
, yi = ret.yi
2013-06-07 12:12:53 +00:00
, yl = ret.yl
, dattr;
2013-06-06 09:03:25 +00:00
if (this.border) xi++, yi++, xl--, yl--;
2013-06-12 09:18:47 +00:00
if (this.orientation === 'horizontal') {
xl = xi + ((xl - xi) * (this.filled / 100)) | 0;
} else if (this.orientation === 'vertical') {
yi = yi + ((yl - yi) - (((yl - yi) * (this.filled / 100)) | 0));
}
2013-06-01 07:06:04 +00:00
2013-07-17 00:23:39 +00:00
dattr = this.sattr(this, this.style.bar.fg, this.style.bar.bg);
2013-06-01 07:06:04 +00:00
this.screen.fillRegion(dattr, this.ch, xi, xl, yi, yl);
2013-06-06 09:03:25 +00:00
return ret;
2013-06-01 07:06:04 +00:00
};
ProgressBar.prototype.progress = function(filled) {
this.filled += filled;
if (this.filled < 0) this.filled = 0;
else if (this.filled > 100) this.filled = 100;
2013-06-11 16:48:37 +00:00
if (this.filled === 100) {
this.emit('complete');
}
this.value = this.filled;
};
ProgressBar.prototype.setProgress = function(filled) {
this.filled = 0;
this.progress(filled);
2013-06-01 07:06:04 +00:00
};
ProgressBar.prototype.reset = function() {
2013-06-11 16:48:37 +00:00
this.emit('reset');
this.filled = 0;
this.value = this.filled;
};
2013-07-12 12:48:55 +00:00
/**
* FileManager
*/
function FileManager(options) {
2013-07-18 22:56:05 +00:00
var self = this;
2013-07-12 12:48:55 +00:00
if (!(this instanceof FileManager)) {
return new FileManager(options);
}
2013-07-18 22:56:05 +00:00
options = options || {};
2013-07-12 12:48:55 +00:00
options.parseTags = true;
List.call(this, options);
this.cwd = options.cwd || process.cwd();
this.file = this.cwd;
this.value = this.cwd;
2013-07-12 12:48:55 +00:00
this.on('select', function(item) {
var value = item.content.replace(/\{[^{}]+\}/g, '').replace(/@$/, '')
, file = path.resolve(self.cwd, value);
return fs.stat(file, function(err, stat) {
if (err) {
return self.emit('error', err, file);
}
self.file = file;
self.value = file;
2013-07-12 12:48:55 +00:00
if (stat.isDirectory()) {
self.emit('cd', file, self.cwd);
self.cwd = file;
self.refresh();
} else {
self.emit('file', file);
}
});
});
}
FileManager.prototype.__proto__ = List.prototype;
FileManager.prototype.type = 'file-manager';
FileManager.prototype.refresh = function(cwd, callback) {
if (!callback) {
callback = cwd;
cwd = null;
}
var self = this;
if (cwd) this.cwd = cwd;
else cwd = this.cwd;
2013-07-12 12:48:55 +00:00
return fs.readdir(cwd, function(err, list) {
if (err && err.code === 'ENOENT') {
self.cwd = cwd !== process.env.HOME
? process.env.HOME
: '/';
return self.refresh(callback);
}
if (err) {
if (callback) return callback(err);
return self.emit('error', err, cwd);
}
var dirs = []
, files = [];
list.unshift('..');
list.forEach(function(name) {
var f = path.resolve(cwd, name)
, stat;
try {
stat = fs.lstatSync(f);
} catch (e) {
;
}
if ((stat && stat.isDirectory()) || name === '..') {
dirs.push({
name: name,
text: '{light-blue-fg}' + name + '{/light-blue-fg}/',
dir: true
});
} else if (stat && stat.isSymbolicLink()) {
files.push({
name: name,
text: '{light-cyan-fg}' + name + '{/light-cyan-fg}@',
dir: false
});
} else {
files.push({
name: name,
text: name,
dir: false
});
}
});
dirs = asort(dirs);
files = asort(files);
list = dirs.concat(files).map(function(data) {
return data.text;
});
self.setItems(list);
self.select(0);
self.screen.render();
if (callback) callback();
});
};
FileManager.prototype.pick = function(cwd, callback) {
if (!callback) {
callback = cwd;
cwd = null;
}
var self = this
, focused = this.screen.focused === this
2013-07-12 16:30:20 +00:00
, hidden = this.hidden
, onfile
, oncancel;
2013-07-12 12:48:55 +00:00
function resume() {
self.removeListener('file', onfile);
self.removeListener('cancel', oncancel);
if (hidden) {
self.hide();
}
if (!focused) {
self.screen.restoreFocus();
}
self.screen.render();
}
this.on('file', onfile = function(file) {
resume();
return callback(null, file);
});
this.on('cancel', oncancel = function() {
resume();
return callback();
});
this.refresh(cwd, function(err) {
if (err) return callback(err);
2013-07-12 16:30:20 +00:00
if (hidden) {
self.show();
}
if (!focused) {
self.screen.saveFocus();
self.focus();
}
2013-07-12 12:48:55 +00:00
self.screen.render();
});
};
FileManager.prototype.reset = function(cwd, callback) {
if (!callback) {
callback = cwd;
cwd = null;
}
this.cwd = cwd || this.options.cwd;
this.refresh(callback);
};
2013-07-14 01:44:30 +00:00
/**
* Checkbox
*/
function Checkbox(options) {
var self = this;
if (!(this instanceof Checkbox)) {
return new Checkbox(options);
}
2013-07-18 22:56:05 +00:00
options = options || {};
2013-07-14 01:44:30 +00:00
Input.call(this, options);
this.text = options.content || options.text || '';
this.checked = this.value = options.checked || false;
2013-07-14 01:44:30 +00:00
this.on('keypress', function(ch, key) {
if (key.name === 'enter' || key.name === 'space') {
self.toggle();
self.screen.render();
2013-07-14 01:44:30 +00:00
}
});
if (options.mouse) {
2013-07-14 01:44:30 +00:00
this.on('click', function() {
self.check();
self.screen.render();
2013-07-14 01:44:30 +00:00
});
}
this.on('focus', function(old) {
2013-07-21 10:31:24 +00:00
var lpos = self._getCoords();
if (!lpos) return;
self.screen.program.saveCursor();
2013-07-21 10:31:24 +00:00
self.screen.program.cup(lpos.yi, lpos.xi + 1);
self.screen.program.showCursor();
2013-07-14 01:44:30 +00:00
});
this.on('blur', function() {
self.screen.program.hideCursor();
self.screen.program.restoreCursor();
2013-07-14 01:44:30 +00:00
});
}
Checkbox.prototype.__proto__ = Input.prototype;
Checkbox.prototype.type = 'checkbox';
Checkbox.prototype._render = Checkbox.prototype.render;
2013-07-18 08:54:41 +00:00
Checkbox.prototype.render = function() {
2013-07-21 10:31:24 +00:00
//if (!this._getCoords(true)) return;
if (this.type === 'radio-button') {
this.setContent('(' + (this.checked ? '*' : ' ') + ') ' + this.text);
} else {
this.setContent('[' + (this.checked ? 'x' : ' ') + '] ' + this.text);
}
2013-07-18 08:54:41 +00:00
return this._render();
2013-07-14 01:44:30 +00:00
};
Checkbox.prototype.check = function() {
if (this.checked) return;
this.checked = this.value = true;
2013-07-14 01:44:30 +00:00
this.emit('check');
};
Checkbox.prototype.uncheck = function() {
if (!this.checked) return;
this.checked = this.value = false;
2013-07-14 01:44:30 +00:00
this.emit('uncheck');
};
Checkbox.prototype.toggle = function() {
return this.checked
? this.uncheck()
: this.check();
};
/**
* RadioSet
*/
function RadioSet(options) {
if (!(this instanceof RadioSet)) {
return new RadioSet(options);
}
2013-07-18 22:56:05 +00:00
options = options || {};
// Possibly inherit parent's style.
// options.style = this.parent.style;
Box.call(this, options);
}
RadioSet.prototype.__proto__ = Box.prototype;
RadioSet.prototype.type = 'radio-set';
2013-07-14 01:44:30 +00:00
/**
* RadioButton
*/
function RadioButton(options) {
var self = this;
if (!(this instanceof RadioButton)) {
return new RadioButton(options);
}
2013-07-18 22:56:05 +00:00
options = options || {};
2013-07-14 01:44:30 +00:00
Checkbox.call(this, options);
this.on('check', function() {
2013-07-21 10:31:24 +00:00
var el = self;
while (el = el.parent) {
if (self.parent.type === 'radio-set'
|| self.parent.type === 'form') {
break;
}
}
if (!el) el = self.parent;
el.children.forEach(function(el) {
2013-07-15 10:00:26 +00:00
if (el === self) return;
2013-07-14 01:44:30 +00:00
el.uncheck();
});
});
}
RadioButton.prototype.__proto__ = Checkbox.prototype;
RadioButton.prototype.type = 'radio-button';
RadioButton.prototype.toggle = RadioButton.prototype.check;
2013-07-14 01:44:30 +00:00
/**
* Prompt
*/
function Prompt(options) {
var self = this;
if (!(this instanceof Prompt)) {
return new Prompt(options);
}
2013-07-18 22:56:05 +00:00
options = options || {};
2013-07-14 01:44:30 +00:00
Box.call(this, options);
this._.input = new Textbox({
parent: this,
top: 3,
height: 1,
left: 2,
right: 2,
bg: 'black'
});
this._.okay = new Button({
parent: this,
top: 5,
height: 1,
left: 2,
width: 6,
content: 'Okay',
align: 'center',
bg: 'black',
hoverBg: 'blue',
autoFocus: false,
mouse: true
});
this._.cancel = new Button({
parent: this,
top: 5,
height: 1,
shrink: true,
left: 10,
width: 8,
content: 'Cancel',
align: 'center',
bg: 'black',
hoverBg: 'blue',
autoFocus: false,
mouse: true
});
}
Prompt.prototype.__proto__ = Box.prototype;
Prompt.prototype.type = 'prompt';
Prompt.prototype.type = function(text, value, callback) {
var self = this;
var okay, cancel;
if (!callback) {
callback = value;
value = '';
}
this.show();
this.setContent(' ' + text);
if (value) this._.input.value = value;
this.screen.saveFocus();
this._.okay.on('press', okay = function() {
self._.input.submit();
});
this._.cancel.on('press', cancel = function() {
self._.input.cancel();
});
this._.input.readInput(function(err, data) {
self.hide();
self.screen.restoreFocus();
self._.okay.removeListener('press', okay);
self._.cancel.removeListener('press', cancel);
return callback(err, data);
});
this.screen.render();
};
/**
* Question
*/
function Question(options) {
var self = this;
if (!(this instanceof Question)) {
return new Question(options);
}
2013-07-18 22:56:05 +00:00
options = options || {};
2013-07-14 01:44:30 +00:00
Box.call(this, options);
this._.okay = new Button({
parent: this,
top: 3,
height: 1,
left: 2,
width: 6,
content: 'Okay',
align: 'center',
bg: 'black',
hoverBg: 'blue',
autoFocus: false,
mouse: true
});
this._.cancel = new Button({
parent: this,
top: 3,
height: 1,
shrink: true,
left: 10,
width: 8,
content: 'Cancel',
align: 'center',
bg: 'black',
hoverBg: 'blue',
autoFocus: false,
mouse: true
});
}
Question.prototype.__proto__ = Box.prototype;
Question.prototype.type = 'question';
Question.prototype.ask = function(text, callback) {
var self = this;
var press, okay, cancel;
this.show();
this.setContent(' ' + text);
this.screen.on('keypress', press = function(ch, key) {
if (key.name === 'mouse') return;
if (key.name !== 'enter'
&& key.name !== 'escape'
&& key.name !== 'q'
&& key.name !== 'y'
&& key.name !== 'n') {
return;
}
done(null, key.name === 'enter' || key.name === 'y');
});
this._.okay.on('press', okay = function() {
done(null, true);
});
this._.cancel.on('press', cancel = function() {
done(null, false);
});
this.screen.saveFocus();
this.focus();
function done(err, data) {
self.hide();
self.screen.restoreFocus();
self.screen.removeListener('keypress', press);
self._.okay.removeListener('press', okay);
self._.cancel.removeListener('press', cancel);
return callback(err, data);
}
this.screen.render();
};
/**
* Message / Error
*/
function Message(options) {
var self = this;
if (!(this instanceof Message)) {
return new Message(options);
}
2013-07-18 22:56:05 +00:00
options = options || {};
2013-07-14 01:44:30 +00:00
options.tags = true;
Box.call(this, options);
}
Message.prototype.__proto__ = Box.prototype;
Message.prototype.type = 'message';
Message.prototype.log =
Message.prototype.display = function(text, time, callback) {
var self = this;
if (typeof time === 'function') {
callback = time;
time = null;
}
time = time || 3;
this.show();
this.setContent(text);
this.screen.render();
setTimeout(function() {
self.hide();
self.screen.render();
if (callback) callback();
}, time * 1000);
};
Message.prototype.error = function(text, callback) {
2013-07-15 10:00:26 +00:00
return this.display('{red-fg}Error: ' + text + '{/red-fg}', callback);
2013-07-14 01:44:30 +00:00
};
/**
* Info - TODO: Merge display method into Message?
*/
function Info(options) {
var self = this;
if (!(this instanceof Info)) {
return new Info(options);
}
2013-07-18 22:56:05 +00:00
options = options || {};
2013-07-14 01:44:30 +00:00
Box.call(this, options);
}
Info.prototype.__proto__ = Box.prototype;
Info.prototype.type = 'info';
Info.prototype.display = function(text, callback) {
this.show();
this.setContent(text);
this.screen.render();
function end() {
if (end.done) return;
end.done = true;
self.hide();
self.screen.render();
if (callback) callback();
}
return setTimeout(function() {
self.screen.on('keypress', function fn(ch, key) {
if (key.name === 'mouse') return;
self.screen.removeListener('keypress', fn);
end();
});
2013-07-15 10:00:26 +00:00
if (!self.options.mouse) return;
self.screen.on('mouse', function fn(data) {
2013-07-14 01:44:30 +00:00
if (data.action === 'mousemove') return;
self.screen.removeListener('mouse', fn);
end();
});
}, 10);
};
/**
* Loading
*/
function Loading(options) {
var self = this;
if (!(this instanceof Loading)) {
return new Loading(options);
}
2013-07-18 22:56:05 +00:00
options = options || {};
2013-07-14 01:44:30 +00:00
Box.call(this, options);
this._.icon = new Text({
parent: this,
align: 'center',
top: 2,
left: 1,
right: 1,
height: 1,
content: '|'
});
}
Loading.prototype.__proto__ = Box.prototype;
Loading.prototype.type = 'loading';
Loading.prototype.load = function(text) {
var self = this;
this.show();
this.setContent(text);
if (this._.timer) {
this._.stop();
}
this.screen.lockKeys = true;
this._.timer = setInterval(function() {
if (self._.icon.content === '|') {
self._.icon.setContent('/');
} else if (self._.icon.content === '/') {
self._.icon.setContent('-');
} else if (self._.icon.content === '-') {
self._.icon.setContent('\\');
} else if (self._.icon.content === '\\') {
self._.icon.setContent('|');
}
self.screen.render();
}, 200);
};
Loading.prototype.stop = function() {
this.screen.lockKeys = false;
this.hide();
if (this._.timer) {
clearInterval(this._.timer);
delete this._.timer;
}
this.screen.render();
};
/**
* PickList - TODO Merge into List
*/
function PickList(options) {
var self = this;
if (!(this instanceof PickList)) {
return new PickList(options);
}
2013-07-18 22:56:05 +00:00
options = options || {};
2013-07-14 01:44:30 +00:00
List.call(this, options);
}
PickList.prototype.__proto__ = List.prototype;
PickList.prototype.type = 'pick-list';
2013-07-14 01:44:30 +00:00
PickList.prototype.pick = function(callback) {
this.screen.saveFocus();
this.focus();
this.show();
this.screen.render();
this.once('action', function(el, selected) {
self.screen.restoreFocus();
self.hide();
self.screen.render();
if (!el) return callback();
return callback(null, selected);
});
};
/**
* Listbar / HorizontalList
*/
function Listbar(options) {
var self = this;
if (!(this instanceof Listbar)) {
return new Listbar(options);
}
2013-07-18 22:56:05 +00:00
options = options || {};
2013-07-14 01:44:30 +00:00
this.items = [];
2013-07-17 08:20:37 +00:00
this.commands = options.commands;
this.leftBase = 0;
this.leftOffset = 0;
2013-07-14 01:44:30 +00:00
Box.call(this, options);
2013-07-17 08:20:37 +00:00
if (options.commands || options.items) {
this.setItems(options.commands || options.items);
}
if (options.keys) {
this.on('keypress', function(ch, key) {
if (key.name === 'left') {
self.sel(-1);
self.screen.render();
return;
}
if (key.name === 'right') {
self.sel(1);
self.screen.render();
return;
}
});
}
this.on('focus', function() {
if (self.items[self.leftBase + self.leftOffset]) {
self.items[self.leftBase + self.leftOffset].focus();
}
});
2013-07-14 01:44:30 +00:00
}
Listbar.prototype.__proto__ = Box.prototype;
Listbar.prototype.type = 'listbar';
2013-07-14 01:44:30 +00:00
Listbar.prototype.setOptions =
Listbar.prototype.setCommands =
Listbar.prototype.setItems = function(commands) {
2013-07-17 08:20:37 +00:00
if (Array.isArray(commands)) {
var obj = {};
commands.forEach(function(text, i) {
obj[text] = { prefix: i };
});
commands = obj;
}
this.items.forEach(function(el) {
2013-07-14 01:44:30 +00:00
el.detach();
});
2013-07-17 08:20:37 +00:00
this.items = [];
2013-07-14 01:44:30 +00:00
var self = this
, drawn = 0;
this.commands = commands;
Object.keys(commands).forEach(function(name) {
var cmd = commands[name]
, title
, len
, button;
2013-07-17 08:20:37 +00:00
title = (cmd.prefix ? '{light-black-fg}'
2013-07-14 01:44:30 +00:00
+ cmd.prefix
+ '{/light-black-fg}'
2013-07-17 08:20:37 +00:00
+ ':' : '')
2013-07-14 01:44:30 +00:00
+ name;
2013-07-17 08:20:37 +00:00
len = ((cmd.prefix ? cmd.prefix + ':' : '') + name).length;
2013-07-14 01:44:30 +00:00
button = new Button({
parent: self,
top: 0,
left: drawn + 1,
height: 1,
content: title,
width: len + 2,
align: 'center',
tags: true,
mouse: true,
2013-07-17 08:20:37 +00:00
style: self.style.item
2013-07-14 01:44:30 +00:00
});
self._[name] = button;
cmd.element = button;
self.items.push(button);
if (cmd.callback) {
button.on('press', cmd.callback);
if (cmd.keys) {
screen.key(cmd.keys, cmd.callback);
2013-07-14 01:44:30 +00:00
}
}
drawn += len + 3;
});
2013-07-17 08:20:37 +00:00
this.select(0);
};
Listbar.prototype._render = Listbar.prototype.render;
2013-07-18 08:54:41 +00:00
Listbar.prototype.render = function() {
if (!this._getCoords(true)) return;
2013-07-17 08:20:37 +00:00
var self = this
, drawn = 0;
this.items.forEach(function(el, i) {
if (i < self.leftBase) {
el.hide();
} else {
el.left = drawn + 1;
drawn += el.width + 3;
el.show();
}
});
return this._render();
};
Listbar.prototype.select = function(offset) {
var self = this
2013-07-17 09:38:11 +00:00
, width = this.lpos ? this.lpos.xl - this.lpos.xi : this.width
2013-07-17 08:20:37 +00:00
, drawn = 0
, visible = 0
, el;
width = width - this.iwidth;
2013-07-17 08:20:37 +00:00
if (offset < 0) offset = 0;
else if (offset >= this.items.length) offset = this.items.length - 1;
el = this.items[offset];
if (!el) return;
this.items.forEach(function(el, i) {
if (i < self.leftBase) return;
2013-07-17 09:38:11 +00:00
drawn += (el.lpos ? el.lpos.xl - el.lpos.xi : el.width) + 3;
2013-07-17 08:20:37 +00:00
if (drawn <= width) visible++;
});
this.leftOffset = offset;
if (this.leftOffset > visible - 1) {
d = this.leftOffset - (visible - 1);
this.leftOffset -= d;
this.leftBase += d;
} else if (this.leftOffset < 0) {
d = this.leftOffset;
this.leftOffset += -d;
this.leftBase += d;
}
el.focus();
};
Listbar.prototype.sel = function(i) {
this.select(this.leftBase + this.leftOffset + i);
2013-07-14 01:44:30 +00:00
};
/**
* DirManager - Merge into FileManager?
*/
function DirManager(options) {
var self = this;
if (!(this instanceof DirManager)) {
return new DirManager(options);
}
2013-07-18 22:56:05 +00:00
options = options || {};
2013-07-14 01:44:30 +00:00
FileManager.call(this, options);
this.on('cd', function(dir) {
if (dir === self.cwd) return;
self.emit('file', dir);
});
}
DirManager.prototype.__proto__ = FileManager.prototype;
DirManager.prototype.type = 'dir-manager';
/**
* Passbox - Useless
*/
function Passbox(options) {
var self = this;
if (!(this instanceof Passbox)) {
return new Passbox(options);
}
2013-07-18 22:56:05 +00:00
options = options || {};
2013-07-14 01:44:30 +00:00
options.censor = true;
Textbox.call(this, options);
}
Passbox.prototype.__proto__ = Textbox.prototype;
Passbox.prototype.type = 'passbox';
2013-06-06 14:24:03 +00:00
/**
* Helpers
*/
2013-07-12 12:48:55 +00:00
function asort(obj) {
return obj.sort(function(a, b) {
a = a.name.toLowerCase();
b = b.name.toLowerCase();
if (a[0] === '.' && b[0] === '.') {
a = a[1];
b = b[1];
} else {
a = a[0];
b = b[0];
}
return a > b ? 1 : (a < b ? -1 : 0);
});
}
function hsort(obj) {
return obj.sort(function(a, b) {
return b.index - a.index;
});
}
/**
* Expose
*/
exports.colors = colors;
2013-07-03 23:46:06 +00:00
exports.Screen = exports.screen = Screen;
exports.Box = exports.box = Box;
exports.Text = exports.text = Text;
exports.Line = exports.line = Line;
exports.ScrollableBox = exports.scrollablebox = ScrollableBox;
exports.List = exports.list = List;
exports.ScrollableText = exports.scrollabletext = ScrollableText;
exports.Form = exports.form = Form;
2013-07-03 23:46:06 +00:00
exports.Input = exports.input = Input;
exports.Textbox = exports.textbox = Textbox;
exports.Textarea = exports.textarea = Textarea;
exports.Button = exports.button = Button;
exports.ProgressBar = exports.progressbar = ProgressBar;
2013-07-12 12:48:55 +00:00
exports.FileManager = exports.filemanager = FileManager;
2013-07-14 01:44:30 +00:00
exports.Checkbox = exports.checkbox = Checkbox;
exports.RadioSet = exports.radioset = RadioSet;
2013-07-14 01:44:30 +00:00
exports.RadioButton = exports.radiobutton = RadioButton;
2013-07-14 01:44:30 +00:00
exports.Prompt = exports.prompt = Prompt;
exports.Question = exports.question = Question;
exports.Message = exports.message = Message;
exports.Info = exports.info = Info;
exports.Loading = exports.loading = Loading;
exports.PickList = exports.picklist = PickList;
exports.Listbar = exports.listbar = Listbar;
exports.DirManager = exports.dirmanager = DirManager;
exports.Passbox = exports.passbox = Passbox;