-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathconfiguration.ts
46 lines (38 loc) · 1.31 KB
/
configuration.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
import path = require("path");
import { ConfigurationTarget, workspace as vsWorkspace } from "vscode";
import { URI } from "vscode-uri";
import Logger from "./logger";
namespace Configuration {
type GetConfig = (section: string) => unknown;
export function getReleasePathOverride(
getConfig: GetConfig,
): string | undefined {
return getConfig("releasePathOverride") as string | undefined;
}
export function getProjectDirUri(
getConfig: GetConfig,
workspace: typeof vsWorkspace,
): URI {
const projectDirConfig = getConfig("projectDir");
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
const workspacePath = workspace.workspaceFolders![0].uri.path;
if (typeof projectDirConfig === "string") {
const fullDirectoryPath = path.join(workspacePath, projectDirConfig);
return URI.file(fullDirectoryPath);
} else {
return URI.file(workspacePath);
}
}
export function disableAutoInstallUpdateNotification(): void {
vsWorkspace
.getConfiguration("lexical")
.update("notifyOnServerAutoUpdate", false, ConfigurationTarget.Global)
.then(undefined, (e) => Logger.error(e.toString()));
}
export function getAutoInstallUpdateNotification(): boolean {
return vsWorkspace
.getConfiguration("lexical")
.get("notifyOnServerAutoUpdate", true);
}
}
export default Configuration;