174 lines
3.4 KiB
JavaScript
174 lines
3.4 KiB
JavaScript
import repeating from "repeating";
|
|
import trimRight from "trim-right";
|
|
import isBoolean from "lodash/lang/isBoolean";
|
|
import includes from "lodash/collection/includes";
|
|
import isNumber from "lodash/lang/isNumber";
|
|
|
|
export default class Buffer {
|
|
constructor(position, format) {
|
|
this.position = position;
|
|
this._indent = format.indent.base;
|
|
this.format = format;
|
|
this.buf = "";
|
|
}
|
|
|
|
get() {
|
|
return trimRight(this.buf);
|
|
}
|
|
|
|
getIndent() {
|
|
if (this.format.compact || this.format.concise) {
|
|
return "";
|
|
} else {
|
|
return repeating(this.format.indent.style, this._indent);
|
|
}
|
|
}
|
|
|
|
indentSize() {
|
|
return this.getIndent().length;
|
|
}
|
|
|
|
indent() {
|
|
this._indent++;
|
|
}
|
|
|
|
dedent() {
|
|
this._indent--;
|
|
}
|
|
|
|
semicolon() {
|
|
this.push(";");
|
|
}
|
|
|
|
ensureSemicolon() {
|
|
if (!this.isLast(";")) this.semicolon();
|
|
}
|
|
|
|
rightBrace() {
|
|
this.newline(true);
|
|
this.push("}");
|
|
}
|
|
|
|
keyword(name) {
|
|
this.push(name);
|
|
this.space();
|
|
}
|
|
|
|
space() {
|
|
if (this.format.compact) return;
|
|
if (this.buf && !this.isLast(" ") && !this.isLast("\n")) {
|
|
this.push(" ");
|
|
}
|
|
}
|
|
|
|
removeLast(cha) {
|
|
if (this.format.compact) return;
|
|
if (!this.isLast(cha)) return;
|
|
|
|
this.buf = this.buf.substr(0, this.buf.length - 1);
|
|
this.position.unshift(cha);
|
|
}
|
|
|
|
newline(i, removeLast) {
|
|
if (this.format.compact || this.format.retainLines) return;
|
|
|
|
if (this.format.concise) {
|
|
this.space();
|
|
return;
|
|
}
|
|
|
|
removeLast = removeLast || false;
|
|
|
|
if (isNumber(i)) {
|
|
i = Math.min(2, i);
|
|
|
|
if (this.endsWith("{\n") || this.endsWith(":\n")) i--;
|
|
if (i <= 0) return;
|
|
|
|
while (i > 0) {
|
|
this._newline(removeLast);
|
|
i--;
|
|
}
|
|
return;
|
|
}
|
|
|
|
if (isBoolean(i)) {
|
|
removeLast = i;
|
|
}
|
|
|
|
this._newline(removeLast);
|
|
}
|
|
|
|
_newline(removeLast) {
|
|
// never allow more than two lines
|
|
if (this.endsWith("\n\n")) return;
|
|
|
|
// remove the last newline
|
|
if (removeLast && this.isLast("\n")) this.removeLast("\n");
|
|
|
|
this.removeLast(" ");
|
|
this._removeSpacesAfterLastNewline();
|
|
this._push("\n");
|
|
}
|
|
|
|
/**
|
|
* If buffer ends with a newline and some spaces after it, trim those spaces.
|
|
*/
|
|
|
|
_removeSpacesAfterLastNewline() {
|
|
var lastNewlineIndex = this.buf.lastIndexOf("\n");
|
|
if (lastNewlineIndex === -1)
|
|
return;
|
|
|
|
var index = this.buf.length - 1;
|
|
while (index > lastNewlineIndex) {
|
|
if (this.buf[index] !== " ") {
|
|
break;
|
|
}
|
|
|
|
index--;
|
|
}
|
|
|
|
if (index === lastNewlineIndex) {
|
|
this.buf = this.buf.substring(0, index + 1);
|
|
}
|
|
}
|
|
|
|
push(str, noIndent) {
|
|
if (!this.format.compact && this._indent && !noIndent && str !== "\n") {
|
|
// we have an indent level and we aren't pushing a newline
|
|
var indent = this.getIndent();
|
|
|
|
// replace all newlines with newlines with the indentation
|
|
str = str.replace(/\n/g, `\n${indent}`);
|
|
|
|
// we've got a newline before us so prepend on the indentation
|
|
if (this.isLast("\n")) this._push(indent);
|
|
}
|
|
|
|
this._push(str);
|
|
}
|
|
|
|
_push(str) {
|
|
this.position.push(str);
|
|
this.buf += str;
|
|
}
|
|
|
|
endsWith(str) {
|
|
return this.buf.slice(-str.length) === str;
|
|
}
|
|
|
|
isLast(cha) {
|
|
if (this.format.compact) return false;
|
|
|
|
var buf = this.buf;
|
|
var last = buf[buf.length - 1];
|
|
|
|
if (Array.isArray(cha)) {
|
|
return includes(cha, last);
|
|
} else {
|
|
return cha === last;
|
|
}
|
|
}
|
|
}
|