scroll/src/scroll.ts

53 lines
1.0 KiB
JavaScript
Raw Normal View History

2023-10-27 12:11:48 -04:00
/**
* The starting point for running scroll
*/
2023-11-08 18:07:34 -05:00
import {
Editor,
getTermios,
importDefaultForRuntime,
importForRuntime,
} from './common/mod.ts';
const decoder = new TextDecoder();
export async function main() {
const { inputLoop, getSize } = await importDefaultForRuntime(
'terminal_io.ts',
);
2023-11-08 18:07:34 -05:00
const { onExit } = await importForRuntime('mod.ts');
// Setup raw mode, and tear down on error or normal exit
const t = await getTermios();
t.enableRawMode();
onExit(() => {
2023-11-09 12:05:30 -05:00
console.log('Exit handler called, disabling raw mode\r\n');
t.disableRawMode();
});
// Create the editor itself
const editor = new Editor(getSize());
2023-11-09 12:05:30 -05:00
await editor.refreshScreen();
// The main event loop
for await (const chunk of inputLoop()) {
const char = String(decoder.decode(chunk));
// Clear the screen for output
await editor.refreshScreen();
// Process input
const shouldLoop = editor.processKeyPress(char);
if (!shouldLoop) {
return 0;
}
}
return -1;
}
2023-11-01 15:05:31 -04:00
/**
* Start the event loop
*/
await main();