Skip to content

Commit 1dfa8fb

Browse files
authoredFeb 5, 2025··
Merge pull request #4340 from jeclrsg/feat-codemirror-yaml
feat: add YAML support to codemirror
2 parents 4c74241 + 428447e commit 1dfa8fb

File tree

4 files changed

+26
-1
lines changed

4 files changed

+26
-1
lines changed
 

‎packages/codemirror/src/YAMLEditor.ts

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
import { Editor } from "./Editor.ts";
2+
3+
export class YAMLEditor extends Editor {
4+
options(): any {
5+
return {
6+
...super.options(),
7+
mode: "text/x-yaml",
8+
foldGutter: true,
9+
gutters: ["CodeMirror-linenumbers", "CodeMirror-foldgutter"]
10+
};
11+
}
12+
13+
yaml(): string;
14+
yaml(_: string): this;
15+
yaml(_?: string): string | this {
16+
if (!arguments.length) return this.text();
17+
this.text(_);
18+
return this;
19+
}
20+
21+
}
22+
YAMLEditor.prototype._class += " codemirror_YAMLEditor";

‎packages/codemirror/src/codemirror-shim.ts

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ import "codemirror/mode/htmlmixed/htmlmixed.js";
55
import "codemirror/mode/javascript/javascript.js";
66
import "codemirror/mode/xml/xml.js";
77
import "codemirror/mode/sql/sql.js";
8+
import "codemirror/mode/yaml/yaml.js";
89
import "./mode/dot/dot.ts";
910
import "./mode/markdown/markdown.ts";
1011

‎packages/codemirror/src/index.ts

+1
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,4 @@ export * from "./MarkdownEditor.ts";
1111
export * from "./ObservableMarkdownEditor.ts";
1212
export * from "./XMLEditor.ts";
1313
export * from "./SQLEditor.ts";
14+
export * from "./YAMLEditor.ts";

‎packages/codemirror/tests/codemirror.browser.spec.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import * as codemirror from "@hpcc-js/codemirror";
2-
import { CSSEditor, DOTEditor, Editor, ECLEditor, HTMLEditor, JSEditor, JSONEditor, MarkdownEditor, ObservableMarkdownEditor, SQLEditor, XMLEditor } from "@hpcc-js/codemirror";
2+
import { CSSEditor, DOTEditor, Editor, ECLEditor, HTMLEditor, JSEditor, JSONEditor, MarkdownEditor, ObservableMarkdownEditor, SQLEditor, XMLEditor, YAMLEditor } from "@hpcc-js/codemirror";
33
import { Class, HTMLWidget, SVGWidget } from "@hpcc-js/common";
44
import { describe, it, expect } from "vitest";
55
import { classDef, renderMedium } from "../../common/tests/index.ts";
@@ -30,6 +30,7 @@ describe("@hpcc-js/codemirror", () => {
3030
case ObservableMarkdownEditor:
3131
case SQLEditor:
3232
case XMLEditor:
33+
case YAMLEditor:
3334
case ECLEditor:
3435
renderMedium(new item.prototype.constructor());
3536
break;

0 commit comments

Comments
 (0)
Please sign in to comment.