enigma-bbs/core/text_view.js

118 lines
2.9 KiB
JavaScript
Raw Normal View History

2014-10-22 05:12:44 +00:00
/* jslint node: true */
'use strict';
var View = require('./view.js').View;
var miscUtil = require('./misc_util.js');
var strUtil = require('./string_util.js');
var ansi = require('./ansi_term.js');
2014-10-22 05:12:44 +00:00
var util = require('util');
var assert = require('assert');
var _ = require('lodash');
2014-10-22 05:12:44 +00:00
exports.TextView = TextView;
function TextView(options) {
View.call(this, options);
2014-10-22 05:12:44 +00:00
2015-04-08 05:15:34 +00:00
var self = this;
if(options.maxLength) {
this.maxLength = options.maxLength;
} else {
this.maxLength = this.client.term.termWidth - this.position.x;
2014-10-22 05:12:44 +00:00
}
this.fillChar = miscUtil.valueWithDefault(options.fillChar, ' ').substr(0, 1);
this.justify = options.justify || 'right';
this.resizable = miscUtil.valueWithDefault(options.resizable, true);
this.horizScroll = miscUtil.valueWithDefault(options.horizScroll, true);
if(_.isString(options.textMaskChar) && 1 === options.textMaskChar.length) {
this.textMaskChar = options.textMaskChar;
2014-10-22 05:12:44 +00:00
}
this.dimens.height = 1;
this.drawText = function(s) {
//
// |<- this.maxLength
// ABCDEFGHIJK
// |ABCDEFG| ^_ this.text.length
// ^-- this.dimens.width
//
var textToDraw = _.isString(this.textMaskChar) ?
new Array(s.length + 1).join(this.textMaskChar) :
strUtil.stylizeString(s, this.hasFocus ? this.focusTextStyle : this.textStyle);
if(textToDraw.length > this.dimens.width) {
// XXXXXXXXXXXXXXXXX
// this is the text but too long
// text but too long
if(this.horizScroll) {
textToDraw = textToDraw.substr(textToDraw.length - this.dimens.width, textToDraw.length);
}
}
this.client.term.write(strUtil.pad(
textToDraw,
this.dimens.width + 1,
this.fillChar,
this.justify,
this.hasFocus ? this.getFocusSGR() : this.getSGR(),
this.getSGR() // :TODO: use extended style color if avail
));
};
this.setText(options.text || '');
2014-10-22 05:12:44 +00:00
}
util.inherits(TextView, View);
TextView.prototype.redraw = function() {
TextView.super_.prototype.redraw.call(this);
this.drawText(this.text);
2014-10-22 05:12:44 +00:00
};
TextView.prototype.setFocus = function(focused) {
TextView.super_.prototype.setFocus.call(this, focused);
this.redraw();
// position & SGR for cursor
this.client.term.write(ansi.goto(this.position.x, this.position.y + this.text.length));
this.client.term.write(this.getFocusSGR());
};
TextView.prototype.getData = function() {
return this.text;
};
2014-10-22 05:12:44 +00:00
TextView.prototype.setText = function(text) {
var widthDelta = 0;
if(this.text && this.text !== text) {
widthDelta = Math.abs(this.text.length - text.length);
}
2014-10-22 05:12:44 +00:00
this.text = text;
if(this.maxLength > 0) {
this.text = this.text.substr(0, this.maxLength);
}
this.text = strUtil.stylizeString(this.text, this.hasFocus ? this.focusTextStyle : this.textStyle);
2014-10-22 05:12:44 +00:00
if(this.resizable) {
this.dimens.width = this.text.length + widthDelta;
2014-10-22 05:12:44 +00:00
}
this.redraw();
2014-10-22 05:12:44 +00:00
};
TextView.prototype.clearText = function() {
this.setText('');
};