456 lines
18 KiB
JavaScript
Executable File
456 lines
18 KiB
JavaScript
Executable File
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
'use strict';
|
|
import * as ls from './_deps/vscode-languageserver-types/main.js';
|
|
var Range = monaco.Range;
|
|
// --- diagnostics --- ---
|
|
var DiagnosticsAdapter = /** @class */ (function () {
|
|
function DiagnosticsAdapter(_languageId, _worker, defaults) {
|
|
var _this = this;
|
|
this._languageId = _languageId;
|
|
this._worker = _worker;
|
|
this._disposables = [];
|
|
this._listener = Object.create(null);
|
|
var onModelAdd = function (model) {
|
|
var modeId = model.getModeId();
|
|
if (modeId !== _this._languageId) {
|
|
return;
|
|
}
|
|
var handle;
|
|
_this._listener[model.uri.toString()] = model.onDidChangeContent(function () {
|
|
clearTimeout(handle);
|
|
handle = setTimeout(function () { return _this._doValidate(model.uri, modeId); }, 500);
|
|
});
|
|
_this._doValidate(model.uri, modeId);
|
|
};
|
|
var onModelRemoved = function (model) {
|
|
monaco.editor.setModelMarkers(model, _this._languageId, []);
|
|
var uriStr = model.uri.toString();
|
|
var listener = _this._listener[uriStr];
|
|
if (listener) {
|
|
listener.dispose();
|
|
delete _this._listener[uriStr];
|
|
}
|
|
};
|
|
this._disposables.push(monaco.editor.onDidCreateModel(onModelAdd));
|
|
this._disposables.push(monaco.editor.onWillDisposeModel(function (model) {
|
|
onModelRemoved(model);
|
|
}));
|
|
this._disposables.push(monaco.editor.onDidChangeModelLanguage(function (event) {
|
|
onModelRemoved(event.model);
|
|
onModelAdd(event.model);
|
|
}));
|
|
this._disposables.push(defaults.onDidChange(function (_) {
|
|
monaco.editor.getModels().forEach(function (model) {
|
|
if (model.getModeId() === _this._languageId) {
|
|
onModelRemoved(model);
|
|
onModelAdd(model);
|
|
}
|
|
});
|
|
}));
|
|
this._disposables.push({
|
|
dispose: function () {
|
|
for (var key in _this._listener) {
|
|
_this._listener[key].dispose();
|
|
}
|
|
}
|
|
});
|
|
monaco.editor.getModels().forEach(onModelAdd);
|
|
}
|
|
DiagnosticsAdapter.prototype.dispose = function () {
|
|
this._disposables.forEach(function (d) { return d && d.dispose(); });
|
|
this._disposables = [];
|
|
};
|
|
DiagnosticsAdapter.prototype._doValidate = function (resource, languageId) {
|
|
this._worker(resource).then(function (worker) {
|
|
return worker.doValidation(resource.toString()).then(function (diagnostics) {
|
|
var markers = diagnostics.map(function (d) { return toDiagnostics(resource, d); });
|
|
monaco.editor.setModelMarkers(monaco.editor.getModel(resource), languageId, markers);
|
|
});
|
|
}).then(undefined, function (err) {
|
|
console.error(err);
|
|
});
|
|
};
|
|
return DiagnosticsAdapter;
|
|
}());
|
|
export { DiagnosticsAdapter };
|
|
function toSeverity(lsSeverity) {
|
|
switch (lsSeverity) {
|
|
case ls.DiagnosticSeverity.Error: return monaco.MarkerSeverity.Error;
|
|
case ls.DiagnosticSeverity.Warning: return monaco.MarkerSeverity.Warning;
|
|
case ls.DiagnosticSeverity.Information: return monaco.MarkerSeverity.Info;
|
|
case ls.DiagnosticSeverity.Hint: return monaco.MarkerSeverity.Hint;
|
|
default:
|
|
return monaco.MarkerSeverity.Info;
|
|
}
|
|
}
|
|
function toDiagnostics(resource, diag) {
|
|
var code = typeof diag.code === 'number' ? String(diag.code) : diag.code;
|
|
return {
|
|
severity: toSeverity(diag.severity),
|
|
startLineNumber: diag.range.start.line + 1,
|
|
startColumn: diag.range.start.character + 1,
|
|
endLineNumber: diag.range.end.line + 1,
|
|
endColumn: diag.range.end.character + 1,
|
|
message: diag.message,
|
|
code: code,
|
|
source: diag.source
|
|
};
|
|
}
|
|
// --- completion ------
|
|
function fromPosition(position) {
|
|
if (!position) {
|
|
return void 0;
|
|
}
|
|
return { character: position.column - 1, line: position.lineNumber - 1 };
|
|
}
|
|
function fromRange(range) {
|
|
if (!range) {
|
|
return void 0;
|
|
}
|
|
return { start: fromPosition(range.getStartPosition()), end: fromPosition(range.getEndPosition()) };
|
|
}
|
|
function toRange(range) {
|
|
if (!range) {
|
|
return void 0;
|
|
}
|
|
return new Range(range.start.line + 1, range.start.character + 1, range.end.line + 1, range.end.character + 1);
|
|
}
|
|
function toCompletionItemKind(kind) {
|
|
var mItemKind = monaco.languages.CompletionItemKind;
|
|
switch (kind) {
|
|
case ls.CompletionItemKind.Text: return mItemKind.Text;
|
|
case ls.CompletionItemKind.Method: return mItemKind.Method;
|
|
case ls.CompletionItemKind.Function: return mItemKind.Function;
|
|
case ls.CompletionItemKind.Constructor: return mItemKind.Constructor;
|
|
case ls.CompletionItemKind.Field: return mItemKind.Field;
|
|
case ls.CompletionItemKind.Variable: return mItemKind.Variable;
|
|
case ls.CompletionItemKind.Class: return mItemKind.Class;
|
|
case ls.CompletionItemKind.Interface: return mItemKind.Interface;
|
|
case ls.CompletionItemKind.Module: return mItemKind.Module;
|
|
case ls.CompletionItemKind.Property: return mItemKind.Property;
|
|
case ls.CompletionItemKind.Unit: return mItemKind.Unit;
|
|
case ls.CompletionItemKind.Value: return mItemKind.Value;
|
|
case ls.CompletionItemKind.Enum: return mItemKind.Enum;
|
|
case ls.CompletionItemKind.Keyword: return mItemKind.Keyword;
|
|
case ls.CompletionItemKind.Snippet: return mItemKind.Snippet;
|
|
case ls.CompletionItemKind.Color: return mItemKind.Color;
|
|
case ls.CompletionItemKind.File: return mItemKind.File;
|
|
case ls.CompletionItemKind.Reference: return mItemKind.Reference;
|
|
}
|
|
return mItemKind.Property;
|
|
}
|
|
function fromCompletionItemKind(kind) {
|
|
var mItemKind = monaco.languages.CompletionItemKind;
|
|
switch (kind) {
|
|
case mItemKind.Text: return ls.CompletionItemKind.Text;
|
|
case mItemKind.Method: return ls.CompletionItemKind.Method;
|
|
case mItemKind.Function: return ls.CompletionItemKind.Function;
|
|
case mItemKind.Constructor: return ls.CompletionItemKind.Constructor;
|
|
case mItemKind.Field: return ls.CompletionItemKind.Field;
|
|
case mItemKind.Variable: return ls.CompletionItemKind.Variable;
|
|
case mItemKind.Class: return ls.CompletionItemKind.Class;
|
|
case mItemKind.Interface: return ls.CompletionItemKind.Interface;
|
|
case mItemKind.Module: return ls.CompletionItemKind.Module;
|
|
case mItemKind.Property: return ls.CompletionItemKind.Property;
|
|
case mItemKind.Unit: return ls.CompletionItemKind.Unit;
|
|
case mItemKind.Value: return ls.CompletionItemKind.Value;
|
|
case mItemKind.Enum: return ls.CompletionItemKind.Enum;
|
|
case mItemKind.Keyword: return ls.CompletionItemKind.Keyword;
|
|
case mItemKind.Snippet: return ls.CompletionItemKind.Snippet;
|
|
case mItemKind.Color: return ls.CompletionItemKind.Color;
|
|
case mItemKind.File: return ls.CompletionItemKind.File;
|
|
case mItemKind.Reference: return ls.CompletionItemKind.Reference;
|
|
}
|
|
return ls.CompletionItemKind.Property;
|
|
}
|
|
function toTextEdit(textEdit) {
|
|
if (!textEdit) {
|
|
return void 0;
|
|
}
|
|
return {
|
|
range: toRange(textEdit.range),
|
|
text: textEdit.newText
|
|
};
|
|
}
|
|
var CompletionAdapter = /** @class */ (function () {
|
|
function CompletionAdapter(_worker) {
|
|
this._worker = _worker;
|
|
}
|
|
Object.defineProperty(CompletionAdapter.prototype, "triggerCharacters", {
|
|
get: function () {
|
|
return ['.', ':', '<', '"', '=', '/'];
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
CompletionAdapter.prototype.provideCompletionItems = function (model, position, context, token) {
|
|
var resource = model.uri;
|
|
return this._worker(resource).then(function (worker) {
|
|
return worker.doComplete(resource.toString(), fromPosition(position));
|
|
}).then(function (info) {
|
|
if (!info) {
|
|
return;
|
|
}
|
|
var wordInfo = model.getWordUntilPosition(position);
|
|
var wordRange = new Range(position.lineNumber, wordInfo.startColumn, position.lineNumber, wordInfo.endColumn);
|
|
var items = info.items.map(function (entry) {
|
|
var item = {
|
|
label: entry.label,
|
|
insertText: entry.insertText || entry.label,
|
|
sortText: entry.sortText,
|
|
filterText: entry.filterText,
|
|
documentation: entry.documentation,
|
|
detail: entry.detail,
|
|
range: wordRange,
|
|
kind: toCompletionItemKind(entry.kind),
|
|
};
|
|
if (entry.textEdit) {
|
|
item.range = toRange(entry.textEdit.range);
|
|
item.insertText = entry.textEdit.newText;
|
|
}
|
|
if (entry.additionalTextEdits) {
|
|
item.additionalTextEdits = entry.additionalTextEdits.map(toTextEdit);
|
|
}
|
|
if (entry.insertTextFormat === ls.InsertTextFormat.Snippet) {
|
|
item.insertTextRules = monaco.languages.CompletionItemInsertTextRule.InsertAsSnippet;
|
|
}
|
|
return item;
|
|
});
|
|
return {
|
|
isIncomplete: info.isIncomplete,
|
|
suggestions: items
|
|
};
|
|
});
|
|
};
|
|
return CompletionAdapter;
|
|
}());
|
|
export { CompletionAdapter };
|
|
// --- hover ------
|
|
function isMarkupContent(thing) {
|
|
return thing && typeof thing === 'object' && typeof thing.kind === 'string';
|
|
}
|
|
function toMarkdownString(entry) {
|
|
if (typeof entry === 'string') {
|
|
return {
|
|
value: entry
|
|
};
|
|
}
|
|
if (isMarkupContent(entry)) {
|
|
if (entry.kind === 'plaintext') {
|
|
return {
|
|
value: entry.value.replace(/[\\`*_{}[\]()#+\-.!]/g, '\\$&')
|
|
};
|
|
}
|
|
return {
|
|
value: entry.value
|
|
};
|
|
}
|
|
return { value: '```' + entry.language + '\n' + entry.value + '\n```\n' };
|
|
}
|
|
function toMarkedStringArray(contents) {
|
|
if (!contents) {
|
|
return void 0;
|
|
}
|
|
if (Array.isArray(contents)) {
|
|
return contents.map(toMarkdownString);
|
|
}
|
|
return [toMarkdownString(contents)];
|
|
}
|
|
var HoverAdapter = /** @class */ (function () {
|
|
function HoverAdapter(_worker) {
|
|
this._worker = _worker;
|
|
}
|
|
HoverAdapter.prototype.provideHover = function (model, position, token) {
|
|
var resource = model.uri;
|
|
return this._worker(resource).then(function (worker) {
|
|
return worker.doHover(resource.toString(), fromPosition(position));
|
|
}).then(function (info) {
|
|
if (!info) {
|
|
return;
|
|
}
|
|
return {
|
|
range: toRange(info.range),
|
|
contents: toMarkedStringArray(info.contents)
|
|
};
|
|
});
|
|
};
|
|
return HoverAdapter;
|
|
}());
|
|
export { HoverAdapter };
|
|
// --- document highlights ------
|
|
function toHighlighKind(kind) {
|
|
var mKind = monaco.languages.DocumentHighlightKind;
|
|
switch (kind) {
|
|
case ls.DocumentHighlightKind.Read: return mKind.Read;
|
|
case ls.DocumentHighlightKind.Write: return mKind.Write;
|
|
case ls.DocumentHighlightKind.Text: return mKind.Text;
|
|
}
|
|
return mKind.Text;
|
|
}
|
|
var DocumentHighlightAdapter = /** @class */ (function () {
|
|
function DocumentHighlightAdapter(_worker) {
|
|
this._worker = _worker;
|
|
}
|
|
DocumentHighlightAdapter.prototype.provideDocumentHighlights = function (model, position, token) {
|
|
var resource = model.uri;
|
|
return this._worker(resource).then(function (worker) { return worker.findDocumentHighlights(resource.toString(), fromPosition(position)); }).then(function (items) {
|
|
if (!items) {
|
|
return;
|
|
}
|
|
return items.map(function (item) { return ({
|
|
range: toRange(item.range),
|
|
kind: toHighlighKind(item.kind)
|
|
}); });
|
|
});
|
|
};
|
|
return DocumentHighlightAdapter;
|
|
}());
|
|
export { DocumentHighlightAdapter };
|
|
// --- document symbols ------
|
|
function toSymbolKind(kind) {
|
|
var mKind = monaco.languages.SymbolKind;
|
|
switch (kind) {
|
|
case ls.SymbolKind.File: return mKind.Array;
|
|
case ls.SymbolKind.Module: return mKind.Module;
|
|
case ls.SymbolKind.Namespace: return mKind.Namespace;
|
|
case ls.SymbolKind.Package: return mKind.Package;
|
|
case ls.SymbolKind.Class: return mKind.Class;
|
|
case ls.SymbolKind.Method: return mKind.Method;
|
|
case ls.SymbolKind.Property: return mKind.Property;
|
|
case ls.SymbolKind.Field: return mKind.Field;
|
|
case ls.SymbolKind.Constructor: return mKind.Constructor;
|
|
case ls.SymbolKind.Enum: return mKind.Enum;
|
|
case ls.SymbolKind.Interface: return mKind.Interface;
|
|
case ls.SymbolKind.Function: return mKind.Function;
|
|
case ls.SymbolKind.Variable: return mKind.Variable;
|
|
case ls.SymbolKind.Constant: return mKind.Constant;
|
|
case ls.SymbolKind.String: return mKind.String;
|
|
case ls.SymbolKind.Number: return mKind.Number;
|
|
case ls.SymbolKind.Boolean: return mKind.Boolean;
|
|
case ls.SymbolKind.Array: return mKind.Array;
|
|
}
|
|
return mKind.Function;
|
|
}
|
|
var DocumentSymbolAdapter = /** @class */ (function () {
|
|
function DocumentSymbolAdapter(_worker) {
|
|
this._worker = _worker;
|
|
}
|
|
DocumentSymbolAdapter.prototype.provideDocumentSymbols = function (model, token) {
|
|
var resource = model.uri;
|
|
return this._worker(resource).then(function (worker) { return worker.findDocumentSymbols(resource.toString()); }).then(function (items) {
|
|
if (!items) {
|
|
return;
|
|
}
|
|
return items.map(function (item) { return ({
|
|
name: item.name,
|
|
detail: '',
|
|
containerName: item.containerName,
|
|
kind: toSymbolKind(item.kind),
|
|
range: toRange(item.location.range),
|
|
selectionRange: toRange(item.location.range)
|
|
}); });
|
|
});
|
|
};
|
|
return DocumentSymbolAdapter;
|
|
}());
|
|
export { DocumentSymbolAdapter };
|
|
var DocumentLinkAdapter = /** @class */ (function () {
|
|
function DocumentLinkAdapter(_worker) {
|
|
this._worker = _worker;
|
|
}
|
|
DocumentLinkAdapter.prototype.provideLinks = function (model, token) {
|
|
var resource = model.uri;
|
|
return this._worker(resource).then(function (worker) { return worker.findDocumentLinks(resource.toString()); }).then(function (items) {
|
|
if (!items) {
|
|
return;
|
|
}
|
|
return {
|
|
links: items.map(function (item) { return ({
|
|
range: toRange(item.range),
|
|
url: item.target
|
|
}); })
|
|
};
|
|
});
|
|
};
|
|
return DocumentLinkAdapter;
|
|
}());
|
|
export { DocumentLinkAdapter };
|
|
function fromFormattingOptions(options) {
|
|
return {
|
|
tabSize: options.tabSize,
|
|
insertSpaces: options.insertSpaces
|
|
};
|
|
}
|
|
var DocumentFormattingEditProvider = /** @class */ (function () {
|
|
function DocumentFormattingEditProvider(_worker) {
|
|
this._worker = _worker;
|
|
}
|
|
DocumentFormattingEditProvider.prototype.provideDocumentFormattingEdits = function (model, options, token) {
|
|
var resource = model.uri;
|
|
return this._worker(resource).then(function (worker) {
|
|
return worker.format(resource.toString(), null, fromFormattingOptions(options)).then(function (edits) {
|
|
if (!edits || edits.length === 0) {
|
|
return;
|
|
}
|
|
return edits.map(toTextEdit);
|
|
});
|
|
});
|
|
};
|
|
return DocumentFormattingEditProvider;
|
|
}());
|
|
export { DocumentFormattingEditProvider };
|
|
var DocumentRangeFormattingEditProvider = /** @class */ (function () {
|
|
function DocumentRangeFormattingEditProvider(_worker) {
|
|
this._worker = _worker;
|
|
}
|
|
DocumentRangeFormattingEditProvider.prototype.provideDocumentRangeFormattingEdits = function (model, range, options, token) {
|
|
var resource = model.uri;
|
|
return this._worker(resource).then(function (worker) {
|
|
return worker.format(resource.toString(), fromRange(range), fromFormattingOptions(options)).then(function (edits) {
|
|
if (!edits || edits.length === 0) {
|
|
return;
|
|
}
|
|
return edits.map(toTextEdit);
|
|
});
|
|
});
|
|
};
|
|
return DocumentRangeFormattingEditProvider;
|
|
}());
|
|
export { DocumentRangeFormattingEditProvider };
|
|
var FoldingRangeAdapter = /** @class */ (function () {
|
|
function FoldingRangeAdapter(_worker) {
|
|
this._worker = _worker;
|
|
}
|
|
FoldingRangeAdapter.prototype.provideFoldingRanges = function (model, context, token) {
|
|
var resource = model.uri;
|
|
return this._worker(resource).then(function (worker) { return worker.provideFoldingRanges(resource.toString(), context); }).then(function (ranges) {
|
|
if (!ranges) {
|
|
return;
|
|
}
|
|
return ranges.map(function (range) {
|
|
var result = {
|
|
start: range.startLine + 1,
|
|
end: range.endLine + 1
|
|
};
|
|
if (typeof range.kind !== 'undefined') {
|
|
result.kind = toFoldingRangeKind(range.kind);
|
|
}
|
|
return result;
|
|
});
|
|
});
|
|
};
|
|
return FoldingRangeAdapter;
|
|
}());
|
|
export { FoldingRangeAdapter };
|
|
function toFoldingRangeKind(kind) {
|
|
switch (kind) {
|
|
case ls.FoldingRangeKind.Comment: return monaco.languages.FoldingRangeKind.Comment;
|
|
case ls.FoldingRangeKind.Imports: return monaco.languages.FoldingRangeKind.Imports;
|
|
case ls.FoldingRangeKind.Region: return monaco.languages.FoldingRangeKind.Region;
|
|
}
|
|
return void 0;
|
|
}
|