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;
|
|
|
|
|
|
|
|
public async toggleHintsDisplay(displayHints: boolean): Promise<void> {
|
|
|
|
if (this.displayHints !== displayHints) {
|
|
|
|
this.displayHints = displayHints;
|
2019-08-05 19:31:12 +00:00
|
|
|
return this.refreshVisibleEditorsHints(
|
|
|
|
displayHints ? undefined : []
|
|
|
|
);
|
2019-07-23 13:38:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-05 19:31:12 +00:00
|
|
|
public async refreshHintsForVisibleEditors(
|
|
|
|
cause?: TextDocumentChangeEvent
|
|
|
|
): Promise<void> {
|
2019-07-23 13:38:21 +00:00
|
|
|
if (!this.displayHints) {
|
|
|
|
return;
|
|
|
|
}
|
2019-08-05 19:31:12 +00:00
|
|
|
if (
|
|
|
|
cause !== undefined &&
|
|
|
|
(cause.contentChanges.length === 0 ||
|
|
|
|
!this.isRustDocument(cause.document))
|
|
|
|
) {
|
2019-07-23 13:38:21 +00:00
|
|
|
return;
|
|
|
|
}
|
2019-08-05 19:31:12 +00:00
|
|
|
return this.refreshVisibleEditorsHints();
|
|
|
|
}
|
|
|
|
|
|
|
|
private async refreshVisibleEditorsHints(
|
|
|
|
newDecorations?: vscode.DecorationOptions[]
|
|
|
|
) {
|
|
|
|
const promises: Array<Promise<void>> = [];
|
|
|
|
|
|
|
|
for (const rustEditor of vscode.window.visibleTextEditors.filter(
|
|
|
|
editor => this.isRustDocument(editor.document)
|
|
|
|
)) {
|
|
|
|
if (newDecorations !== undefined) {
|
|
|
|
promises.push(
|
|
|
|
Promise.resolve(
|
|
|
|
rustEditor.setDecorations(
|
|
|
|
typeHintDecorationType,
|
|
|
|
newDecorations
|
|
|
|
)
|
|
|
|
)
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
promises.push(this.updateDecorationsFromServer(rustEditor));
|
|
|
|
}
|
2019-07-23 13:38:21 +00:00
|
|
|
}
|
|
|
|
|
2019-08-05 19:31:12 +00:00
|
|
|
for (const promise of promises) {
|
|
|
|
await promise;
|
|
|
|
}
|
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(
|
|
|
|
editor: TextEditor
|
|
|
|
): Promise<void> {
|
2019-08-05 19:31:12 +00:00
|
|
|
const newHints = await this.queryHints(editor.document.uri.toString());
|
|
|
|
if (newHints !== null) {
|
2019-10-23 11:11:40 +00:00
|
|
|
const newDecorations = newHints.map(hint => ({
|
|
|
|
range: hint.range,
|
|
|
|
renderOptions: {
|
|
|
|
after: {
|
2019-11-18 17:02:28 +00:00
|
|
|
contentText: `: ${hint.label}`
|
2019-10-10 11:26:17 +00:00
|
|
|
}
|
2019-10-23 11:11:40 +00:00
|
|
|
}
|
|
|
|
}));
|
2019-08-05 10:31:00 +00:00
|
|
|
return editor.setDecorations(
|
|
|
|
typeHintDecorationType,
|
|
|
|
newDecorations
|
|
|
|
);
|
2019-07-29 07:19:35 +00:00
|
|
|
}
|
2019-07-23 13:38:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
}
|
|
|
|
}
|