mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-03-18 07:23:51 +01:00
Add .oxfmtignore to skip generated bindings and wasm-pack output. Add npm format script, update DEVELOPMENT.md for Vite+ toolchain, and format all non-generated files with oxfmt. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
332 lines
10 KiB
TypeScript
332 lines
10 KiB
TypeScript
import {
|
|
autocompletion,
|
|
closeBrackets,
|
|
closeBracketsKeymap,
|
|
completionKeymap,
|
|
} from "@codemirror/autocomplete";
|
|
import { history, historyKeymap } from "@codemirror/commands";
|
|
import { go } from "@codemirror/lang-go";
|
|
import { java } from "@codemirror/lang-java";
|
|
import { javascript } from "@codemirror/lang-javascript";
|
|
import { markdown } from "@codemirror/lang-markdown";
|
|
import { php } from "@codemirror/lang-php";
|
|
import { python } from "@codemirror/lang-python";
|
|
import { xml } from "@codemirror/lang-xml";
|
|
import {
|
|
bracketMatching,
|
|
codeFolding,
|
|
foldGutter,
|
|
foldKeymap,
|
|
HighlightStyle,
|
|
indentOnInput,
|
|
LanguageSupport,
|
|
StreamLanguage,
|
|
syntaxHighlighting,
|
|
} from "@codemirror/language";
|
|
import { c, csharp, kotlin, objectiveC } from "@codemirror/legacy-modes/mode/clike";
|
|
import { clojure } from "@codemirror/legacy-modes/mode/clojure";
|
|
import { http } from "@codemirror/legacy-modes/mode/http";
|
|
import { oCaml } from "@codemirror/legacy-modes/mode/mllike";
|
|
import { powerShell } from "@codemirror/legacy-modes/mode/powershell";
|
|
import { r } from "@codemirror/legacy-modes/mode/r";
|
|
import { ruby } from "@codemirror/legacy-modes/mode/ruby";
|
|
import { shell } from "@codemirror/legacy-modes/mode/shell";
|
|
import { swift } from "@codemirror/legacy-modes/mode/swift";
|
|
import { linter, lintGutter, lintKeymap } from "@codemirror/lint";
|
|
import { search, searchKeymap } from "@codemirror/search";
|
|
import type { Extension } from "@codemirror/state";
|
|
import { EditorState } from "@codemirror/state";
|
|
import {
|
|
crosshairCursor,
|
|
drawSelection,
|
|
dropCursor,
|
|
EditorView,
|
|
highlightActiveLineGutter,
|
|
highlightSpecialChars,
|
|
keymap,
|
|
lineNumbers,
|
|
rectangularSelection,
|
|
} from "@codemirror/view";
|
|
import { tags as t } from "@lezer/highlight";
|
|
import { jsonc, jsoncLanguage } from "@shopify/lang-jsonc";
|
|
import { graphql } from "cm6-graphql";
|
|
import type { GraphQLSchema } from "graphql";
|
|
import { activeRequestIdAtom } from "../../../hooks/useActiveRequestId";
|
|
import type { WrappedEnvironmentVariable } from "../../../hooks/useEnvironmentVariables";
|
|
import { jotaiStore } from "../../../lib/jotai";
|
|
import { renderMarkdown } from "../../../lib/markdown";
|
|
import { pluralizeCount } from "../../../lib/pluralize";
|
|
import { showGraphQLDocExplorerAtom } from "../../graphql/graphqlAtoms";
|
|
import type { EditorProps } from "./Editor";
|
|
import { jsonParseLinter } from "./json-lint";
|
|
import { pairs } from "./pairs/extension";
|
|
import { searchMatchCount } from "./searchMatchCount";
|
|
import { text } from "./text/extension";
|
|
import { timeline } from "./timeline/extension";
|
|
import type { TwigCompletionOption } from "./twig/completion";
|
|
import { twig } from "./twig/extension";
|
|
import { pathParametersPlugin } from "./twig/pathParameters";
|
|
import { url } from "./url/extension";
|
|
|
|
export const syntaxHighlightStyle = HighlightStyle.define([
|
|
{
|
|
tag: [t.documentMeta, t.blockComment, t.lineComment, t.docComment, t.comment],
|
|
color: "var(--textSubtlest)",
|
|
},
|
|
{
|
|
tag: [t.emphasis],
|
|
textDecoration: "underline",
|
|
},
|
|
{
|
|
tag: [t.angleBracket, t.paren, t.bracket, t.squareBracket, t.brace, t.separator, t.punctuation],
|
|
color: "var(--textSubtle)",
|
|
},
|
|
{
|
|
tag: [t.link, t.name, t.tagName, t.angleBracket, t.docString, t.number],
|
|
color: "var(--info)",
|
|
},
|
|
{ tag: [t.variableName], color: "var(--success)" },
|
|
{ tag: [t.bool], color: "var(--warning)" },
|
|
{ tag: [t.attributeName, t.propertyName], color: "var(--primary)" },
|
|
{ tag: [t.attributeValue], color: "var(--warning)" },
|
|
{ tag: [t.string], color: "var(--notice)" },
|
|
{ tag: [t.atom, t.meta, t.operator, t.bool, t.null, t.keyword], color: "var(--danger)" },
|
|
]);
|
|
|
|
const syntaxTheme = EditorView.theme({}, { dark: true });
|
|
|
|
const closeBracketsExtensions: Extension = [closeBrackets(), keymap.of([...closeBracketsKeymap])];
|
|
|
|
const legacyLang = (mode: Parameters<typeof StreamLanguage.define>[0]) => {
|
|
return () => new LanguageSupport(StreamLanguage.define(mode));
|
|
};
|
|
|
|
const syntaxExtensions: Record<
|
|
NonNullable<EditorProps["language"]>,
|
|
null | (() => LanguageSupport)
|
|
> = {
|
|
graphql: null,
|
|
json: jsonc,
|
|
javascript: javascript,
|
|
// HTML as XML because HTML is oddly slow
|
|
html: xml,
|
|
xml: xml,
|
|
url: url,
|
|
pairs: pairs,
|
|
text: text,
|
|
timeline: timeline,
|
|
markdown: markdown,
|
|
c: legacyLang(c),
|
|
clojure: legacyLang(clojure),
|
|
csharp: legacyLang(csharp),
|
|
go: go,
|
|
http: legacyLang(http),
|
|
java: java,
|
|
kotlin: legacyLang(kotlin),
|
|
objective_c: legacyLang(objectiveC),
|
|
ocaml: legacyLang(oCaml),
|
|
php: php,
|
|
powershell: legacyLang(powerShell),
|
|
python: python,
|
|
r: legacyLang(r),
|
|
ruby: legacyLang(ruby),
|
|
shell: legacyLang(shell),
|
|
swift: legacyLang(swift),
|
|
};
|
|
|
|
const closeBracketsFor: (keyof typeof syntaxExtensions)[] = ["json", "javascript", "graphql"];
|
|
|
|
export function getLanguageExtension({
|
|
useTemplating,
|
|
language = "text",
|
|
lintExtension,
|
|
environmentVariables,
|
|
autocomplete,
|
|
hideGutter,
|
|
onClickVariable,
|
|
onClickMissingVariable,
|
|
onClickPathParameter,
|
|
completionOptions,
|
|
graphQLSchema,
|
|
}: {
|
|
useTemplating: boolean;
|
|
environmentVariables: WrappedEnvironmentVariable[];
|
|
onClickVariable: (option: WrappedEnvironmentVariable, tagValue: string, startPos: number) => void;
|
|
onClickMissingVariable: (name: string, tagValue: string, startPos: number) => void;
|
|
onClickPathParameter: (name: string) => void;
|
|
completionOptions: TwigCompletionOption[];
|
|
graphQLSchema: GraphQLSchema | null;
|
|
} & Pick<EditorProps, "language" | "autocomplete" | "hideGutter" | "lintExtension">) {
|
|
const extraExtensions: Extension[] = [];
|
|
|
|
if (language === "url") {
|
|
extraExtensions.push(pathParametersPlugin(onClickPathParameter));
|
|
}
|
|
|
|
// Only close brackets on languages that need it
|
|
if (language && closeBracketsFor.includes(language)) {
|
|
extraExtensions.push(closeBracketsExtensions);
|
|
}
|
|
|
|
// GraphQL is a special exception
|
|
if (language === "graphql") {
|
|
return [
|
|
graphql(graphQLSchema ?? undefined, {
|
|
async onCompletionInfoRender(gqlCompletionItem): Promise<Node | null> {
|
|
if (!gqlCompletionItem.documentation) return null;
|
|
const innerHTML = await renderMarkdown(gqlCompletionItem.documentation);
|
|
const span = document.createElement("span");
|
|
span.innerHTML = innerHTML;
|
|
return span;
|
|
},
|
|
onShowInDocs(field, type, parentType) {
|
|
const activeRequestId = jotaiStore.get(activeRequestIdAtom);
|
|
if (activeRequestId == null) return;
|
|
jotaiStore.set(showGraphQLDocExplorerAtom, (v) => ({
|
|
...v,
|
|
[activeRequestId]: { field, type, parentType },
|
|
}));
|
|
},
|
|
}),
|
|
extraExtensions,
|
|
];
|
|
}
|
|
|
|
if (language === "json") {
|
|
extraExtensions.push(lintExtension ?? linter(jsonParseLinter()));
|
|
extraExtensions.push(
|
|
jsoncLanguage.data.of({
|
|
commentTokens: { line: "//", block: { open: "/*", close: "*/" } },
|
|
}),
|
|
);
|
|
if (!hideGutter) {
|
|
extraExtensions.push(lintGutter());
|
|
}
|
|
}
|
|
|
|
const maybeBase = language ? syntaxExtensions[language] : null;
|
|
const base = typeof maybeBase === "function" ? maybeBase() : null;
|
|
if (base == null) {
|
|
return [];
|
|
}
|
|
|
|
if (!useTemplating) {
|
|
return [base, extraExtensions];
|
|
}
|
|
|
|
return twig({
|
|
base,
|
|
environmentVariables,
|
|
completionOptions,
|
|
autocomplete,
|
|
onClickVariable,
|
|
onClickMissingVariable,
|
|
onClickPathParameter,
|
|
extraExtensions,
|
|
});
|
|
}
|
|
|
|
// Filter out autocomplete start triggers from completionKeymap since we handle it via configurable hotkeys.
|
|
// Keep navigation keys (ArrowUp/Down, Enter, Escape, etc.) but remove startCompletion bindings.
|
|
const filteredCompletionKeymap = completionKeymap.filter((binding) => {
|
|
const key = binding.key?.toLowerCase() ?? "";
|
|
const mac = (binding as { mac?: string }).mac?.toLowerCase() ?? "";
|
|
// Filter out Ctrl-Space and Mac-specific autocomplete triggers (Alt-`, Alt-i)
|
|
const isStartTrigger = key.includes("space") || mac.includes("alt-") || mac.includes("`");
|
|
return !isStartTrigger;
|
|
});
|
|
|
|
export const baseExtensions = [
|
|
highlightSpecialChars(),
|
|
history(),
|
|
dropCursor(),
|
|
drawSelection(),
|
|
autocompletion({
|
|
tooltipClass: () => "x-theme-menu",
|
|
closeOnBlur: true, // Set to `false` for debugging in devtools without closing it
|
|
defaultKeymap: false, // We handle the trigger via configurable hotkeys
|
|
compareCompletions: (a, b) => {
|
|
// Don't sort completions at all, only on boost
|
|
return (a.boost ?? 0) - (b.boost ?? 0);
|
|
},
|
|
}),
|
|
syntaxHighlighting(syntaxHighlightStyle),
|
|
syntaxTheme,
|
|
keymap.of([...historyKeymap, ...filteredCompletionKeymap]),
|
|
];
|
|
|
|
export const readonlyExtensions = [
|
|
EditorState.readOnly.of(true),
|
|
EditorView.contentAttributes.of({ tabindex: "-1" }),
|
|
];
|
|
|
|
export const multiLineExtensions = ({ hideGutter }: { hideGutter?: boolean }) => [
|
|
search({ top: true }),
|
|
searchMatchCount(),
|
|
hideGutter
|
|
? []
|
|
: [
|
|
lineNumbers(),
|
|
foldGutter({
|
|
markerDOM: (open) => {
|
|
const el = document.createElement("div");
|
|
el.classList.add("fold-gutter-icon");
|
|
el.tabIndex = -1;
|
|
if (open) {
|
|
el.setAttribute("data-open", "");
|
|
}
|
|
return el;
|
|
},
|
|
}),
|
|
],
|
|
codeFolding({
|
|
placeholderDOM(_view, onclick, prepared) {
|
|
const el = document.createElement("span");
|
|
el.onclick = onclick;
|
|
el.className = "cm-foldPlaceholder";
|
|
el.innerText = prepared || "…";
|
|
el.title = "unfold";
|
|
el.ariaLabel = "folded code";
|
|
return el;
|
|
},
|
|
/**
|
|
* Show the number of items when code folded. NOTE: this doesn't get called when restoring
|
|
* a previous serialized editor state, which is a bummer
|
|
*/
|
|
preparePlaceholder(state, range) {
|
|
let count: number | undefined;
|
|
let startToken = "{";
|
|
let endToken = "}";
|
|
|
|
const prevLine = state.doc.lineAt(range.from).text;
|
|
const isArray = prevLine.lastIndexOf("[") > prevLine.lastIndexOf("{");
|
|
|
|
if (isArray) {
|
|
startToken = "[";
|
|
endToken = "]";
|
|
}
|
|
|
|
const internal = state.sliceDoc(range.from, range.to);
|
|
const toParse = startToken + internal + endToken;
|
|
|
|
try {
|
|
const parsed = JSON.parse(toParse);
|
|
count = Object.keys(parsed).length;
|
|
} catch {
|
|
/* empty */
|
|
}
|
|
|
|
if (count !== undefined) {
|
|
const label = isArray ? "item" : "key";
|
|
return pluralizeCount(label, count);
|
|
}
|
|
},
|
|
}),
|
|
indentOnInput(),
|
|
rectangularSelection(),
|
|
crosshairCursor(),
|
|
bracketMatching(),
|
|
highlightActiveLineGutter(),
|
|
keymap.of([...searchKeymap, ...foldKeymap, ...lintKeymap]),
|
|
];
|