mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 17:28:26 -04:00
Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
This commit is contained in:
parent
bcafd22574
commit
b3acc4b693
3 changed files with 38 additions and 18 deletions
|
@ -32,13 +32,28 @@ export class DiagnosticsAdapter {
|
|||
constructor(private worker: WorkerAccessor) {
|
||||
const onModelAdd = (model: monaco.editor.IModel): void => {
|
||||
let handle: any;
|
||||
model.onDidChangeContent(() => {
|
||||
// Every time a new change is made, wait 500ms before validating
|
||||
clearTimeout(handle);
|
||||
handle = setTimeout(() => this.validate(model.uri), 500);
|
||||
});
|
||||
|
||||
this.validate(model.uri);
|
||||
if (model.getModeId() === ID) {
|
||||
model.onDidChangeContent(() => {
|
||||
// Do not validate if the language ID has changed
|
||||
if (model.getModeId() !== ID) {
|
||||
return;
|
||||
}
|
||||
|
||||
// Every time a new change is made, wait 500ms before validating
|
||||
clearTimeout(handle);
|
||||
handle = setTimeout(() => this.validate(model.uri), 500);
|
||||
});
|
||||
|
||||
model.onDidChangeLanguage(({ newLanguage }) => {
|
||||
// Reset the model markers if the language ID has changed and is no longer "painless"
|
||||
if (newLanguage !== ID) {
|
||||
return monaco.editor.setModelMarkers(model, ID, []);
|
||||
}
|
||||
});
|
||||
|
||||
this.validate(model.uri);
|
||||
}
|
||||
};
|
||||
monaco.editor.onDidCreateModel(onModelAdd);
|
||||
monaco.editor.getModels().forEach(onModelAdd);
|
||||
|
@ -46,11 +61,12 @@ export class DiagnosticsAdapter {
|
|||
|
||||
private async validate(resource: monaco.Uri): Promise<void> {
|
||||
const worker = await this.worker(resource);
|
||||
const errorMarkers = await worker.getSyntaxErrors();
|
||||
const errorMarkers = await worker.getSyntaxErrors(resource.toString());
|
||||
|
||||
const model = monaco.editor.getModel(resource);
|
||||
|
||||
// Set the error markers and underline them with "Error" severity
|
||||
monaco.editor.setModelMarkers(model!, ID, errorMarkers.map(toDiagnostics));
|
||||
if (errorMarkers) {
|
||||
const model = monaco.editor.getModel(resource);
|
||||
// Set the error markers and underline them with "Error" severity
|
||||
monaco.editor.setModelMarkers(model!, ID, errorMarkers.map(toDiagnostics));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -28,14 +28,18 @@ export class PainlessWorker {
|
|||
this._ctx = ctx;
|
||||
}
|
||||
|
||||
private getTextDocument(): string {
|
||||
const model = this._ctx.getMirrorModels()[0];
|
||||
return model.getValue();
|
||||
private getTextDocument(modelUri: string): string | undefined {
|
||||
const model = this._ctx.getMirrorModels().find((m) => m.uri.toString() === modelUri);
|
||||
|
||||
return model?.getValue();
|
||||
}
|
||||
|
||||
public async getSyntaxErrors() {
|
||||
const code = this.getTextDocument();
|
||||
return parseAndGetSyntaxErrors(code);
|
||||
public async getSyntaxErrors(modelUri: string) {
|
||||
const code = this.getTextDocument(modelUri);
|
||||
|
||||
if (code) {
|
||||
return parseAndGetSyntaxErrors(code);
|
||||
}
|
||||
}
|
||||
|
||||
public provideAutocompleteSuggestions(
|
||||
|
|
|
@ -129,7 +129,7 @@ const fieldsConfig: FieldsConfig = {
|
|||
|
||||
export const Script: FormFieldsComponent = ({ initialFieldValues }) => {
|
||||
const [showId, setShowId] = useState(() => !!initialFieldValues?.id);
|
||||
const [scriptLanguage, setScriptLanguage] = useState<string>('plaintext');
|
||||
const [scriptLanguage, setScriptLanguage] = useState<string>(PainlessLang.ID);
|
||||
|
||||
const [{ fields }] = useFormData({ watch: 'fields.lang' });
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue