mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-20 22:40:58 +00:00
71 lines
1.7 KiB
TypeScript
71 lines
1.7 KiB
TypeScript
import {
|
|
Editor,
|
|
type EditorOptions,
|
|
type EditorTheme,
|
|
Key,
|
|
matchesKey,
|
|
type TUI,
|
|
} from "@mariozechner/pi-tui";
|
|
|
|
export class CustomEditor extends Editor {
|
|
onEscape?: () => void;
|
|
onCtrlC?: () => void;
|
|
onCtrlD?: () => void;
|
|
onCtrlG?: () => void;
|
|
onCtrlL?: () => void;
|
|
onCtrlO?: () => void;
|
|
onCtrlP?: () => void;
|
|
onCtrlT?: () => void;
|
|
onShiftTab?: () => void;
|
|
onAltEnter?: () => void;
|
|
|
|
constructor(tui: TUI, theme: EditorTheme, options?: EditorOptions) {
|
|
super(tui, theme, options);
|
|
}
|
|
handleInput(data: string): void {
|
|
if (matchesKey(data, Key.alt("enter")) && this.onAltEnter) {
|
|
this.onAltEnter();
|
|
return;
|
|
}
|
|
if (matchesKey(data, Key.ctrl("l")) && this.onCtrlL) {
|
|
this.onCtrlL();
|
|
return;
|
|
}
|
|
if (matchesKey(data, Key.ctrl("o")) && this.onCtrlO) {
|
|
this.onCtrlO();
|
|
return;
|
|
}
|
|
if (matchesKey(data, Key.ctrl("p")) && this.onCtrlP) {
|
|
this.onCtrlP();
|
|
return;
|
|
}
|
|
if (matchesKey(data, Key.ctrl("g")) && this.onCtrlG) {
|
|
this.onCtrlG();
|
|
return;
|
|
}
|
|
if (matchesKey(data, Key.ctrl("t")) && this.onCtrlT) {
|
|
this.onCtrlT();
|
|
return;
|
|
}
|
|
if (matchesKey(data, Key.shift("tab")) && this.onShiftTab) {
|
|
this.onShiftTab();
|
|
return;
|
|
}
|
|
if (matchesKey(data, Key.escape) && this.onEscape && !this.isShowingAutocomplete()) {
|
|
this.onEscape();
|
|
return;
|
|
}
|
|
if (matchesKey(data, Key.ctrl("c")) && this.onCtrlC) {
|
|
this.onCtrlC();
|
|
return;
|
|
}
|
|
if (matchesKey(data, Key.ctrl("d"))) {
|
|
if (this.getText().length === 0 && this.onCtrlD) {
|
|
this.onCtrlD();
|
|
}
|
|
return;
|
|
}
|
|
super.handleInput(data);
|
|
}
|
|
}
|