-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpasteExercise.ts
42 lines (36 loc) · 1.29 KB
/
pasteExercise.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
import * as vscode from "vscode";
import * as actions from "../actions";
import { ActionContext } from "../actions/types";
import { BottleneckError } from "../errors";
import { Logger } from "../utilities";
export async function pasteExercise(
actionContext: ActionContext,
resource: vscode.Uri | undefined,
): Promise<void> {
const { dialog, workspaceManager } = actionContext;
Logger.info("Pasting exercise");
const exercise = resource
? workspaceManager.getExerciseByPath(resource)
: workspaceManager.activeExercise;
if (!exercise) {
dialog.errorNotification("Currently open editor is not part of a TMC exercise.");
return;
}
const pasteResult = await actions.pasteExercise(
actionContext,
exercise.courseSlug,
exercise.exerciseSlug,
);
if (pasteResult.err) {
if (pasteResult.val instanceof BottleneckError) {
Logger.warn(`Paste submission was cancelled: ${pasteResult.val.message}.`);
return;
}
dialog.errorNotification("TMC Paste command failed.", pasteResult.val);
return;
}
dialog.notification(`Paste link: ${pasteResult.val}`, [
"Open URL",
(): Thenable<boolean> => vscode.env.openExternal(vscode.Uri.parse(pasteResult.val)),
]);
}