forked from continuedev/continue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
activate.ts
97 lines (88 loc) · 3.07 KB
/
activate.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
import { getTsConfigPath, migrate } from "core/util/paths";
import { Telemetry } from "core/util/posthog";
import * as fs from "fs";
import path from "path";
import * as vscode from "vscode";
import { VsCodeExtension } from "../extension/vscodeExtension";
import registerQuickFixProvider from "../lang-server/codeActions";
import { getExtensionVersion } from "../util/util";
import { getExtensionUri } from "../util/vscode";
import { setupInlineTips } from "./inlineTips";
export async function showTutorial() {
const tutorialPath = path.join(
getExtensionUri().fsPath,
"continue_tutorial.py",
);
// Ensure keyboard shortcuts match OS
if (process.platform !== "darwin") {
let tutorialContent = fs.readFileSync(tutorialPath, "utf8");
tutorialContent = tutorialContent.replace("⌘", "^");
fs.writeFileSync(tutorialPath, tutorialContent);
}
const doc = await vscode.workspace.openTextDocument(
vscode.Uri.file(tutorialPath),
);
await vscode.window.showTextDocument(doc);
}
async function openTutorialFirstTime(context: vscode.ExtensionContext) {
if (context.globalState.get<boolean>("continue.tutorialShown") !== true) {
await showTutorial();
context.globalState.update("continue.tutorialShown", true);
}
}
function showRefactorMigrationMessage(
extensionContext: vscode.ExtensionContext,
) {
// Only if the vscode setting continue.manuallyRunningSserver is true
const manuallyRunningServer =
vscode.workspace
.getConfiguration("continue")
.get<boolean>("manuallyRunningServer") || false;
if (
manuallyRunningServer &&
extensionContext?.globalState.get<boolean>(
"continue.showRefactorMigrationMessage",
) !== false
) {
vscode.window
.showInformationMessage(
"The Continue server protocol was recently updated in a way that requires the latest server version to work properly. Since you are manually running the server, please be sure to upgrade with `pip install --upgrade continuedev`.",
"Got it",
"Don't show again",
)
.then((selection) => {
if (selection === "Don't show again") {
// Get the global state
extensionContext?.globalState.update(
"continue.showRefactorMigrationMessage",
false,
);
}
});
}
}
export async function activateExtension(context: vscode.ExtensionContext) {
// Add necessary files
getTsConfigPath();
// Register commands and providers
registerQuickFixProvider();
await openTutorialFirstTime(context);
setupInlineTips(context);
showRefactorMigrationMessage(context);
const vscodeExtension = new VsCodeExtension(context);
migrate("showWelcome_1", () => {
vscode.commands.executeCommand(
"markdown.showPreview",
vscode.Uri.file(
path.join(getExtensionUri().fsPath, "media", "welcome.md"),
),
);
});
// Load Continue configuration
if (!context.globalState.get("hasBeenInstalled")) {
context.globalState.update("hasBeenInstalled", true);
Telemetry.capture("install", {
extensionVersion: getExtensionVersion(),
});
}
}