2019-08-27 01:19:19 +08:00
|
|
|
import { ResizableView } from "../../core/gui/ResizableView";
|
|
|
|
import { el } from "../../core/gui/dom";
|
|
|
|
import { editor } from "monaco-editor";
|
|
|
|
import { asm_editor_store } from "../stores/AsmEditorStore";
|
|
|
|
import IStandaloneCodeEditor = editor.IStandaloneCodeEditor;
|
|
|
|
|
|
|
|
editor.defineTheme("phantasmal-world", {
|
|
|
|
base: "vs-dark",
|
|
|
|
inherit: true,
|
|
|
|
rules: [
|
|
|
|
{ token: "", foreground: "e0e0e0", background: "#181818" },
|
|
|
|
{ token: "tag", foreground: "99bbff" },
|
|
|
|
{ token: "keyword", foreground: "d0a0ff", fontStyle: "bold" },
|
|
|
|
{ token: "predefined", foreground: "bbffbb" },
|
|
|
|
{ token: "number", foreground: "ffffaa" },
|
|
|
|
{ token: "number.hex", foreground: "ffffaa" },
|
|
|
|
{ token: "string", foreground: "88ffff" },
|
|
|
|
{ token: "string.escape", foreground: "8888ff" },
|
|
|
|
],
|
|
|
|
colors: {
|
|
|
|
"editor.background": "#181818",
|
|
|
|
"editor.lineHighlightBackground": "#202020",
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
2019-08-27 20:50:16 +08:00
|
|
|
const DUMMY_MODEL = editor.createModel("", "psoasm");
|
|
|
|
|
2019-08-27 01:19:19 +08:00
|
|
|
export class AsmEditorView extends ResizableView {
|
|
|
|
readonly element = el.div();
|
|
|
|
|
|
|
|
private readonly editor: IStandaloneCodeEditor = this.disposable(
|
|
|
|
editor.create(this.element, {
|
|
|
|
theme: "phantasmal-world",
|
|
|
|
scrollBeyondLastLine: false,
|
|
|
|
autoIndent: true,
|
|
|
|
fontSize: 13,
|
|
|
|
wordBasedSuggestions: false,
|
|
|
|
wordWrap: "on",
|
|
|
|
wrappingIndent: "indent",
|
2019-08-27 01:31:01 +08:00
|
|
|
renderIndentGuides: false,
|
|
|
|
folding: false,
|
2019-08-27 01:19:19 +08:00
|
|
|
}),
|
|
|
|
);
|
|
|
|
|
|
|
|
constructor() {
|
|
|
|
super();
|
|
|
|
|
|
|
|
this.disposables(
|
|
|
|
asm_editor_store.did_undo.observe(({ value: source }) => {
|
|
|
|
this.editor.trigger(source, "undo", undefined);
|
|
|
|
}),
|
|
|
|
|
|
|
|
asm_editor_store.did_redo.observe(({ value: source }) => {
|
|
|
|
this.editor.trigger(source, "redo", undefined);
|
|
|
|
}),
|
|
|
|
|
|
|
|
asm_editor_store.model.observe(
|
|
|
|
({ value: model }) => {
|
|
|
|
this.editor.updateOptions({ readOnly: model == undefined });
|
2019-08-27 20:50:16 +08:00
|
|
|
this.editor.setModel(model || DUMMY_MODEL);
|
2019-08-27 01:19:19 +08:00
|
|
|
},
|
|
|
|
{ call_now: true },
|
|
|
|
),
|
|
|
|
|
|
|
|
this.editor.onDidFocusEditorWidget(() => asm_editor_store.undo.make_current()),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
focus(): void {
|
|
|
|
this.editor.focus();
|
|
|
|
}
|
|
|
|
|
|
|
|
resize(width: number, height: number): this {
|
|
|
|
this.editor.layout({ width, height });
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
}
|