-
Notifications
You must be signed in to change notification settings - Fork 3.3k
Expand file tree
/
Copy pathSourceEditor.tsx
More file actions
150 lines (137 loc) · 4.33 KB
/
Copy pathSourceEditor.tsx
File metadata and controls
150 lines (137 loc) · 4.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
import { useRef, useCallback, useEffect, memo } from "react";
import {
EditorView,
keymap,
lineNumbers,
highlightActiveLine,
highlightActiveLineGutter,
} from "@codemirror/view";
import { EditorState } from "@codemirror/state";
import { defaultKeymap, history, historyKeymap } from "@codemirror/commands";
import { bracketMatching, foldGutter, indentOnInput } from "@codemirror/language";
import { closeBrackets, closeBracketsKeymap } from "@codemirror/autocomplete";
import { highlightSelectionMatches, searchKeymap } from "@codemirror/search";
import { oneDark } from "@codemirror/theme-one-dark";
import { html } from "@codemirror/lang-html";
import { css } from "@codemirror/lang-css";
import { javascript } from "@codemirror/lang-javascript";
function getLanguageExtension(language: string) {
switch (language) {
case "html":
return html();
case "css":
return css();
case "javascript":
case "js":
case "typescript":
case "ts":
return javascript({
typescript: language === "typescript" || language === "ts",
});
default:
return html();
}
}
function detectLanguage(filePath: string): string {
const ext = filePath.split(".").pop()?.toLowerCase() ?? "";
const map: Record<string, string> = {
html: "html",
htm: "html",
css: "css",
js: "javascript",
ts: "typescript",
jsx: "javascript",
tsx: "typescript",
json: "javascript",
};
return map[ext] ?? "html";
}
interface SourceEditorProps {
content: string;
filePath?: string;
language?: string;
onChange?: (content: string) => void;
readOnly?: boolean;
revealOffset?: number | null;
}
export const SourceEditor = memo(function SourceEditor({
content,
filePath,
language,
onChange,
readOnly = false,
revealOffset,
}: SourceEditorProps) {
const editorRef = useRef<EditorView | null>(null);
const containerRef = useRef<HTMLDivElement | null>(null);
const onChangeRef = useRef(onChange);
onChangeRef.current = onChange;
const contentRef = useRef(content);
contentRef.current = content;
const mountEditor = useCallback(
(node: HTMLDivElement | null) => {
if (editorRef.current) {
editorRef.current.destroy();
editorRef.current = null;
}
if (!node) return;
containerRef.current = node;
const lang = language ?? (filePath ? detectLanguage(filePath) : "html");
const updateListener = EditorView.updateListener.of((update) => {
if (update.docChanged && onChangeRef.current) {
onChangeRef.current(update.state.doc.toString());
}
});
const state = EditorState.create({
doc: contentRef.current,
extensions: [
lineNumbers(),
highlightActiveLine(),
highlightActiveLineGutter(),
history(),
foldGutter(),
indentOnInput(),
bracketMatching(),
closeBrackets(),
highlightSelectionMatches(),
keymap.of([...closeBracketsKeymap, ...defaultKeymap, ...searchKeymap, ...historyKeymap]),
getLanguageExtension(lang),
oneDark,
updateListener,
EditorState.readOnly.of(readOnly),
EditorView.theme({
"&": { height: "100%" },
".cm-scroller": { overflow: "auto" },
}),
],
});
editorRef.current = new EditorView({ state, parent: node });
},
[filePath, language, readOnly],
);
// Sync external content changes into the editor without recreating it.
// Only applies when the new content differs from the current document
// (e.g. file switch or server refresh), not on every keystroke.
useEffect(() => {
const view = editorRef.current;
if (!view) return;
const current = view.state.doc.toString();
if (current !== content) {
view.dispatch({
changes: { from: 0, to: current.length, insert: content },
});
}
}, [content]);
useEffect(() => {
const view = editorRef.current;
if (!view || revealOffset == null || revealOffset < 0) return;
const docLen = view.state.doc.length;
const pos = Math.min(revealOffset, docLen);
view.dispatch({
selection: { anchor: pos },
effects: EditorView.scrollIntoView(pos, { y: "center" }),
});
view.focus();
}, [revealOffset]);
return <div ref={mountEditor} className="h-full w-full overflow-hidden" />;
});