-
Notifications
You must be signed in to change notification settings - Fork 67
/
Copy pathunedit.ts
90 lines (85 loc) · 3.41 KB
/
unedit.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
//===----------------------------------------------------------------------===//
//
// This source file is part of the VS Code Swift open source project
//
// Copyright (c) 2024 Apple Inc. and the VS Code Swift project authors
// Licensed under Apache License v2.0
//
// See LICENSE.txt for license information
// See CONTRIBUTORS.txt for the list of VS Code Swift project authors
//
// SPDX-License-Identifier: Apache-2.0
//
//===----------------------------------------------------------------------===//
import * as vscode from "vscode";
import * as fs from "fs/promises";
import { FolderOperation, WorkspaceContext } from "../../WorkspaceContext";
import { SwiftExecOperation } from "../../tasks/TaskQueue";
import { FolderContext } from "../../FolderContext";
/**
* Stop local editing of package dependency
* @param identifier Identifier of dependency
* @param ctx workspace context
*/
export async function uneditDependency(identifier: string, ctx: WorkspaceContext) {
const currentFolder = ctx.currentFolder;
if (!currentFolder) {
return;
}
ctx.outputChannel.log(`unedit dependency ${identifier}`, currentFolder.name);
const status = `Reverting edited dependency ${identifier} (${currentFolder.name})`;
ctx.statusItem.showStatusWhileRunning(status, async () => {
await uneditFolderDependency(currentFolder, identifier, ctx);
});
}
async function uneditFolderDependency(
folder: FolderContext,
identifier: string,
ctx: WorkspaceContext,
args: string[] = []
) {
try {
const uneditOperation = new SwiftExecOperation(
["package", "unedit", ...args, identifier],
folder,
`Finish editing ${identifier}`,
{ showStatusItem: true, checkAlreadyRunning: false, log: "Unedit" },
() => {
// do nothing. Just want to run the process on the Task queue to ensure it
// doesn't clash with another swifr process
}
);
await folder.taskQueue.queueOperation(uneditOperation);
ctx.fireEvent(folder, FolderOperation.resolvedUpdated);
// find workspace folder, and check folder still exists
const folderIndex = vscode.workspace.workspaceFolders?.findIndex(
item => item.name === identifier
);
if (folderIndex) {
try {
// check folder exists. if error thrown remove folder
await fs.stat(vscode.workspace.workspaceFolders![folderIndex].uri.fsPath);
} catch {
vscode.workspace.updateWorkspaceFolders(folderIndex, 1);
}
}
} catch (error) {
const execError = error as { stderr: string };
// if error contains "has uncommited changes" then ask if user wants to force the unedit
if (execError.stderr.match(/has uncommited changes/)) {
const result = await vscode.window.showWarningMessage(
`${identifier} has uncommitted changes. Are you sure you want to continue?`,
"Yes",
"No"
);
if (result === "No") {
ctx.outputChannel.log(execError.stderr, folder.name);
return;
}
await uneditFolderDependency(folder, identifier, ctx, ["--force"]);
} else {
ctx.outputChannel.log(execError.stderr, folder.name);
vscode.window.showErrorMessage(`${execError.stderr}`);
}
}
}