Skip to content

Commit 714ac26

Browse files
committed
fix created project path from task output
1 parent 076ffb9 commit 714ac26

File tree

2 files changed

+38
-16
lines changed

2 files changed

+38
-16
lines changed

src/component-manager/panel.ts

+1-10
Original file line numberDiff line numberDiff line change
@@ -150,16 +150,7 @@ export class ComponentManagerUIPanel {
150150
cancellable: false,
151151
},
152152
async () => {
153-
await createProject(selectedFolder[0], message.example);
154-
const match = message.example.match(/(?<=:).*/);
155-
if (!match) {
156-
return;
157-
}
158-
let projectName =
159-
(process.platform === "win32" ? "\\" : "/") + match[0];
160-
const projectPath = vscode.Uri.file(
161-
selectedFolder[0].fsPath + projectName
162-
);
153+
const projectPath = await createProject(selectedFolder[0], message.example);
163154
await vscode.commands.executeCommand(
164155
"vscode.openFolder",
165156
projectPath,

src/component-manager/utils.ts

+37-6
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ import { CancellationToken, Uri, l10n } from "vscode";
2121
import { readParameter } from "../idfConfiguration";
2222
import { join } from "path";
2323
import { getVirtualEnvPythonPath } from "../pythonManager";
24+
import { EOL } from "os";
2425

2526
export async function addDependency(
2627
workspace: Uri,
@@ -47,10 +48,17 @@ export async function addDependency(
4748
dependency,
4849
"reconfigure"
4950
);
50-
const addDependencyResult = await spawn(pythonBinPath, addDependencyArgs, {
51-
cwd: workspace.fsPath,
52-
env: modifiedEnv,
53-
}, undefined, undefined, cancelToken);
51+
const addDependencyResult = await spawn(
52+
pythonBinPath,
53+
addDependencyArgs,
54+
{
55+
cwd: workspace.fsPath,
56+
env: modifiedEnv,
57+
},
58+
undefined,
59+
undefined,
60+
cancelToken
61+
);
5462
Logger.infoNotify(
5563
`Added dependency ${dependency} to the component "${component}"`
5664
);
@@ -70,7 +78,7 @@ export async function addDependency(
7078
export async function createProject(
7179
workspace: Uri,
7280
example: string
73-
): Promise<void> {
81+
): Promise<Uri> {
7482
try {
7583
const idfPathDir = readParameter("idf.espIdfPath");
7684
const idfPy = join(idfPathDir, "tools", "idf.py");
@@ -85,6 +93,12 @@ export async function createProject(
8593
throw new Error("The paths to idf, idf.py or pythonBin do not exist.");
8694
}
8795

96+
const match = example.match(/(?<=:).*/);
97+
if (!match) {
98+
return;
99+
}
100+
const projectPath = Uri.joinPath(workspace, match[0]);
101+
88102
const createProjectCommand: string[] = [
89103
idfPy,
90104
"create-project-from-example",
@@ -99,9 +113,26 @@ export async function createProject(
99113
env: modifiedEnv,
100114
}
101115
);
102-
103116
Logger.infoNotify(`Creating project from ${example}"`);
104117
Logger.info(createProjectResult.toString());
118+
119+
const marker = "downloaded to ";
120+
const markerIndex = createProjectResult.toString().lastIndexOf(marker);
121+
if (markerIndex !== -1) {
122+
const extractedPathLines = createProjectResult
123+
.toString()
124+
.substring(markerIndex + marker.length)
125+
.trim();
126+
const lineBreakIndex = extractedPathLines.lastIndexOf(EOL);
127+
const extractedPath = extractedPathLines
128+
.toString()
129+
.substring(0, lineBreakIndex)
130+
.trim();
131+
Logger.info(`Extracted path ${extractedPath}`);
132+
return Uri.file(extractedPath);
133+
}
134+
135+
return projectPath;
105136
} catch (error) {
106137
const throwableError = new Error(
107138
`${l10n.t(

0 commit comments

Comments
 (0)