UNPKG

@theia/monaco

Version:
84 lines (75 loc) 3.22 kB
// ***************************************************************************** // Copyright (C) 2020 TypeFox and others. // // This program and the accompanying materials are made available under the // terms of the Eclipse Public License v. 2.0 which is available at // http://www.eclipse.org/legal/epl-2.0. // // This Source Code may also be made available under the following Secondary // Licenses when the conditions for such availability set forth in the Eclipse // Public License v. 2.0 are satisfied: GNU General Public License, version 2 // with the GNU Classpath Exception which is available at // https://www.gnu.org/software/classpath/license.html. // // SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0 // ***************************************************************************** import { Diagnostic } from '@theia/core/shared/vscode-languageserver-protocol'; import { ProtocolToMonacoConverter } from './protocol-to-monaco-converter'; import * as monaco from '@theia/monaco-editor-core'; import { Marker } from '@theia/markers/lib/common/marker'; import URI from '@theia/core/lib/common/uri'; export class MonacoMarkerCollection { protected readonly uri: monaco.Uri; protected readonly p2m: ProtocolToMonacoConverter; protected markers: Marker<Diagnostic>[] = []; protected owners = new Map<string, Diagnostic[]>(); protected didUpdate: boolean = false; constructor( uri: URI, p2m: ProtocolToMonacoConverter ) { this.uri = monaco.Uri.parse(uri.toString()); this.p2m = p2m; } updateMarkers(markers: Marker<Diagnostic>[]): void { this.markers = markers; const model = monaco.editor.getModel(this.uri); this.doUpdateMarkers(model ? model : undefined); } updateModelMarkers(model: monaco.editor.ITextModel): void { if (!this.didUpdate) { this.doUpdateMarkers(model); return; } for (const [owner, diagnostics] of this.owners) { this.setModelMarkers(model, owner, diagnostics); } } doUpdateMarkers(model: monaco.editor.ITextModel | undefined): void { if (!model) { this.didUpdate = false; return; } this.didUpdate = true; const toClean = new Set<string>(this.owners.keys()); this.owners.clear(); for (const marker of this.markers) { const diagnostics = this.owners.get(marker.owner) || []; diagnostics.push(marker.data); this.owners.set(marker.owner, diagnostics); } for (const [owner, diagnostics] of this.owners) { toClean.delete(owner); this.setModelMarkers(model, owner, diagnostics); } for (const owner of toClean) { this.clearModelMarkers(model, owner); } } setModelMarkers(model: monaco.editor.ITextModel, owner: string, diagnostics: Diagnostic[]): void { monaco.editor.setModelMarkers(model, owner, this.p2m.asDiagnostics(diagnostics)); } clearModelMarkers(model: monaco.editor.ITextModel, owner: string): void { monaco.editor.setModelMarkers(model, owner, []); } }