Merge #5188
5188: Implement StatusBar r=matklad a=matklad Co-authored-by: Aleksey Kladov <aleksey.kladov@gmail.com>
This commit is contained in:
@@ -161,6 +161,7 @@ class ExperimentalFeatures implements lc.StaticFeature {
|
||||
caps.codeActionGroup = true;
|
||||
caps.resolveCodeAction = true;
|
||||
caps.hoverActions = true;
|
||||
caps.statusNotification = true;
|
||||
capabilities.experimental = caps;
|
||||
}
|
||||
initialize(_capabilities: lc.ServerCapabilities<any>, _documentSelector: lc.DocumentSelector | undefined): void {
|
||||
|
||||
@@ -1,9 +1,11 @@
|
||||
import * as vscode from 'vscode';
|
||||
import * as lc from 'vscode-languageclient';
|
||||
import * as ra from './lsp_ext';
|
||||
|
||||
import { Config } from './config';
|
||||
import { createClient } from './client';
|
||||
import { isRustEditor, RustEditor } from './util';
|
||||
import { Status } from './lsp_ext';
|
||||
|
||||
export class Ctx {
|
||||
private constructor(
|
||||
@@ -11,6 +13,7 @@ export class Ctx {
|
||||
private readonly extCtx: vscode.ExtensionContext,
|
||||
readonly client: lc.LanguageClient,
|
||||
readonly serverPath: string,
|
||||
readonly statusBar: vscode.StatusBarItem,
|
||||
) {
|
||||
|
||||
}
|
||||
@@ -22,9 +25,18 @@ export class Ctx {
|
||||
cwd: string,
|
||||
): Promise<Ctx> {
|
||||
const client = createClient(serverPath, cwd);
|
||||
const res = new Ctx(config, extCtx, client, serverPath);
|
||||
|
||||
const statusBar = vscode.window.createStatusBarItem(vscode.StatusBarAlignment.Left);
|
||||
extCtx.subscriptions.push(statusBar);
|
||||
statusBar.text = "rust-analyzer";
|
||||
statusBar.tooltip = "ready";
|
||||
statusBar.show();
|
||||
|
||||
const res = new Ctx(config, extCtx, client, serverPath, statusBar);
|
||||
|
||||
res.pushCleanup(client.start());
|
||||
await client.onReady();
|
||||
client.onNotification(ra.status, (status) => res.setStatus(status));
|
||||
return res;
|
||||
}
|
||||
|
||||
@@ -54,6 +66,35 @@ export class Ctx {
|
||||
return this.extCtx.subscriptions;
|
||||
}
|
||||
|
||||
setStatus(status: Status) {
|
||||
switch (status) {
|
||||
case "loading":
|
||||
this.statusBar.text = "$(sync~spin) rust-analyzer";
|
||||
this.statusBar.tooltip = "Loading the project";
|
||||
this.statusBar.command = undefined;
|
||||
this.statusBar.color = undefined;
|
||||
break;
|
||||
case "ready":
|
||||
this.statusBar.text = "rust-analyzer";
|
||||
this.statusBar.tooltip = "Ready";
|
||||
this.statusBar.command = undefined;
|
||||
this.statusBar.color = undefined;
|
||||
break;
|
||||
case "invalid":
|
||||
this.statusBar.text = "$(error) rust-analyzer";
|
||||
this.statusBar.tooltip = "Failed to load the project";
|
||||
this.statusBar.command = undefined;
|
||||
this.statusBar.color = new vscode.ThemeColor("notificationsErrorIcon.foreground");
|
||||
break;
|
||||
case "needsReload":
|
||||
this.statusBar.text = "$(warning) rust-analyzer";
|
||||
this.statusBar.tooltip = "Click to reload";
|
||||
this.statusBar.command = "rust-analyzer.reloadWorkspace";
|
||||
this.statusBar.color = new vscode.ThemeColor("notificationsWarningIcon.foreground");
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
pushCleanup(d: Disposable) {
|
||||
this.extCtx.subscriptions.push(d);
|
||||
}
|
||||
|
||||
@@ -6,6 +6,9 @@ import * as lc from "vscode-languageclient";
|
||||
|
||||
export const analyzerStatus = new lc.RequestType<null, string, void>("rust-analyzer/analyzerStatus");
|
||||
|
||||
export type Status = "loading" | "ready" | "invalid" | "needsReload";
|
||||
export const status = new lc.NotificationType<Status>("rust-analyzer/status");
|
||||
|
||||
export const reloadWorkspace = new lc.RequestType<null, null, void>("rust-analyzer/reloadWorkspace");
|
||||
|
||||
export interface SyntaxTreeParams {
|
||||
|
||||
Reference in New Issue
Block a user