scroll/src/common/editor.ts

344 lines
8.0 KiB
JavaScript
Raw Normal View History

import Ansi, { KeyCommand } from './ansi.ts';
2023-11-08 18:07:34 -05:00
import Buffer from './buffer.ts';
2023-11-21 15:14:08 -05:00
import Document from './document.ts';
import { ITerminalSize, logToFile, Position, VERSION } from './mod.ts';
import Row from './row.ts';
import { ctrlKey, maxAdd, posSub, truncate } from './utils.ts';
2023-11-08 11:11:19 -05:00
2023-11-21 15:14:08 -05:00
class Editor {
/**
* The document being edited
* @private
*/
#document: Document;
/**
* The output buffer for the terminal
* @private
*/
2023-11-08 11:11:19 -05:00
#buffer: Buffer;
/**
* The size of the screen in rows/columns
* @private
*/
2023-11-10 08:36:18 -05:00
#screen: ITerminalSize;
/**
* The current location of the mouse cursor
* @private
*/
2023-11-21 15:14:08 -05:00
#cursor: Position;
2023-11-20 11:12:22 -05:00
/**
* The current scrolling offset
*/
2023-11-21 15:14:08 -05:00
#offset: Position;
/**
* The scrolling offset for the rendered row
* @private
*/
2023-11-21 11:35:56 -05:00
#renderX: number = 0;
2023-11-20 15:39:27 -05:00
/**
* The name of the currently open file
* @private
*/
2023-11-21 11:35:56 -05:00
#filename: string = '';
/**
* A message to display at the bottom of the screen
* @private
*/
#statusMessage: string = '';
/**
* Timeout for status messages
* @private
*/
#statusTimeout: number = 0;
2023-11-20 14:21:42 -05:00
constructor(terminalSize: ITerminalSize) {
2023-11-08 11:11:19 -05:00
this.#buffer = new Buffer();
2023-11-21 15:14:08 -05:00
// Subtract two rows from the terminal size
// for displaying the status bar
// and message bar
2023-11-10 08:36:18 -05:00
this.#screen = terminalSize;
2023-11-21 11:35:56 -05:00
this.#screen.rows -= 2;
2023-11-21 15:14:08 -05:00
this.#cursor = Position.default();
this.#offset = Position.default();
this.#document = Document.empty();
}
2023-11-21 15:14:08 -05:00
private get numRows(): number {
return this.#document.numRows;
}
private get currentRow(): Row | null {
return this.#document.row(this.#cursor.y);
}
public async open(filename: string): Promise<Editor> {
await this.#document.open(filename);
2023-11-20 15:39:27 -05:00
this.#filename = filename;
return this;
2023-11-08 11:11:19 -05:00
}
2023-11-10 08:36:18 -05:00
// --------------------------------------------------------------------------
// Command/input mapping
// --------------------------------------------------------------------------
2023-11-08 11:11:19 -05:00
/**
* Determine what to do based on input
* @param input - the decoded chunk of stdin
*/
2023-11-21 15:14:08 -05:00
public async processKeyPress(input: string): Promise<boolean> {
2023-11-08 11:11:19 -05:00
switch (input) {
2023-11-21 15:14:08 -05:00
case KeyCommand.Enter:
// TODO
break;
case ctrlKey('q'):
2023-11-21 15:14:08 -05:00
await this.clearScreen();
2023-11-08 11:11:19 -05:00
return false;
2023-11-21 15:14:08 -05:00
case ctrlKey('s'):
await this.#document.save();
this.setStatusMessage(`${this.#filename} was saved to disk.`);
break;
case KeyCommand.Home:
this.#cursor.x = 0;
break;
case KeyCommand.End:
if (this.currentRow !== null) {
this.#cursor.x = this.currentRow.size - 1;
}
break;
2023-11-21 15:14:08 -05:00
case KeyCommand.Backspace:
case KeyCommand.Delete:
// TODO
break;
case KeyCommand.PageUp:
case KeyCommand.PageDown:
{
if (input === KeyCommand.PageUp) {
this.#cursor.y = this.#offset.y;
} else if (input === KeyCommand.PageDown) {
this.#cursor.y = maxAdd(
this.#offset.y,
this.#screen.rows - 1,
2023-11-21 15:14:08 -05:00
this.numRows,
);
}
let times = this.#screen.rows;
while (times--) {
this.moveCursor(
input === KeyCommand.PageUp
? KeyCommand.ArrowUp
: KeyCommand.ArrowDown,
);
}
}
break;
case KeyCommand.ArrowUp:
case KeyCommand.ArrowDown:
case KeyCommand.ArrowRight:
case KeyCommand.ArrowLeft:
this.moveCursor(input);
break;
2023-11-21 15:14:08 -05:00
case KeyCommand.Escape:
break;
default:
this.#document.insert(this.#cursor, input);
this.#cursor.x++;
2023-11-10 08:36:18 -05:00
}
return true;
}
private moveCursor(char: string): void {
switch (char) {
case KeyCommand.ArrowLeft:
if (this.#cursor.x > 0) {
this.#cursor.x--;
2023-11-20 14:21:42 -05:00
} else if (this.#cursor.y > 0) {
this.#cursor.y--;
this.#cursor.x = (this.currentRow !== null)
? this.currentRow.size - 1
: 0;
}
2023-11-10 08:36:18 -05:00
break;
case KeyCommand.ArrowRight:
2023-11-20 14:21:42 -05:00
if (
this.currentRow !== null && this.#cursor.x < this.currentRow.size - 1
) {
this.#cursor.x++;
2023-11-20 14:21:42 -05:00
} else if (
this.currentRow !== null &&
this.#cursor.x === this.currentRow.size - 1
) {
this.#cursor.y++;
this.#cursor.x = 0;
}
2023-11-10 08:36:18 -05:00
break;
case KeyCommand.ArrowUp:
if (this.#cursor.y > 0) {
this.#cursor.y--;
}
2023-11-10 08:36:18 -05:00
break;
case KeyCommand.ArrowDown:
2023-11-21 15:14:08 -05:00
if (this.#cursor.y < this.numRows) {
this.#cursor.y++;
}
2023-11-10 08:36:18 -05:00
break;
2023-11-08 11:11:19 -05:00
}
2023-11-20 14:21:42 -05:00
const rowLen = this.currentRow?.size ?? 0;
if (this.#cursor.x > rowLen) {
this.#cursor.x = rowLen;
}
2023-11-08 11:11:19 -05:00
}
2023-11-20 11:12:22 -05:00
private scroll(): void {
this.#renderX = 0;
if (this.currentRow !== null) {
this.#renderX = this.currentRow.cxToRx(this.#cursor.x);
}
2023-11-20 11:12:22 -05:00
if (this.#cursor.y < this.#offset.y) {
this.#offset.y = this.#cursor.y;
}
if (this.#cursor.y >= this.#offset.y + this.#screen.rows) {
this.#offset.y = this.#cursor.y - this.#screen.rows + 1;
}
if (this.#renderX < this.#offset.x) {
this.#offset.x = this.#renderX;
2023-11-20 14:21:42 -05:00
}
if (this.#renderX >= this.#offset.x + this.#screen.cols) {
this.#offset.x = this.#renderX - this.#screen.cols + 1;
2023-11-20 14:21:42 -05:00
}
2023-11-20 11:12:22 -05:00
}
2023-11-10 08:36:18 -05:00
// --------------------------------------------------------------------------
2023-11-09 12:05:30 -05:00
// Terminal Output / Drawing
2023-11-10 08:36:18 -05:00
// --------------------------------------------------------------------------
2023-11-09 12:05:30 -05:00
2023-11-21 11:35:56 -05:00
public setStatusMessage(msg: string): void {
// TODO: consider some sort of formatting for passed strings
this.#statusMessage = msg;
this.#statusTimeout = Date.now();
}
2023-11-08 11:11:19 -05:00
/**
* Clear the screen and write out the buffer
*/
public async refreshScreen(): Promise<void> {
2023-11-20 11:12:22 -05:00
this.scroll();
2023-11-09 12:05:30 -05:00
this.#buffer.append(Ansi.HideCursor);
this.#buffer.append(Ansi.ResetCursor);
this.drawRows();
2023-11-20 15:39:27 -05:00
this.drawStatusBar();
2023-11-21 11:35:56 -05:00
this.drawMessageBar();
2023-11-10 08:36:18 -05:00
this.#buffer.append(
2023-11-20 14:21:42 -05:00
Ansi.moveCursor(
this.#cursor.y - this.#offset.y,
this.#renderX - this.#offset.x,
2023-11-20 14:21:42 -05:00
),
2023-11-10 08:36:18 -05:00
);
2023-11-09 12:05:30 -05:00
this.#buffer.append(Ansi.ShowCursor);
await this.#buffer.flush();
}
2023-11-08 11:11:19 -05:00
2023-11-09 12:32:41 -05:00
private async clearScreen(): Promise<void> {
this.#buffer.append(Ansi.ClearScreen);
this.#buffer.append(Ansi.ResetCursor);
await this.#buffer.flush();
}
2023-11-09 12:05:30 -05:00
private drawRows(): void {
2023-11-13 14:46:04 -05:00
for (let y = 0; y < this.#screen.rows; y++) {
this.#buffer.append(Ansi.ClearLine);
2023-11-21 15:14:08 -05:00
const fileRow = y + this.#offset.y;
if (fileRow >= this.numRows) {
this.drawPlaceholderRow(fileRow);
2023-11-13 14:46:04 -05:00
} else {
2023-11-21 15:14:08 -05:00
this.drawFileRow(fileRow);
2023-11-20 14:21:42 -05:00
}
2023-11-20 15:39:27 -05:00
this.#buffer.appendLine();
2023-11-13 14:46:04 -05:00
}
}
private drawFileRow(y: number): void {
const row = this.#document.row(y);
2023-11-16 16:00:03 -05:00
if (row === null) {
logToFile(`Warning: trying to draw non-existent row '${y}'`);
return this.drawPlaceholderRow(y);
}
2023-11-20 14:21:42 -05:00
const len = Math.min(
posSub(row.rsize, this.#offset.x),
2023-11-20 14:21:42 -05:00
this.#screen.cols,
);
this.#buffer.append(row.rstring(this.#offset.x), len);
2023-11-13 14:46:04 -05:00
}
private drawPlaceholderRow(y: number): void {
if (y === Math.trunc(this.#screen.rows / 2) && this.#document.isEmpty()) {
2023-11-13 14:46:04 -05:00
const message = `Kilo editor -- version ${VERSION}`;
const messageLen = (message.length > this.#screen.cols)
? this.#screen.cols
: message.length;
let padding = Math.trunc((this.#screen.cols - messageLen) / 2);
if (padding > 0) {
2023-11-09 12:05:30 -05:00
this.#buffer.append('~');
2023-11-13 14:46:04 -05:00
padding -= 1;
2023-11-09 12:05:30 -05:00
2023-11-13 14:46:04 -05:00
this.#buffer.append(' '.repeat(padding));
2023-11-09 12:05:30 -05:00
}
2023-11-13 14:46:04 -05:00
this.#buffer.append(message, messageLen);
2023-11-13 14:46:04 -05:00
} else {
this.#buffer.append('~');
}
}
2023-11-20 15:39:27 -05:00
private drawStatusBar(): void {
this.#buffer.append(Ansi.InvertColor);
const name = (this.#filename !== '') ? this.#filename : '[No Name]';
2023-11-21 15:14:08 -05:00
const modified = (this.#document.dirty) ? '(modified)' : '';
const status = `${truncate(name, 20)} - ${this.numRows} lines ${modified}`;
const rStatus = `${this.#cursor.y + 1}/${this.numRows}`;
2023-11-20 15:39:27 -05:00
let len = Math.min(status.length, this.#screen.cols);
this.#buffer.append(status, len);
while (len < this.#screen.cols) {
2023-11-21 15:14:08 -05:00
if (this.#screen.cols - len === rStatus.length) {
this.#buffer.append(rStatus);
2023-11-20 15:39:27 -05:00
break;
} else {
this.#buffer.append(' ');
len++;
}
}
2023-11-21 11:35:56 -05:00
this.#buffer.appendLine(Ansi.ResetFormatting);
}
private drawMessageBar(): void {
this.#buffer.append(Ansi.ClearLine);
const msgLen = this.#statusMessage.length;
if (msgLen > 0 && (Date.now() - this.#statusTimeout < 5000)) {
this.#buffer.append(this.#statusMessage, this.#screen.cols);
}
2023-11-20 15:39:27 -05:00
}
}
2023-11-21 15:14:08 -05:00
export default Editor;