-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCodePart.js
45 lines (41 loc) · 827 Bytes
/
CodePart.js
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
import React, { useState } from 'react';
import { UnControlled as CodeMirror } from 'react-codemirror2';
const CodePart = ({ value, onChange, mode, readOnly = false }) => {
const [editor, setEditor] = useState();
const [cursor, setCursor] = useState({
line: 0,
ch: 0,
});
if (editor) {
setEditor(undefined);
}
return (
<div>
<CodeMirror
cursor={cursor}
onCursor={(editor, data) => {
setCursor({
line: data.line,
ch: data.ch + 1,
});
}}
autoRefresh
editorDidMount={(ed) => {
setEditor(ed);
}}
onChange={(editor, data, value) => {
if (onChange) onChange(value);
}}
value={value}
height="100%"
options={{
mode,
theme: 'material',
lineNumbers: true,
readOnly,
}}
/>
</div>
);
};
export default CodePart;