-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy pathEditor.tsx
45 lines (42 loc) · 1.12 KB
/
Editor.tsx
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 from 'react'
import AceEditor from 'react-ace'
import 'ace-builds/src-noconflict/theme-tomorrow'
import 'ace-builds/src-noconflict/mode-javascript'
import 'ace-builds/src-noconflict/mode-css'
import 'ace-builds/src-noconflict/snippets/css'
import 'ace-builds/src-noconflict/snippets/javascript'
import 'ace-builds/src-noconflict/ext-language_tools'
import 'ace-builds/src-noconflict/ext-searchbox'
import { useStore } from './StoreContext'
import { observer } from 'mobx-react'
const style = {
border: '1px solid #EBEBEB',
margin: 0,
height: '100%',
width: '100%',
lineHeight: '150%'
}
const setOptions = {
enableBasicAutocompletion: true,
enableLiveAutocompletion: true,
enableSnippets: true,
showLineNumbers: true,
tabSize: 2
}
export default observer(() => {
const { source, onChangeSource, mode } = useStore().AppStore
return (
<AceEditor
theme='tomorrow'
value={source}
onChange={onChangeSource}
showGutter
showPrintMargin
highlightActiveLine
editorProps={{
$blockScrolling: Infinity
}}
{...{ mode, style, setOptions }}
/>
)
})