2019-07-23 13:38:21 +00:00
|
|
|
import * as vscode from 'vscode';
|
2019-07-25 12:17:37 +00:00
|
|
|
import { Range, TextDocumentChangeEvent, TextEditor } from 'vscode';
|
2019-07-23 13:38:21 +00:00
|
|
|
import { TextDocumentIdentifier } from 'vscode-languageclient';
|
|
|
|
import { Server } from '../server';
|
|
|
|
|
|
|
|
interface InlayHintsParams {
|
|
|
|
textDocument: TextDocumentIdentifier;
|
|
|
|
}
|
|
|
|
|
|
|
|
interface InlayHint {
|
2019-07-24 16:52:26 +00:00
|
|
|
range: Range;
|
|
|
|
kind: string;
|
|
|
|
label: string;
|
2019-07-23 13:38:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const typeHintDecorationType = vscode.window.createTextEditorDecorationType({
|
|
|
|
after: {
|
2019-07-24 16:52:26 +00:00
|
|
|
color: new vscode.ThemeColor('ralsp.inlayHint')
|
|
|
|
}
|
2019-07-23 13:38:21 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
export class HintsUpdater {
|
|
|
|
private displayHints = true;
|
|
|
|
|
2019-07-24 16:52:26 +00:00
|
|
|
public async loadHints(
|
|
|
|
editor: vscode.TextEditor | undefined
|
|
|
|
): Promise<void> {
|
2019-07-25 12:54:20 +00:00
|
|
|
if (
|
|
|
|
this.displayHints &&
|
|
|
|
editor !== undefined &&
|
|
|
|
this.isRustDocument(editor.document)
|
|
|
|
) {
|
2019-07-24 16:52:26 +00:00
|
|
|
await this.updateDecorationsFromServer(
|
|
|
|
editor.document.uri.toString(),
|
|
|
|
editor
|
|
|
|
);
|
2019-07-23 13:38:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public async toggleHintsDisplay(displayHints: boolean): Promise<void> {
|
|
|
|
if (this.displayHints !== displayHints) {
|
|
|
|
this.displayHints = displayHints;
|
|
|
|
|
|
|
|
if (displayHints) {
|
|
|
|
return this.updateHints();
|
|
|
|
} else {
|
|
|
|
const editor = vscode.window.activeTextEditor;
|
|
|
|
if (editor != null) {
|
2019-07-24 16:52:26 +00:00
|
|
|
return editor.setDecorations(typeHintDecorationType, []);
|
2019-07-23 13:38:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public async updateHints(cause?: TextDocumentChangeEvent): Promise<void> {
|
|
|
|
if (!this.displayHints) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
const editor = vscode.window.activeTextEditor;
|
|
|
|
if (editor == null) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
const document = cause == null ? editor.document : cause.document;
|
2019-07-25 12:17:37 +00:00
|
|
|
if (!this.isRustDocument(document)) {
|
2019-07-23 13:38:21 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-07-24 16:52:26 +00:00
|
|
|
return await this.updateDecorationsFromServer(
|
|
|
|
document.uri.toString(),
|
|
|
|
editor
|
|
|
|
);
|
2019-07-23 13:38:21 +00:00
|
|
|
}
|
|
|
|
|
2019-07-25 12:17:37 +00:00
|
|
|
private isRustDocument(document: vscode.TextDocument): boolean {
|
|
|
|
return document && document.languageId === 'rust';
|
|
|
|
}
|
|
|
|
|
2019-07-24 16:52:26 +00:00
|
|
|
private async updateDecorationsFromServer(
|
|
|
|
documentUri: string,
|
|
|
|
editor: TextEditor
|
|
|
|
): Promise<void> {
|
|
|
|
const newHints = (await this.queryHints(documentUri)) || [];
|
|
|
|
const newDecorations = newHints.map(hint => ({
|
|
|
|
range: hint.range,
|
|
|
|
renderOptions: { after: { contentText: `: ${hint.label}` } }
|
|
|
|
}));
|
2019-07-23 13:38:21 +00:00
|
|
|
return editor.setDecorations(typeHintDecorationType, newDecorations);
|
|
|
|
}
|
|
|
|
|
|
|
|
private async queryHints(documentUri: string): Promise<InlayHint[] | null> {
|
2019-07-24 16:52:26 +00:00
|
|
|
const request: InlayHintsParams = {
|
|
|
|
textDocument: { uri: documentUri }
|
|
|
|
};
|
2019-07-23 13:38:21 +00:00
|
|
|
const client = Server.client;
|
2019-07-24 16:52:26 +00:00
|
|
|
return client
|
|
|
|
.onReady()
|
|
|
|
.then(() =>
|
|
|
|
client.sendRequest<InlayHint[] | null>(
|
|
|
|
'rust-analyzer/inlayHints',
|
|
|
|
request
|
|
|
|
)
|
|
|
|
);
|
2019-07-23 13:38:21 +00:00
|
|
|
}
|
|
|
|
}
|