mirror of
https://github.com/chinchang/web-maker.git
synced 2025-01-18 04:48:50 +01:00
fix showError code for monaco
This commit is contained in:
parent
3749a5cecb
commit
87a1e6c306
@ -159,6 +159,19 @@ export default class CodeEditor extends Component {
|
||||
}
|
||||
}
|
||||
|
||||
showErrors(errors) {
|
||||
if (this.props.type === 'codemirror') {
|
||||
errors.forEach(function(error) {
|
||||
this.instance.operation(function() {
|
||||
var n = document.createElement('div');
|
||||
n.setAttribute('data-title', error.message);
|
||||
n.classList.add('gutter-error-marker');
|
||||
editor.setGutterMarker(error.lineNumber, 'error-gutter', n);
|
||||
});
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
refresh() {
|
||||
this.instance.refresh ? this.instance.refresh() : this.instance.layout();
|
||||
}
|
||||
|
@ -173,15 +173,7 @@ export default class ContentWrap extends Component {
|
||||
}
|
||||
|
||||
showErrors(lang, errors) {
|
||||
var editor = this.cm[lang];
|
||||
errors.forEach(function(e) {
|
||||
editor.operation(function() {
|
||||
var n = document.createElement('div');
|
||||
n.setAttribute('data-title', e.message);
|
||||
n.classList.add('gutter-error-marker');
|
||||
editor.setGutterMarker(e.lineNumber, 'error-gutter', n);
|
||||
});
|
||||
});
|
||||
this.cm[lang].showErrors(errors);
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -263,16 +263,8 @@ export default class ContentWrapFiles extends Component {
|
||||
this.editor.clearGutter('error-gutter');
|
||||
}
|
||||
|
||||
showErrors(lang, errors) {
|
||||
var editor = this.cm;
|
||||
errors.forEach(function(e) {
|
||||
editor.operation(function() {
|
||||
var n = document.createElement('div');
|
||||
n.setAttribute('data-title', e.message);
|
||||
n.classList.add('gutter-error-marker');
|
||||
editor.setGutterMarker(e.lineNumber, 'error-gutter', n);
|
||||
});
|
||||
});
|
||||
showErrors(errors) {
|
||||
this.editor.showErrors(errors);
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
x
Reference in New Issue
Block a user