-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
34 lines (26 loc) · 818 Bytes
/
index.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
import Component from 'inferno-component';
import brace from 'brace';
import 'brace/theme/github';
class InfernoAce extends Component {
proxyEventData(eventData) {
return Object.assign({ inputValue: this.editor.getValue() }, eventData);
}
componentDidMount() {
this.editor = brace.edit('inferno-ace-editor');
this.editor.setTheme('ace/theme/github');
this.editor.setFontSize(this.props.fontSize);
this.editor.on('input', (eventData) => this.props.onInput(this.proxyEventData(eventData)));
this.editor.on('change', (eventData) => this.props.onChange(this.proxyEventData(eventData)));
}
render() {
return (
<div id="inferno-ace-editor" />
);
}
}
InfernoAce.defaultProps = {
onInput: () => {},
onChange: () => {},
fontSize: 12
};
export default InfernoAce;