-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmenuBarItem.ts
65 lines (56 loc) · 1.64 KB
/
menuBarItem.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
import {
Disposable,
window,
StatusBarAlignment,
StatusBarItem,
workspace,
ConfigurationChangeEvent,
} from "vscode";
import { ENABLED_CONFIG, TOGGLE_COMMAND, MENU_BAR_CONFIG } from "./constants";
const PLAY = "\u25BA";
const STOP = "\u25A0";
export default class MenuBarItem implements Disposable {
private readonly _disposables: Disposable[] = [];
private readonly _statusBarItem: StatusBarItem;
constructor() {
this._disposables = [];
this._statusBarItem = window.createStatusBarItem(
StatusBarAlignment.Left,
100 // What should this number be?
);
this._statusBarItem.command = TOGGLE_COMMAND;
this._disposables.push(this._statusBarItem);
this._setText();
this._setVisibility();
workspace.onDidChangeConfiguration(
this._handleConfigChange,
this,
this._disposables
);
}
_handleConfigChange(event: ConfigurationChangeEvent) {
if (event.affectsConfiguration(ENABLED_CONFIG)) {
this._setText();
}
if (event.affectsConfiguration(MENU_BAR_CONFIG)) {
this._setVisibility();
}
}
_setText() {
const enabled = workspace.getConfiguration().get<boolean>(ENABLED_CONFIG);
const icon = enabled ? STOP : PLAY;
const action = enabled ? "hide" : "show";
this._statusBarItem.text = `(${icon})`;
this._statusBarItem.tooltip = `Click to ${action} implicit parentheses.`;
}
_setVisibility() {
if (workspace.getConfiguration().get<boolean>(MENU_BAR_CONFIG)) {
this._statusBarItem.show();
} else {
this._statusBarItem.hide();
}
}
dispose() {
this._disposables.forEach((disposable) => disposable.dispose());
}
}